|
const struct | JUCE_CF_BRIDGED_TYPE (NSString) __CFString *CFStringRef |
|
JUCE_API String JUCE_CALLTYPE | operator+ (const char *string1, const String &string2) |
| Concatenates two strings. More...
|
|
JUCE_API String JUCE_CALLTYPE | operator+ (const wchar_t *string1, const String &string2) |
| Concatenates two strings. More...
|
|
JUCE_API String JUCE_CALLTYPE | operator+ (char string1, const String &string2) |
| Concatenates two strings. More...
|
|
JUCE_API String JUCE_CALLTYPE | operator+ (wchar_t string1, const String &string2) |
| Concatenates two strings. More...
|
|
JUCE_API String JUCE_CALLTYPE | operator+ (String string1, const String &string2) |
| Concatenates two strings. More...
|
|
JUCE_API String JUCE_CALLTYPE | operator+ (String string1, const char *string2) |
| Concatenates two strings. More...
|
|
JUCE_API String JUCE_CALLTYPE | operator+ (String string1, const wchar_t *string2) |
| Concatenates two strings. More...
|
|
JUCE_API String JUCE_CALLTYPE | operator+ (String string1, const std::string &string2) |
| Concatenates two strings. More...
|
|
JUCE_API String JUCE_CALLTYPE | operator+ (String string1, char characterToAppend) |
| Concatenates two strings. More...
|
|
JUCE_API String JUCE_CALLTYPE | operator+ (String string1, wchar_t characterToAppend) |
| Concatenates two strings. More...
|
|
JUCE_API String &JUCE_CALLTYPE | operator<< (String &string1, char characterToAppend) |
| Appends a character at the end of a string. More...
|
|
JUCE_API String &JUCE_CALLTYPE | operator<< (String &string1, wchar_t characterToAppend) |
| Appends a character at the end of a string. More...
|
|
JUCE_API String &JUCE_CALLTYPE | operator<< (String &string1, const char *string2) |
| Appends a string to the end of the first one. More...
|
|
JUCE_API String &JUCE_CALLTYPE | operator<< (String &string1, const wchar_t *string2) |
| Appends a string to the end of the first one. More...
|
|
JUCE_API String &JUCE_CALLTYPE | operator<< (String &string1, const String &string2) |
| Appends a string to the end of the first one. More...
|
|
JUCE_API String &JUCE_CALLTYPE | operator<< (String &string1, StringRef string2) |
| Appends a string to the end of the first one. More...
|
|
JUCE_API String &JUCE_CALLTYPE | operator<< (String &string1, const std::string &string2) |
| Appends a string to the end of the first one. More...
|
|
JUCE_API String &JUCE_CALLTYPE | operator<< (String &string1, uint8 number) |
| Appends a decimal number to the end of a string. More...
|
|
JUCE_API String &JUCE_CALLTYPE | operator<< (String &string1, short number) |
| Appends a decimal number to the end of a string. More...
|
|
JUCE_API String &JUCE_CALLTYPE | operator<< (String &string1, int number) |
| Appends a decimal number to the end of a string. More...
|
|
JUCE_API String &JUCE_CALLTYPE | operator<< (String &string1, long number) |
| Appends a decimal number to the end of a string. More...
|
|
JUCE_API String &JUCE_CALLTYPE | operator<< (String &string1, unsigned long number) |
| Appends a decimal number to the end of a string. More...
|
|
JUCE_API String &JUCE_CALLTYPE | operator<< (String &string1, int64 number) |
| Appends a decimal number to the end of a string. More...
|
|
JUCE_API String &JUCE_CALLTYPE | operator<< (String &string1, uint64 number) |
| Appends a decimal number to the end of a string. More...
|
|
JUCE_API String &JUCE_CALLTYPE | operator<< (String &string1, float number) |
| Appends a decimal number to the end of a string. More...
|
|
JUCE_API String &JUCE_CALLTYPE | operator<< (String &string1, double number) |
| Appends a decimal number to the end of a string. More...
|
|
JUCE_API bool JUCE_CALLTYPE | operator== (const String &string1, const String &string2) noexcept |
| Case-sensitive comparison of two strings. More...
|
|
JUCE_API bool JUCE_CALLTYPE | operator== (const String &string1, const char *string2) noexcept |
| Case-sensitive comparison of two strings. More...
|
|
JUCE_API bool JUCE_CALLTYPE | operator== (const String &string1, const wchar_t *string2) noexcept |
| Case-sensitive comparison of two strings. More...
|
|
JUCE_API bool JUCE_CALLTYPE | operator== (const String &string1, CharPointer_UTF8 string2) noexcept |
| Case-sensitive comparison of two strings. More...
|
|
JUCE_API bool JUCE_CALLTYPE | operator== (const String &string1, CharPointer_UTF16 string2) noexcept |
| Case-sensitive comparison of two strings. More...
|
|
JUCE_API bool JUCE_CALLTYPE | operator== (const String &string1, CharPointer_UTF32 string2) noexcept |
| Case-sensitive comparison of two strings. More...
|
|
JUCE_API bool JUCE_CALLTYPE | operator!= (const String &string1, const String &string2) noexcept |
| Case-sensitive comparison of two strings. More...
|
|
JUCE_API bool JUCE_CALLTYPE | operator!= (const String &string1, const char *string2) noexcept |
| Case-sensitive comparison of two strings. More...
|
|
JUCE_API bool JUCE_CALLTYPE | operator!= (const String &string1, const wchar_t *string2) noexcept |
| Case-sensitive comparison of two strings. More...
|
|
JUCE_API bool JUCE_CALLTYPE | operator!= (const String &string1, CharPointer_UTF8 string2) noexcept |
| Case-sensitive comparison of two strings. More...
|
|
JUCE_API bool JUCE_CALLTYPE | operator!= (const String &string1, CharPointer_UTF16 string2) noexcept |
| Case-sensitive comparison of two strings. More...
|
|
JUCE_API bool JUCE_CALLTYPE | operator!= (const String &string1, CharPointer_UTF32 string2) noexcept |
| Case-sensitive comparison of two strings. More...
|
|
template<class traits > |
std::basic_ostream< char, traits > &JUCE_CALLTYPE | operator<< (std::basic_ostream< char, traits > &stream, const String &stringToWrite) |
| This operator allows you to write a juce String directly to std output streams. More...
|
|
template<class traits > |
std::basic_ostream< wchar_t, traits > &JUCE_CALLTYPE | operator<< (std::basic_ostream< wchar_t, traits > &stream, const String &stringToWrite) |
| This operator allows you to write a juce String directly to std output streams. More...
|
|
JUCE_API OutputStream &JUCE_CALLTYPE | operator<< (OutputStream &stream, const String &stringToWrite) |
| Writes a string to an OutputStream as UTF8. More...
|
|
JUCE_API OutputStream &JUCE_CALLTYPE | operator<< (OutputStream &stream, StringRef stringToWrite) |
| Writes a string to an OutputStream as UTF8. More...
|
|