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

  /src/external/apache2/llvm/dist/llvm/lib/TableGen/
StringMatcher.cpp 44 /// same length and whose characters leading up to CharNo are the same, emit
45 /// code to verify that CharNo and later are the same.
49 const std::vector<const StringPair *> &Matches, unsigned CharNo,
56 if (CharNo == Matches[0]->first.size()) {
79 MatchesByLetter[Matches[i]->first[CharNo]].push_back(Matches[i]);
86 unsigned NumChars = FirstNonCommonLetter-CharNo;
92 OS << Indent << "if (" << StrVariableName << "[" << CharNo << "] != '"
93 << Matches[0]->first[CharNo] << "')\n";
98 OS << Indent << "if (memcmp(" << StrVariableName << ".data()+" << CharNo
99 << ", \"" << Matches[0]->first.substr(CharNo, NumChars) << "\",
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
CommentLexer.h 312 const unsigned CharNo = Loc - BufferStart;
313 return FileLoc.getLocWithOffset(CharNo);
  /src/external/apache2/llvm/dist/clang/lib/AST/
CommentParser.cpp 68 const unsigned CharNo = Pos.BufferPtr - Pos.BufferStart;
69 return Pos.BufferStartLoc.getLocWithOffset(CharNo);
  /src/external/apache2/llvm/dist/clang/lib/Lex/
Lexer.cpp 721 unsigned Lexer::getTokenPrefixLength(SourceLocation TokStart, unsigned CharNo,
731 if (Invalid || (CharNo == 0 && Lexer::isObviouslySimpleCharacter(*TokPtr)))
740 if (CharNo == 0)
743 --CharNo;
749 for (; CharNo; --CharNo) {
1104 Preprocessor &PP, SourceLocation FileLoc, unsigned CharNo, unsigned TokLen);
1107 unsigned CharNo, unsigned TokLen) {
1118 SpellingLoc = SpellingLoc.getLocWithOffset(CharNo);
1136 unsigned CharNo = Loc-BufferStart
    [all...]

Completed in 19 milliseconds