Lines Matching defs:const

41     static void AddRef(const void* handle);
43 static void Release(const void* handle);
50 static SharedData* GetHeader(const void* handle)
80 void SharedData::AddRef(const void* handle)
93 void SharedData::Release(const void* handle)
109 const char* String::TAG = "String";
111 String::String(const char* string)
124 String::String(const char* string, size_t length)
144 String::String(const String& other)
169 int String::GetLength() const
178 char String::operator[](int index) const
186 bool String::Equals(const char* string) const
202 bool String::Equals(const String& other) const
217 int String::GetHashCode() const
223 const char* string = string_;
232 int String::IndexOf(char c, int fromIndex) const
255 int String::IndexOf(const char* string, int fromIndex) const
271 int String::IndexOf(const String& other, int fromIndex) const
287 int String::LastIndexOf(char c, int fromIndex) const
308 int String::LastIndexOf(const char* string, int fromIndex) const
323 int String::LastIndexOf(const String& other, int fromIndex) const
338 int String::LastIndexOfInternal(const char* string, int fromIndex) const
374 bool String::StartsWith(const char* string) const
392 bool String::StartsWith(const String& other) const
410 bool String::EndsWith(const char* string) const
429 bool String::EndsWith(const String& other) const
448 String String::ToLowerCase() const
467 String String::ToUpperCase() const
486 String String::Substring(int begin) const
495 String String::Substring(int begin, int end) const
504 String String::Replace(char oldChar, char newChar) const
526 String String::Replace(const char* target, const char* replacement) const
550 String String::Replace(const String& target, const String& replacement) const
574 String& String::operator=(const char* string)
593 String& String::operator=(const String& other)
613 String String::operator+=(const char* string) const
635 String String::operator+=(const String& other) const
654 String String::Format(const char* format, ...)