summaryrefslogtreecommitdiff
path: root/AK
AgeCommit message (Expand)Author
2021-11-18AK: Make RedBlackTree::try_insert() return ErrorOr<void> instead of boolAndreas Kling
2021-11-18AK: Implement `acos<T>` correctlyJelle Raaijmakers
2021-11-17AK: Add missing return in Formatter<unsigned char[Size]>::format()Andreas Kling
2021-11-17AK: Convert AK::Format formatting helpers to returning ErrorOr<void>Andreas Kling
2021-11-17AK: Add failable try_* functions to StringBuilderAndreas Kling
2021-11-17AK: Forward declare Error and ErrorOr in AK/Forward.hAndreas Kling
2021-11-17AK: Make JSON parser return ErrorOr<JsonValue> (instead of Optional)Andreas Kling
2021-11-16AK: Verify that we are not overreaching in StringView's substring_view()Hendiadyoin1
2021-11-16AK+Kernel: Remove implicit conversion from Userspace<T*> to FlatPtrAndrew Kaster
2021-11-14AK: Resolve clang-tidy readability-const-return-type warning in BitmapAndrew Kaster
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