summaryrefslogtreecommitdiff
path: root/AK
AgeCommit message (Expand)Author
2021-11-14AK: Suppress false positive readability-non-const-parameter in FunctionAndrew Kaster
2021-11-14AK+Kernel: Suppress clang-tidy warnings from the cert-* categoryAndrew Kaster
2021-11-14AK: Avoid implicit conversion clang-tidy warnings in AK::TimeAndrew Kaster
2021-11-14AK: Move StandardFormatter argument into base class initializerAndrew Kaster
2021-11-14AK: Avoid implicit conversions in TypeErasedParameter::to_size()Andrew Kaster
2021-11-14AK: Resolve clang-tidy readability-qualified-auto warningsAndrew Kaster
2021-11-14AK: Mark StringView::find_any_of() as constAndrew Kaster
2021-11-14AK: Resolve clang-tidy warnings about unusual assignment operatorsAndrew Kaster
2021-11-14AK: Resolve clang-tidy readability-bool-conversion warningsAndrew Kaster
2021-11-14AK: Use capitalized literal suffixes for AK::abs() overloadsAndrew Kaster
2021-11-14AK: Avoid else after return in files commonly included by the KernelAndrew Kaster
2021-11-14AK: Use proper type for bool NumericLimits::min and max specializationAndrew Kaster
2021-11-14AK: Suppress false-positive clang-tidy warning in Assertions.hAndrew Kaster
2021-11-14Meta: Add basic clang-tidy configurationAndrew Kaster
2021-11-14AK: Swallow 'L' format specifier until it is properly implementedBrian Gianforcaro
2021-11-11LibWasm: Implement module validationAli Mohammad Pur
2021-11-11AK: Allow to clear HashTables/Maps with capacityHendiadyoin1
2021-11-11Everywhere: Pass AK::ReadonlyBytes by valueAndreas Kling
2021-11-11Everywhere: Pass AK::StringView by valueAndreas Kling
2021-11-11AK: Make HashTable and HashMap try_* functions return ErrorOr<T>Andreas Kling
2021-11-10AK: Make ByteBuffer::try_* functions return ErrorOr<void>Andreas Kling
2021-11-10AK: Make Vector::try_* functions return ErrorOr<void>Andreas Kling
2021-11-10AK+LibJS: Simplify MUST() and move it from LibJS to AK/Try.hAndreas Kling
2021-11-10AK+Everywhere: Stop including Vector.h from StringView.hAndreas Kling
2021-11-10AK: Properly declare inheritance of Bitmap from BitmapViewBen Wiederhake
2021-11-10AK+Kernel: Make BitmapView read-onlyBen Wiederhake
2021-11-08Kernel: Replace KResult and KResultOr<T> with Error and ErrorOr<T>Andreas Kling
2021-11-08AK: Add some more ways to construct Error and ErrorOr<T>Andreas Kling
2021-11-08AK: Make Error.h pull in Try.hAndreas Kling
2021-11-08AK: Add a variant of adopt_nonnull_own_or_enomem() for userspaceAndreas Kling
2021-11-08AK: Remove now-unused OSError classAndreas Kling
2021-11-08AK: Allow subclassing ErrorAndreas Kling
2021-11-08AK: Use ErrorOr<T> for MappedFile factoriesAndreas Kling
2021-11-08AK: Don't define ENABLE_COMPILETIME_FORMAT_CHECK when parsed by CLionAndreas Kling
2021-11-08AK: Don't define AK_HAS_CONDITIONALLY_TRIVIAL when parsed by CLion IDEAndreas Kling
2021-11-08AK: Make Error and ErrorOr<T> work in Lagom as well :^)Andreas Kling
2021-11-08AK: Add ErrorOr<T>::release_value_but_fixme_should_propagate_errors()Andreas Kling
2021-11-08AK: Bring AK::Error into the global namespaceAndreas Kling
2021-11-08AK: Add adopt_nonnull_ref_or_enomem() for userspaceAndreas Kling
2021-11-08AK: Add Error and ErrorOr<T>Andreas Kling
2021-11-06AK: Add min and max functions to StatisticsMusab Kılıç
2021-10-31AK: Make BumpAllocator work in multi-threaded environmentsBen Wiederhake
2021-10-31AK+Tests: Fix formatting of infinity and NaN valuesDaniel Bertalan
2021-10-26AK: Prefix debug log messages with current-time-since-bootAndreas Kling
2021-10-25AK: Allow seed value to be specified in string_hash()Leandro Pereira
2021-10-25AK: Always inline Optional::release_value()Andreas Kling
2021-10-25AK: Add fast path for constructing StringImpl from "" literalAndreas Kling
2021-10-23AK+Everywhere: Make Base64 decoding fallibleBen Wiederhake
2021-10-23AK: Don't crash on invalid Base64 inputBen Wiederhake
2021-10-23AK: Prevent accidental misuse of BumpAllocatorBen Wiederhake