ladybird/AK
2020-06-20 17:04:03 +02:00
..
Tests AK: Fix JsonParser double encoding multibyte utf-8 chararcters 2020-06-20 17:04:03 +02:00
Assertions.h AK+LibC: Add TODO() as an alternative to ASSERT_NOT_REACHED() 2020-05-30 11:31:49 +02:00
Atomic.h AK: ALWAYS_INLINE most Atomic<T> methods 2020-06-12 16:08:45 +02:00
Badge.h
Base64.cpp AK: Add a simple and inefficient Base64 encoder 2020-06-18 23:21:41 +02:00
Base64.h AK: Add a simple and inefficient Base64 encoder 2020-06-18 23:21:41 +02:00
BinarySearch.h
Bitmap.h AK: Fix Bitmap not finding unset ranges at the end of the map 2020-05-06 22:28:23 +02:00
BufferStream.h LibDebug: Parse line number information from DWARF format 2020-04-20 17:25:50 +02:00
ByteBuffer.h AK: Correct ByteBuffer::{overwrite,slice*} bounds check 2020-05-02 12:24:10 +02:00
Checked.h AK: Always inline some Checked methods 2020-05-31 21:38:50 +02:00
CircularDeque.h
CircularQueue.h
CMakeLists.txt Ports: Fix CMake-based ports 2020-05-29 20:21:10 +02:00
Demangle.h Revert "AK: Don't demangle in serenity :(" 2020-05-20 16:24:26 +02:00
DoublyLinkedList.h
FixedArray.h
FlyString.cpp AK: Implement a slightly better FlyString::operator==(String) 2020-06-16 19:19:30 +02:00
FlyString.h AK: Make string-to-number conversion helpers return Optional 2020-06-12 21:28:55 +02:00
Forward.h AK: Add a very basic Utf32View class 2020-05-17 22:35:25 +02:00
Function.h
HashFunctions.h
HashMap.h
HashTable.h
IDAllocator.h
InlineLinkedList.h
IntrusiveList.h
IPv4Address.h AK: Make string-to-number conversion helpers return Optional 2020-06-12 21:28:55 +02:00
IterationDecision.h
JsonArray.h
JsonArraySerializer.h
JsonObject.h AK: JsonParser improvements 2020-06-13 12:43:22 +02:00
JsonObjectSerializer.h AK: Make JsonValue and JsonObjectSerializer speak int/long/long long 2020-05-22 13:57:23 +02:00
JsonParser.cpp AK: Fix JsonParser double encoding multibyte utf-8 chararcters 2020-06-20 17:04:03 +02:00
JsonParser.h AK: JsonParser improvements 2020-06-13 12:43:22 +02:00
JsonValue.cpp AK: JsonParser improvements 2020-06-13 12:43:22 +02:00
JsonValue.h AK: JsonParser improvements 2020-06-13 12:43:22 +02:00
kmalloc.h Revert "AK+LibC: Move non-placement new/delete into LibC" 2020-05-20 16:24:26 +02:00
kstdio.h Kernel+LibC: Fix various build issues introduced by ssize_t 2020-05-23 15:27:33 +02:00
LexicalPath.cpp AK: Rename FileSystemPath -> LexicalPath 2020-05-26 14:35:10 +02:00
LexicalPath.h AK: Rename FileSystemPath -> LexicalPath 2020-05-26 14:35:10 +02:00
LogStream.cpp Kernel: Absorb LibBareMetal back into the kernel 2020-05-16 12:00:04 +02:00
LogStream.h Kernel: Absorb LibBareMetal back into the kernel 2020-05-16 12:00:04 +02:00
MACAddress.h
MappedFile.cpp
MappedFile.h
Memory.h Kernel: Absorb LibBareMetal back into the kernel 2020-05-16 12:00:04 +02:00
NetworkOrdered.h
NeverDestroyed.h
Noncopyable.h
NonnullOwnPtr.h AK: Ensure we never use OwnPtr<> with RefCounted types 2020-06-12 16:08:45 +02:00
NonnullOwnPtrVector.h
NonnullPtrVector.h
NonnullRefPtr.h AK+Kernel: Help the compiler inline a bunch of trivial methods 2020-05-20 14:11:13 +02:00
NonnullRefPtrVector.h
NumberFormat.h AK+FileManager: Move out human_readable_size to AK::NumberFormat 2020-05-03 12:59:26 +02:00
NumericLimits.h AK: Allow NumericLimits.h to compile in a kernel context 2020-05-23 15:25:43 +02:00
Optional.h AK: Remove experimental clang -Wconsumed stuff 2020-05-16 10:55:54 +02:00
OwnPtr.h AK: Ensure we never use OwnPtr<> with RefCounted types 2020-06-12 16:08:45 +02:00
Platform.h AK: Remove experimental clang -Wconsumed stuff 2020-05-16 10:55:54 +02:00
PrintfImplementation.h AK: Fix printf("%c", 0) 2020-06-06 14:42:31 +02:00
Queue.h
QuickSort.h AK: Dual pivot quicksort implementation (#1838) 2020-04-18 13:58:49 +02:00
Random.h Lagom: Adjust AK, LibCore and LibTLS to build on MacOS 2020-05-30 00:36:13 +02:00
RefCounted.h AK: Ensure RefCounted types are never copied or moved 2020-06-12 16:08:45 +02:00
RefPtr.h AK+Kernel: Help the compiler inline a bunch of trivial methods 2020-05-20 14:11:13 +02:00
Result.h AK: Simplify Result class so we can start using it 2020-04-21 16:19:18 +02:00
ScopedValueRollback.h
ScopeGuard.h
SharedBuffer.cpp
SharedBuffer.h
SinglyLinkedList.h AK: Add SinglyLinkedListIterator::is_begin() 2020-04-27 11:24:21 +02:00
StdLibExtras.h AK: Add MakeSigned<T> helper template 2020-05-23 15:25:43 +02:00
String.cpp AK: Make string-to-number conversion helpers return Optional 2020-06-12 21:28:55 +02:00
String.h AK: Make string-to-number conversion helpers return Optional 2020-06-12 21:28:55 +02:00
StringBuilder.cpp AK: Add StringBuilder::append_codepoint(u32) 2020-06-04 21:12:17 +02:00
StringBuilder.h AK: Add StringBuilder::append_codepoint(u32) 2020-06-04 21:12:17 +02:00
StringImpl.cpp
StringImpl.h
StringUtils.cpp AK: Make string-to-number conversion helpers return Optional 2020-06-12 21:28:55 +02:00
StringUtils.h AK: Make string-to-number conversion helpers return Optional 2020-06-12 21:28:55 +02:00
StringView.cpp AK: Make string-to-number conversion helpers return Optional 2020-06-12 21:28:55 +02:00
StringView.h AK: Make string-to-number conversion helpers return Optional 2020-06-12 21:28:55 +02:00
TemporaryChange.h
TestSuite.h AK+LibC: Add TODO() as an alternative to ASSERT_NOT_REACHED() 2020-05-30 11:31:49 +02:00
Time.h AK: Add timeval_to_timespec and timespec_to_timeval conversion methods 2020-04-26 21:31:52 +02:00
Traits.h
Types.h AK: Fix missing ptrdiff_t in non-Serenity builds 2020-06-12 16:08:45 +02:00
URL.cpp AK: Make string-to-number conversion helpers return Optional 2020-06-12 21:28:55 +02:00
URL.h AK: Add operator== and hash traits for URL 2020-06-01 21:50:07 +02:00
URLParser.cpp AK: Make string-to-number conversion helpers return Optional 2020-06-12 21:28:55 +02:00
URLParser.h AK: Add basic percent encoder/decoder (urlencode and urldecode) 2020-06-07 21:05:05 +02:00
Utf8View.cpp AK: Add a way to get the number of valid bytes in a Utf8View 2020-05-18 11:31:43 +02:00
Utf8View.h AK: Allow default-constructing Utf8View and Utf8CodepointIterator 2020-06-04 21:12:17 +02:00
Utf32View.h AK: Assert non-empty Utf32View, when initialized with non-zero length 2020-06-15 22:32:18 +02:00
Vector.h Revert "AK: Add InitializerList, an implementation of std::initializer_list" 2020-05-20 16:24:26 +02:00
Weakable.h AK: Remove useless casts 2020-06-12 16:08:45 +02:00
WeakPtr.h