Searched defs:Delimiters (Results 1 - 3 of 3) sorted by relevance

/external/llvm/lib/Support/
H A DStringExtras.cpp32 /// leading characters that appear in the Delimiters string, and ending the
33 /// token at any of the characters that appear in the Delimiters string. If
38 StringRef Delimiters) {
40 StringRef::size_type Start = Source.find_first_not_of(Delimiters);
43 StringRef::size_type End = Source.find_first_of(Delimiters, Start);
52 StringRef Delimiters) {
53 std::pair<StringRef, StringRef> S = getToken(Source, Delimiters);
56 S = getToken(S.second, Delimiters);
37 getToken(StringRef Source, StringRef Delimiters) argument
50 SplitString(StringRef Source, SmallVectorImpl<StringRef> &OutFragments, StringRef Delimiters) argument
/external/swiftshader/third_party/llvm-subzero/lib/Support/
H A DStringExtras.cpp32 /// leading characters that appear in the Delimiters string, and ending the
33 /// token at any of the characters that appear in the Delimiters string. If
38 StringRef Delimiters) {
40 StringRef::size_type Start = Source.find_first_not_of(Delimiters);
43 StringRef::size_type End = Source.find_first_of(Delimiters, Start);
52 StringRef Delimiters) {
53 std::pair<StringRef, StringRef> S = getToken(Source, Delimiters);
56 S = getToken(S.second, Delimiters);
37 getToken(StringRef Source, StringRef Delimiters) argument
50 SplitString(StringRef Source, SmallVectorImpl<StringRef> &OutFragments, StringRef Delimiters) argument
/external/swiftshader/third_party/LLVM/lib/Support/
H A DStringExtras.cpp33 /// leading characters that appear in the Delimiters string, and ending the
34 /// token at any of the characters that appear in the Delimiters string. If
39 StringRef Delimiters) {
41 StringRef::size_type Start = Source.find_first_not_of(Delimiters);
44 StringRef::size_type End = Source.find_first_of(Delimiters, Start);
53 StringRef Delimiters) {
54 std::pair<StringRef, StringRef> S = getToken(Source, Delimiters);
57 S = getToken(S.second, Delimiters);
38 getToken(StringRef Source, StringRef Delimiters) argument
51 SplitString(StringRef Source, SmallVectorImpl<StringRef> &OutFragments, StringRef Delimiters) argument

Completed in 231 milliseconds