|
| FORCEINLINE uint32 | GetTypeHash (const FString &Thing) |
| |
| | Expose_TNameOf (FString) template<> struct TIsContiguousContainer< FString > |
| |
| TCHAR * | GetData (FString &String) |
| |
| const TCHAR * | GetData (const FString &String) |
| |
| SIZE_T | GetNum (const FString &String) |
| |
| FString | BytesToString (const uint8 *In, int32 Count) |
| |
| int32 | StringToBytes (const FString &String, uint8 *OutBytes, int32 MaxBufferSize) |
| |
| TCHAR | NibbleToTChar (uint8 Num) |
| |
| void | ByteToHex (uint8 In, FString &Result) |
| |
| FString | BytesToHex (const uint8 *In, int32 Count) |
| |
| const bool | CheckTCharIsHex (const TCHAR Char) |
| |
| const uint8 | TCharToNibble (const TCHAR Char) |
| |
| int32 | HexToBytes (const FString &HexString, uint8 *OutBytes) |
| |
| void | Lex::FromString (int8 &OutValue, const TCHAR *Buffer) |
| |
| void | Lex::FromString (int16 &OutValue, const TCHAR *Buffer) |
| |
| void | Lex::FromString (int32 &OutValue, const TCHAR *Buffer) |
| |
| void | Lex::FromString (int64 &OutValue, const TCHAR *Buffer) |
| |
| void | Lex::FromString (uint8 &OutValue, const TCHAR *Buffer) |
| |
| void | Lex::FromString (uint16 &OutValue, const TCHAR *Buffer) |
| |
| void | Lex::FromString (uint32 &OutValue, const TCHAR *Buffer) |
| |
| void | Lex::FromString (uint64 &OutValue, const TCHAR *Buffer) |
| |
| void | Lex::FromString (float &OutValue, const TCHAR *Buffer) |
| |
| void | Lex::FromString (double &OutValue, const TCHAR *Buffer) |
| |
| void | Lex::FromString (FString &OutValue, const TCHAR *Buffer) |
| |
| template<typename CharType > |
| TEnableIf< TIsCharType< CharType >::Value, FString >::Type | Lex::ToString (const CharType *Ptr) |
| |
| FString | Lex::ToString (bool Value) |
| |
| FORCEINLINE FString | Lex::ToString (FString &&Str) |
| |
| FORCEINLINE FString | Lex::ToString (const FString &Str) |
| |
| template<typename T > |
| FString | Lex::ToSanitizedString (const T &Value) |
| |
| template<typename T > |
| static TEnableIf< TIsArithmetic< T >::Value, bool >::Type | Lex::TryParseString (T &OutValue, const TCHAR *Buffer) |
| |
| template<typename CompareType > |
| bool | UE4String_Private::MatchesWildcardRecursive (const TCHAR *Target, int32 TargetLength, const TCHAR *Wildcard, int32 WildcardLength) |
| |
| int32 | FindMatchingClosingParenthesis (const FString &TargetString, const int32 StartSearch) |
| |