Home | History | Annotate | Download | only in sksl

Lines Matching full:operator

69 String String::operator+(const char* s) const {
75 String String::operator+(const String& s) const {
81 String String::operator+(StringFragment s) const {
87 String& String::operator+=(char c) {
88 INHERITED::operator+=(c);
92 String& String::operator+=(const char* s) {
93 INHERITED::operator+=(s);
97 String& String::operator+=(const String& s) {
98 INHERITED::operator+=(s);
102 String& String::operator+=(StringFragment s) {
107 bool String::operator==(const String& s) const {
111 bool String::operator!=(const String& s) const {
115 bool String::operator==(const char* s) const {
119 bool String::operator!=(const char* s) const {
123 String operator+(const char* s1, const String& s2) {
129 bool operator==(const char* s1, const String& s2) {
133 bool operator!=(const char* s1, const String& s2) {
137 bool StringFragment::operator==(StringFragment s) const {
144 bool StringFragment::operator!=(StringFragment s) const {
151 bool StringFragment::operator==(const char* s) const {
160 bool StringFragment::operator!=(const char* s) const {
169 bool StringFragment::operator<(StringFragment other) const {
177 bool operator==(const char* s1, StringFragment s2) {
181 bool operator!=(const char* s1, StringFragment s2) {