summaryrefslogtreecommitdiff
path: root/AK/String.cpp
AgeCommit message (Expand)Author
2023-03-13AK: Rename Stream::read_entire_buffer to Stream::read_until_filledTim Schumacher
2023-03-09AK: Make FlyString::hash() use the cached hash in StringData if possibleAndreas Kling
2023-03-08AK: Make String::contains(code_point) handle non-ASCIITimothy Flynn
2023-03-08AK: Make String::{starts,ends}_with(code_point) handle non-ASCIITimothy Flynn
2023-03-03AK: Ensure short String instances are valid UTF-8Timothy Flynn
2023-03-03AK: Add String::ends_with{,_bytes}()Linus Groh
2023-02-28AK: Add two starts_with{bytes,}() APIs to StringAli Mohammad Pur
2023-02-21AK: Ensure that we fill the whole String when reading from a StreamTim Schumacher
2023-02-21AK: Add String::from_stream methodAndrew Kaster
2023-02-21AK: Make String const-correct internallyAndreas Kling
2023-02-18AK: Fix 64-bit alignment issue in shared-superstring substringsAndreas Kling
2023-01-28AK: Add String::trimTimothy Flynn
2023-01-28AK: Add String::joinTimothy Flynn
2023-01-27AK: Add an overload of String::find_byte_offset for StringViewTimothy Flynn
2023-01-24AK: Add convenience substring wrappers to String to exclude a lengthTimothy Flynn
2023-01-24AK: Add a method to create a String with a repeated code pointTimothy Flynn
2023-01-24AK: Add a method to find the byte offset of a code pointTimothy Flynn
2023-01-22AK: Reduce String's allocated data by one byteTimothy Flynn
2023-01-22AK: Change String's default constructor to be constantTimothy Flynn
2023-01-21AK: Add `split()` for `String`martinfalisse
2023-01-20AK: Support creating known short string literals at compile timeTimothy Flynn
2023-01-15AK: Add String::containsTimothy Flynn
2023-01-15AK: Add a somewhat naive implementation of String::reverseTimothy Flynn
2023-01-12AK: Implement FlyString for the new String classTimothy Flynn
2023-01-02Everywhere: Remove unused includes of AK/Memory.hBen Wiederhake
2022-12-11AK: Change the moved-from String state to the empty short stringkleines Filmröllchen
2022-12-09AK: Unref old m_data in String's move assignmentMaciej
2022-12-06AK: Introduce the new String, replacement for DeprecatedStringAndreas Kling
2022-12-06AK+Everywhere: Rename String to DeprecatedStringLinus Groh
2022-10-24AK: Add SplitBehavior::KeepTrailingSeparator with testsdemostanis
2022-10-24AK+Everywhere: Turn bool keep_empty to an enum in split* functionsdemostanis
2022-10-23AK: Add to_{double, float} convenience functions to all string typesdavidot
2022-07-12AK: Remove String <-> char const* comparison operatorssin-ack
2022-07-12Everywhere: Add sv suffix to strings relying on StringView(char const*)sin-ack
2022-05-26AK: Add invert_case() and invert_case(StringView)huttongrabiel
2022-04-20AK: Explicitly instantiate String::to_uint<unsigned long{, long}>()Ali Mohammad Pur
2022-04-01Everywhere: Run clang-formatIdan Horowitz
2022-02-25AK: Add String::split_view(Function<bool(char)>)Andreas Kling
2022-01-29AK: Implement String's comparison operators in terms of StringView'sDaniel Bertalan
2022-01-24Everywhere: Convert ByteBuffer factory methods from Optional -> ErrorOrSam Atkins
2022-01-16AK: Fix logic in String::operator>(const String&)Matt Jacobson
2021-11-17AK: Convert AK::Format formatting helpers to returning ErrorOr<void>Andreas Kling
2021-11-11Everywhere: Pass AK::StringView by valueAndreas Kling
2021-11-10AK+Everywhere: Stop including Vector.h from StringView.hAndreas Kling
2021-09-12AK: Escape '"' in escape_html_entitiesPeter Elliott
2021-09-11AK: Replace the mutable String::replace API with an immutable versionIdan Horowitz
2021-09-11AK: Make String::count not use strstr and take a StringViewIdan Horowitz
2021-09-06Everywhere: Make ByteBuffer::{create_*,copy}() OOM-safeAli Mohammad Pur
2021-09-01AK: Pass AK::Format TypeErasedFormatParams by reference in AK::StringBrian Gianforcaro
2021-08-26AK: Implement method to convert a String/StringView to title caseTimothy Flynn