HomeSort by relevance Sort by last modified time
    Searched refs:Delimiters (Results 1 - 3 of 3) sorted by null

  /external/llvm/lib/Support/
StringExtras.cpp 33 /// 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);
50 /// delimiters, appending the result fragments to the output list.
53 StringRef Delimiters) {
55 tie(S2, S) = getToken(Source, Delimiters);
58 tie(S2, S) = getToken(S, Delimiters);
  /external/llvm/include/llvm/ADT/
StringExtras.h 141 /// leading characters that appear in the Delimiters string, and ending the
142 /// token at any of the characters that appear in the Delimiters string. If
147 StringRef Delimiters = " \t\n\v\f\r");
150 /// delimiters, appending the result fragments to the output list.
153 StringRef Delimiters = " \t\n\v\f\r");
  /external/llvm/utils/TableGen/
LLVMCConfigurationEmitter.cpp     [all...]

Completed in 63 milliseconds