Age | Commit message (Expand) | Author |
2020-06-07 | AK: Add basic percent encoder/decoder (urlencode and urldecode) | Andreas Kling |
2020-06-07 | AK: Add StringView::{begin,end} so we can range-for over StringViews | Andreas Kling |
2020-06-07 | AK: Don't try to complete relative data: URLs | Andreas Kling |
2020-06-06 | AK: Fix printf("%c", 0) | Sergey Bugaev |
2020-06-04 | AK: Allow default-constructing Utf8View and Utf8CodepointIterator | Andreas Kling |
2020-06-04 | AK: Add StringBuilder::append_codepoint(u32) | Andreas Kling |
2020-06-04 | AK: Add atomic free functions | Tom |
2020-06-03 | AK: JSON, Escape spacial character in string serialization | Hüseyin ASLITÜRK |
2020-06-01 | AK: Add operator== and hash traits for URL | Andreas Kling |
2020-05-31 | AK: Always inline some Checked methods | Sergey Bugaev |
2020-05-30 | AK: Make some StringView constructors constexpr | Andreas Kling |
2020-05-30 | AK+LibC: Add TODO() as an alternative to ASSERT_NOT_REACHED() | Andreas Kling |
2020-05-30 | AK: Make {String,FlyString}::is_one_of() const | Andreas Kling |
2020-05-30 | Lagom: Adjust AK, LibCore and LibTLS to build on MacOS | Marcin Gasperowicz |
2020-05-29 | Ports: Fix CMake-based ports | Paul Redmond |
2020-05-29 | Meta: Add a script check the presence of "#pragma once" in header files | Emanuele Torre |
2020-05-28 | AK: Add StringView::split_view() taking a StringView | AnotherTest |
2020-05-27 | AK: Add a simple randomness API | Andreas Kling |
2020-05-26 | AK: Mark some popular String member functions ALWAYS_INLINE | Andreas Kling |
2020-05-26 | AK: Rename FileSystemPath -> LexicalPath | Sergey Bugaev |
2020-05-26 | Build: Fix cmake test runner, so it knows when tests fail | Brian Gianforcaro |
2020-05-26 | AK: Temporarily disable failing relative_paths tests in FileSystemPath suite | Brian Gianforcaro |
2020-05-26 | AK: Expand string tests to include ends_with case insensitivity | Brian Gianforcaro |
2020-05-26 | AK: Unify FlyString/StringView::ends_with implementation on StringUtils::ends... | Brian Gianforcaro |
2020-05-26 | AK: Add case insensitive String::ends_with support | Brian Gianforcaro |
2020-05-26 | AK: Move String::ends_with implementation to StringUtils | Brian Gianforcaro |
2020-05-25 | AK: Add String::is_one_of(...) | Andreas Kling |
2020-05-23 | Kernel+LibC: Fix various build issues introduced by ssize_t | Andreas Kling |
2020-05-23 | AK: Fix inconsistent signature for dbgputstr() | Andreas Kling |
2020-05-23 | AK: Simplify Types.h a little bit | Andreas Kling |
2020-05-23 | AK: Add MakeSigned<T> helper template | Andreas Kling |
2020-05-23 | AK: Allow NumericLimits.h to compile in a kernel context | Andreas Kling |
2020-05-23 | AK: Fix URL::complete_url behaviour for when a fragment is passed | FalseHonesty |
2020-05-22 | AK: Fix .. handling in FileSystemPath | Sergey Bugaev |
2020-05-22 | AK: Make JsonValue and JsonObjectSerializer speak int/long/long long | Andreas Kling |
2020-05-21 | AK: StringUtils, add "convert_to_uint_from_hex" method | Hüseyin ASLITÜRK |
2020-05-20 | Revert "AK: Add InitializerList, an implementation of std::initializer_list" | Andreas Kling |
2020-05-20 | Revert "AK+LibC: Move non-placement new/delete into LibC" | Andreas Kling |
2020-05-20 | Revert "AK: Add AtomicRef, for atomically accesing a reference to a varaible" | Andreas Kling |
2020-05-20 | Revert "AK: Don't demangle in serenity :(" | Andreas Kling |
2020-05-20 | AK: Include Platform.h in RefCounted.h so we have ALWAYS_INLINE | Andreas Kling |
2020-05-20 | AK+Kernel: Help the compiler inline a bunch of trivial methods | Sergey Bugaev |
2020-05-20 | AK: Don't demangle in serenity :( | Andrew Kaster |
2020-05-20 | AK: Add AtomicRef, for atomically accesing a reference to a varaible | Andrew Kaster |
2020-05-20 | AK+LibC: Move non-placement new/delete into LibC | Andrew Kaster |
2020-05-20 | AK: Add InitializerList, an implementation of std::initializer_list | Andrew Kaster |
2020-05-20 | AK: Fix Checked::multiplication_would_overflow() signature | Sergey Bugaev |
2020-05-18 | AK: Make Utf32View::substring_view() with 0 length not crash | Andreas Kling |
2020-05-18 | AK: Add a way to get the number of valid bytes in a Utf8View | AnotherTest |
2020-05-17 | AK: Add StringBuilder::append(Utf32View) | Andreas Kling |