OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:StringAppend
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/wtf/text/
StringOperators.h
28
class
StringAppend
{
30
StringAppend
(StringType1 string1, StringType2 string2)
84
class StringTypeAdapter<
StringAppend
<StringType1, StringType2> > {
86
StringTypeAdapter<
StringAppend
<StringType1, StringType2> >(
StringAppend
<StringType1, StringType2>& buffer)
99
StringAppend
<StringType1, StringType2>& m_buffer;
102
inline
StringAppend
<const char*, String> operator+(const char* string1, const String& string2)
104
return
StringAppend
<const char*, String>(string1, string2);
107
inline
StringAppend
<const char*, AtomicString> operator+(const char* string1, const AtomicString& string2)
109
return
StringAppend
<const char*, AtomicString>(string1, string2)
[
all
...]
/external/llvm/unittests/ADT/
VariadicFunctionTest.cpp
68
StringAppendImpl>
StringAppend
= {};
72
EXPECT_EQ(0,
StringAppend
(&S0));
76
EXPECT_EQ(2,
StringAppend
(&S1, "go"));
81
StringAppend
(&S4, "John", "Paul", "George", "Ringo"));
Completed in 1140 milliseconds