HomeSort by: relevance | last modified time | path
    Searched defs:Chars (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Support/
raw_ostream.cpp 477 static const char Chars[] = {C, C, C, C, C, C, C, C, C, C, C, C, C, C, C, C,
484 if (NumChars < array_lengthof(Chars))
485 return OS.write(Chars, NumChars);
489 (unsigned)array_lengthof(Chars)-1);
490 OS.write(Chars, NumToWrite);
  /src/external/apache2/llvm/dist/clang/lib/Lex/
Lexer.cpp 738 // chars, this method is extremely fast.
1307 /// then either return the trigraph (skipping 3 chars) or the '?',
1863 unsigned Chars = 1;
1870 const StringRef CompleteSuffix(Buffer, Chars);
1876 if (Chars == MaxStandardSuffixLength)
1880 Buffer[Chars++] = Next;
  /src/external/apache2/llvm/dist/llvm/tools/llvm-rc/
ResourceFileWriter.cpp 150 SmallVector<UTF16, 128> Chars;
154 convertUTF8ToUTF16String(Str, Chars);
157 Chars.push_back(cp1252ToUnicode((unsigned char)C));
164 Chars.push_back((unsigned char)C);
170 for (UTF16 &Ch : Chars) {
174 Result.swap(Chars);
177 Result.reserve(Chars.size());
196 // Escaped chars in narrow strings have to be interpreted according to
219 while (Pos < Chars.size()) {
220 UTF16 CurChar = Chars[Pos]
    [all...]

Completed in 28 milliseconds