Age | Commit message (Expand) | Author |
2020-03-26 | AK: Use print_string() for %c formatting | Sergey Bugaev |
2020-03-24 | AK: Fix JsonParser kernel build (no floats/doubles in kernel code) | Andreas Kling |
2020-03-24 | AK: Add parsing of JSON double values | Emanuel Sprung |
2020-03-24 | AK: Add get_or() method to JsonObject | Emanuel Sprung |
2020-03-24 | AK: Add FlyString::is_null() | Andreas Kling |
2020-03-23 | AK: Reduce header dependency graph of String.h | Andreas Kling |
2020-03-22 | AK: Add FlyString::to_lowercase() and LogStream operator<<(FlyString) | Andreas Kling |
2020-03-22 | AK: Add FlyString::equals_ignoring_case(StringView) | Andreas Kling |
2020-03-22 | AK: Run clang-format on StringUtils.{cpp,h} | Andreas Kling |
2020-03-22 | AK: Add FlyString, a simple flyweight string class | Andreas Kling |
2020-03-20 | AK: Add StringBuilder::join() for joining collections with a separator | Andreas Kling |
2020-03-10 | AK: Add begin() and end() to String and StringView | howar6hill |
2020-03-08 | AK: Remove all the AK .host.o files on "make clean" in AK/Tests | Andreas Kling |
2020-03-08 | AK: Reduce code duplication in StringBuilder | howar6hill |
2020-03-08 | AK: Improve the API of StringBuilder | howar6hill |
2020-03-08 | AK: Use default constructor of Optional if an unset bit is not found | Liav A |
2020-03-08 | AK: Remove unused InlineLRUCache template | Andreas Kling |
2020-03-08 | AK: Move memory stuff (fast memcpy, etc) to a separate header | Andreas Kling |
2020-03-08 | AK: Use __builtin_memset() and such to reduce header dependencies | Andreas Kling |
2020-03-08 | AK: Add global FlatPtr typedef. It's u32 or u64, based on sizeof(void*) | Andreas Kling |
2020-03-08 | AK: Add a Conditional<condition, TrueType, FalseType> template | Andreas Kling |
2020-03-06 | AK: Fix all the warnings in the AK tests | Andreas Kling |
2020-03-06 | AK: Remove Optional::operator bool() | Andreas Kling |
2020-03-06 | AK: Simplify JsonObject and JsonArray API a little bit | Andreas Kling |
2020-03-04 | AK: LogStream should handle being passed a null const char* | Andreas Kling |
2020-03-03 | AK: Make quick_sort() a little more ergonomic | Andreas Kling |
2020-03-02 | AK: Add support for Kernel Log Stream | Liav A |
2020-03-02 | Meta: Adjust some copyright dates by Fei Wu | Andreas Kling |
2020-03-02 | AK: Add missing copyright headers to StringUtils.{cpp,h} | Andreas Kling |
2020-03-02 | AK: Move to_int(), to_uint() implementations to StringUtils (#1338) | howar6hill |
2020-03-02 | AK: Move the wildcard-matching implementation to StringUtils | howar6hill |
2020-03-02 | AK: Add enqueue_begin() for the CircularDeque class (#1320) | howar6hill |
2020-03-02 | AK: Remove superfluous explicit in Bitmap (#1337) | howar6hill |
2020-03-01 | AK: Remove unnecessary casts to size_t, after Vector changes | Andreas Kling |
2020-02-28 | Kernel: Merge the shbuf_get_size() syscall into shbuf_get() | Andreas Kling |
2020-02-28 | LibC: Move shbuf_* API's to <serenity.h> | Andreas Kling |
2020-02-28 | Kernel+LibC: Rename shared buffer syscalls to use a prefix | Andreas Kling |
2020-02-27 | Tests: Fix a typo inTestRefPtr | howar6hill |
2020-02-27 | AK: Expose SinglyLinkedListIterator constructor | William McPherson |
2020-02-26 | CircularQueue: Move construct a T object instead of copy constructing it | howar6hill |
2020-02-25 | AK: Have AK/kmalloc.h #include <new> on other platforms | Andreas Kling |
2020-02-25 | AK: Provide a ptr_hash(const void*) overload | Andreas Kling |
2020-02-25 | AK: Add ptr_hash to use int_hash or u64_hash depending on pointer size | joshua stein |
2020-02-25 | AK: Some more int => size_t in Bitmap | Andreas Kling |
2020-02-25 | AK: Make Queue use size_t for its size | Andreas Kling |
2020-02-25 | AK: Make Vector use size_t for its size and capacity | Andreas Kling |
2020-02-25 | AK, LibGfx, LibGUI: Initialize various variables to zero. | Emanuel Sprung |
2020-02-24 | AK: Zero-initialize the internal storage of Optional | Andreas Kling |
2020-02-24 | AK: Make Bitmap use size_t for its size | Andreas Kling |
2020-02-24 | AK: Make HashTable and HashMap use size_t for size and capacity | Andreas Kling |