summaryrefslogtreecommitdiff
path: root/Libraries
AgeCommit message (Expand)Author
2020-07-28LibWeb: Move MouseEvent into the UIEvents namespaceAndreas Kling
2020-07-28LibX86: Disassemble most FPU instructions starting with D9Nico Weber
2020-07-28LibCore: add get_password().Peter Elliott
2020-07-28LibC: Add passwords to putpwentPeter Elliott
2020-07-28LibCrypt: Add LibCrypt, crypt, and crypt_rPeter Elliott
2020-07-28LibGUI: Enable icons for SubMenusBen Wiederhake
2020-07-28LibGUI: Refactor icon realization in MenuBen Wiederhake
2020-07-28LibGUI: Set correct default value during menu destructionBen Wiederhake
2020-07-28DevTools+LibGUI: Make ProcessChooser a general Dialog in LibGUIthankyouverycool
2020-07-28LibC: Fix strtol() not setting endptr correctly for "0"Andreas Kling
2020-07-28LibC: Move getpagesize() out-of-lineAndreas Kling
2020-07-27LibCrypto: Change the signatures of RSA::import_[XXX]_key to use Span.asynts
2020-07-27LibCrypto: Change the signature of decode_pem to use Span.asynts
2020-07-27LibCrypto: Change the signature of RSA::parse_rsa_key to use Span.asynts
2020-07-27LibCore: Change the signature of Socket::send() to use Span.asynts
2020-07-27LibCrypto: Change [XXX]BigInteger::export_data() to use Span.asynts
2020-07-27AK: Change the signature of AK::encode_base64() to use Span.asynts
2020-07-27LibCrypto: This method wrote to a const pointer.asynts
2020-07-27LibCore+LibWeb: Move guess-mimetype-based-on-filename logic to LibCoreAndreas Kling
2020-07-27LibWeb: Add a whole bunch of HTML DOM bindingsLuke
2020-07-27Kernel+LibC: Add sys$set_process_name() for changing the process nameAndreas Kling
2020-07-27LibC: Make the getpid() cache process global (instead of thread-local)Andreas Kling
2020-07-27LibGfx: Fix dumb typo in PNG decoderAndreas Kling
2020-07-27LibGfx: Simplify some excessive use of pow() in scanline unfilteringAndreas Kling
2020-07-27AK+LibC: Always use REP MOVSB/STOSB for memcpy()/memset()Andreas Kling
2020-07-27CppLexer: Support raw string literalsNico Weber
2020-07-27CppLexer: Support L, u, u8, U prefixes on string and char literalsNico Weber
2020-07-27CppLexer: Correctly highlight hex escapes in string and char literalsNico Weber
2020-07-27CppLexer: Support \U escapes in addition to \u escapesNico Weber
2020-07-27LibGfx: Templatize Point, Size, and RectMatthew Olsson
2020-07-27CppLexer: Add token types for "::", "::*", ".*", "->*"Nico Weber
2020-07-27CppLexer: Add token types for ".", "->"Nico Weber
2020-07-27CppLexer: Add token types for "!", "!=", "~", "?", ":"Nico Weber
2020-07-27CppLexer: Add token types for "^", "^="Nico Weber
2020-07-27CppLexer: Add token types for "++", "--"Nico Weber
2020-07-27CppLexer: Add token types for "&", "&&", "&=", "|", "||", "|="Nico Weber
2020-07-27CppLexer: Add token types for ">", ">=", ">>", ">>="Nico Weber
2020-07-27CppLexer: Add token types for "<", "<=", "<<", "<<=", "<>"Nico Weber
2020-07-27LibDebug: Add support for the various DW_FORM_block typesItamar
2020-07-26LibWeb: Move CSS classes into the Web::CSS namespaceAndreas Kling
2020-07-26LibGUI: Remove accidentally committed file :^)Andreas Kling
2020-07-26LibWeb: Move DOM classes into the Web::DOM namespaceAndreas Kling
2020-07-26CppLexer: Add token types for "+", "+=", "-", "-=", "=", "==", "/", "/="Nico Weber
2020-07-26CppLexer: Add token type for "*="Nico Weber
2020-07-26LibWeb: Make SVGElement and SVGGeometryElement constructors protectedAndreas Kling
2020-07-26LibWeb: Simplify type traits for SVGGraphicsElementAndreas Kling
2020-07-26LibCore+LibGUI: Switch to using AK::is and AK::downcastAndreas Kling
2020-07-26LibWeb: Switch to using AK::is and AK::downcastAndreas Kling
2020-07-26LibWeb: Move HTML object model stuff into LibWeb/HTML/Andreas Kling
2020-07-26Refactor: Change the AK::binary_search signature to use AK::Span.asynts