Home | History | Annotate | Download | only in text

Lines Matching refs:StringAppend

30 class StringAppend {
32 StringAppend(StringType1 string1, StringType2 string2);
52 StringAppend<StringType1, StringType2>::StringAppend(StringType1 string1, StringType2 string2)
59 StringAppend<StringType1, StringType2>::operator String() const
65 StringAppend<StringType1, StringType2>::operator AtomicString() const
71 bool StringAppend<StringType1, StringType2>::is8Bit()
79 void StringAppend<StringType1, StringType2>::writeTo(LChar* destination)
89 void StringAppend<StringType1, StringType2>::writeTo(UChar* destination)
98 unsigned StringAppend<StringType1, StringType2>::length()
106 class StringTypeAdapter<StringAppend<StringType1, StringType2> > {
108 StringTypeAdapter<StringAppend<StringType1, StringType2> >(StringAppend<StringType1, StringType2>& buffer)
121 StringAppend<StringType1, StringType2>& m_buffer;
124 inline StringAppend<const char*, String> operator+(const char* string1, const String& string2)
126 return StringAppend<const char*, String>(string1, string2);
129 inline StringAppend<const char*, AtomicString> operator+(const char* string1, const AtomicString& string2)
131 return StringAppend<const char*, AtomicString>(string1, string2);
135 inline StringAppend<const char*, StringAppend<U, V> > operator+(const char* string1, const StringAppend<U, V>& string2)
137 return StringAppend<const char*, StringAppend<U, V> >(string1, string2);
140 inline StringAppend<const UChar*, String> operator+(const UChar* string1, const String& string2)
142 return StringAppend<const UChar*, String>(string1, string2);
145 inline StringAppend<const UChar*, AtomicString> operator+(const UChar* string1, const AtomicString& string2)
147 return StringAppend<const UChar*, AtomicString>(string1, string2);
151 inline StringAppend<const UChar*, StringAppend<U, V> > operator+(const UChar* string1, const StringAppend<U, V>& string2)
153 return StringAppend<const UChar*, StringAppend<U, V> >(string1, string2);
157 StringAppend<String, T> operator+(const String& string1, T string2)
159 return StringAppend<String, T>(string1, string2);
163 StringAppend<StringAppend<U, V>, W> operator+(const StringAppend<U, V>& string1, W string2)
165 return StringAppend<StringAppend<U, V>, W>(string1, string2);