summaryrefslogtreecommitdiff
path: root/Tests/AK
AgeCommit message (Expand)Author
2021-08-26AK: Implement method to convert a String/StringView to title caseTimothy Flynn
2021-08-19AK: Add GenericLexer API to consume an escaped Unicode code pointTimothy Flynn
2021-08-15AK: Add Time::is_negative() to detect negative time valuesBrian Gianforcaro
2021-08-09Tests: Add test for String::bijective_base_from()Mandar Kulkarni
2021-08-08LibDebug: Store 64-bit numbers in AttributeValueDaniel Bertalan
2021-08-06AK: Improve the parsing of data urlsTheFightingCatfish
2021-08-01Tests: Remove unused header includesBrian Gianforcaro
2021-07-31Tests: Fix AK/TestJSON.cpp by not relying on disk resourcesBrian Gianforcaro
2021-07-25AK: Create MACAddress from stringbrapru
2021-07-22AK: Implement {any,all}_of(IterableContainer&&, Predicate)Ali Mohammad Pur
2021-07-22AK: Add a CommonType<Ts...> type traitAli Mohammad Pur
2021-07-22AK: Add Utf16View for decoding UTF-16 stringsTimothy Flynn
2021-07-19AK: Use new Formatter for each element in Formatter<Vector<T>>Andrew Kaster
2021-07-18AK: Allow setting both width and precision when formatting a stringTimothy Flynn
2021-07-17AK: Track byte length, rather than code point length, in Utf8View::trimTimothy Flynn
2021-07-16AK/Tests: Add test for EnumBits has_any_flag()Timothy
2021-07-16AK/Tests: Add test for EnumBits has_flag()Timothy
2021-07-15AK: Make JsonParser correctly parse unsigned values larger than u32Ali Mohammad Pur
2021-07-14Tests: Fix compile errors on ClangDaniel Bertalan
2021-07-11AK: Bring back FixedArray<T>Andreas Kling
2021-07-05JsonParser: Bring parser more to specstelar7
2021-07-04Tests: Add test for String::roman_number_from()Tobias Christiansen
2021-07-04Everywhere: Prefer using "..."sv over StringView { "..." }Gunnar Beutner
2021-07-04Tests: Add tests for `Optional`'s conditionally trivial functionsDaniel Bertalan
2021-07-04AK: Destroy original value when assigning to VariantDaniel Bertalan
2021-07-04Tests: Add test for supported operation type traitsDaniel Bertalan
2021-07-02Tests: Add test for String::find with empty needleMax Wipfli
2021-07-02AK: Implement String::find_any_of() and StringView::find_any_of()Max Wipfli
2021-07-02AK+Everywhere: Remove StringView::find_{first,last}_of(char) methodsMax Wipfli
2021-06-30AK+Everywhere: Remove "null state" of LexicalPathMax Wipfli
2021-06-30AK: Make LexicalPath immutableMax Wipfli
2021-06-30Tests: Rewrite tests for LexicalPathMax Wipfli
2021-06-30AK: Remove the LexicalPath::is_valid() APIMax Wipfli
2021-06-28AK: Add and use the RemoveCVReference<T> type traitAli Mohammad Pur
2021-06-27AK: Make the constexpr StringView methods actually constexprAli Mohammad Pur
2021-06-26AK: Undo bogus Variant::downcast() renameAndreas Kling
2021-06-24AK: Rename downcast<T> => verify_cast<T>Andreas Kling
2021-06-24Everywhere: Use nothrow new with `adopt_{ref,own}_if_nonnull`Daniel Bertalan
2021-06-24Tests: Reduce runtime of TestCharacterTypesMax Wipfli
2021-06-19AK: Add support for keeping trailing zeros in fixed precision floatsIdan Horowitz
2021-06-17AK: Add some tests for hexdump formattingAli Mohammad Pur
2021-06-16AK+Tests: Add IntrusiveList<T,...>::insert_before(..) methodBrian Gianforcaro
2021-06-15AK: Add support for removing SinglyLinkedList nodes during iterationIdan Horowitz
2021-06-12AK: Rename Vector::append(Vector) => Vector::extend(Vector)Andreas Kling
2021-06-11AK+LibX86: Generalize u128/256 to AK::UFixedBigIntHendiadyoin1
2021-06-08AK: Make Vector capable of holding reference typesAli Mohammad Pur
2021-06-07AK: Add IntrusiveList::size_slow() to match InlineLinkedListBrian Gianforcaro
2021-06-05AK: Do not trim away non-ASCII bytes when parsing URLMax Wipfli
2021-06-04AK: Don’t drop lines between \r and \n in StringView::lines() (#7662)R Smith
2021-06-03AK: Do not VERIFY on invalid code point bytes in UTF8ViewDexesTTP