summaryrefslogtreecommitdiff
path: root/AK
AgeCommit message (Expand)Author
2020-05-21AK: StringUtils, add "convert_to_uint_from_hex" methodHüseyin ASLITÜRK
2020-05-20Revert "AK: Add InitializerList, an implementation of std::initializer_list"Andreas Kling
2020-05-20Revert "AK+LibC: Move non-placement new/delete into LibC"Andreas Kling
2020-05-20Revert "AK: Add AtomicRef, for atomically accesing a reference to a varaible"Andreas Kling
2020-05-20Revert "AK: Don't demangle in serenity :("Andreas Kling
2020-05-20AK: Include Platform.h in RefCounted.h so we have ALWAYS_INLINEAndreas Kling
2020-05-20AK+Kernel: Help the compiler inline a bunch of trivial methodsSergey Bugaev
2020-05-20AK: Don't demangle in serenity :(Andrew Kaster
2020-05-20AK: Add AtomicRef, for atomically accesing a reference to a varaibleAndrew Kaster
2020-05-20AK+LibC: Move non-placement new/delete into LibCAndrew Kaster
2020-05-20AK: Add InitializerList, an implementation of std::initializer_listAndrew Kaster
2020-05-20AK: Fix Checked::multiplication_would_overflow() signatureSergey Bugaev
2020-05-18AK: Make Utf32View::substring_view() with 0 length not crashAndreas Kling
2020-05-18AK: Add a way to get the number of valid bytes in a Utf8ViewAnotherTest
2020-05-17AK: Add StringBuilder::append(Utf32View)Andreas Kling
2020-05-17AK: Add a very basic Utf32View classAndreas Kling
2020-05-17AK: Make sure URL retains trailing slash if present in complete_urlConrad Pankoff
2020-05-17AK: Add Utf8View::length_in_codepoints()Andreas Kling
2020-05-17AK: Set default port in URL to 1965 for gemini protocolConrad Pankoff
2020-05-16AK: Handle "protocol relative URLs" in URL::complete_url()Linus Groh
2020-05-16AK: Fix URL's operator<<() and use itLinus Groh
2020-05-16Kernel: Absorb LibBareMetal back into the kernelAndreas Kling
2020-05-16Build: FreeBSD supportDominik Madarasz
2020-05-16AK: Remove experimental clang -Wconsumed stuffAndreas Kling
2020-05-15AK: StringBuilder with 0 initial capacity shouldn't build null StringAndreas Kling
2020-05-14AK: Make FileSystemPath::extension() return what's after the last '.'Andreas Kling
2020-05-14Build: Switch to CMake :^)Sergey Bugaev
2020-05-13AK: Add StringView::equals_ignoring_case()Linus Groh
2020-05-13AK: Replace String::trim_spaces() with String::trim_whitespace()Linus Groh
2020-05-12AK: Fix gcc 10.1 compiler warnings in Vector.hLinus Groh
2020-05-11AK: Add String::trim_spaces()Linus Groh
2020-05-10AK: Add support for about: URLsAndreas Kling
2020-05-09AK: Add missing copyright header to TestStringUtils.cppLinus Groh
2020-05-09AK: Add missing copyright header to Memory.hLinus Groh
2020-05-09AK: Unbreak parsing of file:// URLs with no hostAndreas Kling
2020-05-09AK: Allow file:// URLs to have a hostnameAndreas Kling
2020-05-08AK: Add templated NonnullOwnPtr::release_nonnull()Andreas Kling
2020-05-08AK: Declare LogStream::operator<<(const LogStream&, long) (#2155)Devashish Jaiswal
2020-05-06AK: Fix Bitmap not finding unset ranges at the end of the mapAndreas Kling
2020-05-06Misc: Replace "String(string_view)" with "string_view.to_string()"Linus Groh
2020-05-06AK: Add to_string() method to StringViewEmanuel Sprung
2020-05-06AK: Make tests compilable with the serenity target toolchainEmanuel Sprung
2020-05-05AK: Add URL::basename()Andreas Kling
2020-05-05AK: Some FlyString improvementsAndreas Kling
2020-05-05AK: run clang-format on PrintfImplementation.hEmanuele Torre
2020-05-04AK: Rename variables with camelCase names in PrintfImplementation.h (#2095)Emanuele Torre
2020-05-04AK: Add StringView::find_first/last_ofAndrew Kaster
2020-05-03AK: Add Vector::resize_and_keep_capacity()Andreas Kling
2020-05-03AK+FileManager: Move out human_readable_size to AK::NumberFormatAnotherTest
2020-05-02AK: Inline busy functions in VectorAnotherTest