summaryrefslogtreecommitdiff
path: root/src/common/string_util.cpp (unfollow)
Commit message (Expand)AuthorFilesLines
2022-03-19common: Reduce unused includesGravatar ameerj1-2/+0
2021-10-14string_util: Make use of std::string_view and add bounds checkingGravatar Morph1-4/+4
2021-10-14string_util: Prevent out of bounds access in u16string_view bufferGravatar Morph1-2/+2
2021-05-25common: fs: Rework the Common Filesystem interface to make use of std::filesy...Gravatar Morph1-13/+0
2021-02-08string_util: Remove MSVC workaround for converting between UTF8/UTF16Gravatar Morph1-14/+0
2020-11-02common: Enable warnings as errorsGravatar Lioncash1-2/+3
2020-01-23common/logging: don't use regex for path trimmingGravatar BreadFish641-22/+0
2018-11-18am: Deglobalize software keyboard appletGravatar Zach Hilman1-2/+2
2018-11-18string_util: Implement buffer to UTF-16 string helper functionGravatar Zach Hilman1-0/+9
2018-11-13string_util: Remove ArrayToString()Gravatar Lioncash1-19/+0
2018-11-13string_util: Remove TryParse()Gravatar Lioncash1-37/+3
2018-10-02string_util: unify UTF8<->UTF16 conversion to codecvtGravatar Weiyi Wang1-109/+6
2018-10-02string_util: remove ShiftJIS/CP1252 conversion functionGravatar Weiyi Wang1-19/+0
2018-09-15Port #4182 from Citra: "Prefix all size_t with std::"Gravatar fearlessTobi1-21/+21
2018-07-29common/string_utils: replace boost::transform with std counterpartGravatar zhupengfei1-3/+5
2018-07-22string_util: Get rid of separate resize() in CPToUTF16(), UTF16ToUTF8(), Code...Gravatar Lioncash1-20/+22
2018-07-22string_util: Use emplace_back() in SplitString() instead of push_back()Gravatar Lioncash1-2/+3
2018-07-22string_util: Remove unnecessary std::string instance in TabsToSpaces()Gravatar Lioncash1-7/+6
2018-07-18string_util: Remove AsciiToHex()Gravatar Lioncash1-12/+0
2018-07-12More improvements to GDBStub (#653)Gravatar Hedges1-1/+1
2018-07-02Rename logging macro back to LOG_*Gravatar James Rowe1-4/+4
2018-06-07Common/string_util: add StringFromBuffer functionGravatar mailwl1-0/+4
2018-04-29string_util: Remove StringFromFormat() and related functionsGravatar Lioncash1-70/+0
2018-04-26common: Move logging macros over to new fmt-capable macros where applicableGravatar Lioncash1-5/+5
2018-03-22Logging: Create logging macros based on fmtlibGravatar Daniel Lim Wee Soong1-0/+23
2018-01-20Format: Run the new clang format on everythingGravatar James Rowe1-2/+2
2017-09-30Fixed type conversion ambiguityGravatar Huw Pascoe1-1/+1
2016-12-05Support mingw cross-compileGravatar Jannik Vogel1-1/+1
2016-11-13Add mingw compile supportGravatar James Rowe1-2/+3
2016-09-21Remove special rules for Windows.h and library includesGravatar Yuri Kunde Schlesner1-1/+1
2016-09-21Use negative priorities to avoid special-casing the self-includeGravatar Yuri Kunde Schlesner1-1/+1
2016-09-21Remove empty newlines in #include blocks.Gravatar Emmanuel Gil Peyrot1-3/+1
2016-09-18Sources: Run clang-format on everything.Gravatar Emmanuel Gil Peyrot1-116/+75
2016-03-31Fix encode problem On WindowsGravatar LFsWang1-8/+8
2015-08-02Common: Work around bug in MSVC2015 standard libraryGravatar Yuri Kunde Schlesner1-0/+14
2015-07-19Common : Fix Conversion WarningsGravatar zawata1-1/+1
2015-06-28Common: Fix string_util includes.Gravatar Emmanuel Gil Peyrot1-2/+7
2015-05-08Common: Add StringFromFixedZeroTerminatedBufferGravatar Yuri Kunde Schlesner1-0/+8
2015-05-07string_util: Get rid of UriDecode/UriEncodeGravatar Lioncash1-125/+0
2015-05-07Common: Remove common.hGravatar Yuri Kunde Schlesner1-1/+3
2015-02-12Build: Fixed some warningsGravatar Subv1-3/+3
2014-12-29Fix MSVC-related #defines and add CMakeLists commentGravatar darkf1-3/+3
2014-12-20License changeGravatar purpasmart961-2/+2
2014-12-13Convert old logging calls to new logging macrosGravatar Yuri Kunde Schlesner1-5/+5
2014-12-09Explicitly specify LE strings to iconv, fixes paths in Steel DiverGravatar archshift1-2/+2
2014-12-07StringUtil: Perform some minimal cleanup.Gravatar Tony Wasserka1-3/+3
2014-12-03Change NULLs to nullptrs.Gravatar Rohit Nirmal1-4/+4
2014-11-28Fix MinGW buildGravatar darkf1-3/+3
2014-11-19Remove trailing spaces in every file but the ones imported from SkyEye, AOSP ...Gravatar Emmanuel Gil Peyrot1-9/+9
2014-11-12Use std::u16string for conversion between UTF-8 and UTF-16, FS:USER functionsGravatar archshift1-48/+110