HomeSort by: relevance | last modified time | path
    Searched refs:getCharacterData (Results 1 - 25 of 28) sorted by relevancy

1 2

  /src/external/apache2/llvm/dist/clang/lib/Format/
UsingDeclarationsSorter.cpp 159 StringRef Text(SourceMgr.getCharacterData(SortedBegin),
160 SourceMgr.getCharacterData(SortedEnd) -
161 SourceMgr.getCharacterData(SortedBegin));
163 StringRef OldText(SourceMgr.getCharacterData(Begin),
164 SourceMgr.getCharacterData(End) -
165 SourceMgr.getCharacterData(Begin));
WhitespaceManager.cpp 123 SourceMgr.getCharacterData(PreviousOriginalWhitespaceEnd);
125 SourceMgr.getCharacterData(OriginalWhitespaceStart) -
976 if (StringRef(SourceMgr.getCharacterData(Range.getBegin()),
FormatTokenLexer.cpp 1031 Tok.TokenText = StringRef(SourceMgr.getCharacterData(Tok.Tok.getLocation()),
  /src/external/apache2/llvm/dist/clang/lib/Tooling/Transformer/
SourceCode.cpp 105 return isVerticalWhitespace(SM.getCharacterData(Tok.getLocation())[0]);
270 const char *LocChars = SM.getCharacterData(Loc);
291 SM.getCharacterData(Loc.getLocWithOffset(-1), &Invalid);
  /src/external/apache2/llvm/dist/clang/lib/Analysis/
IssueHash.cpp 154 const char *BufferPos = SM.getCharacterData(StartOfLine);
165 LineBuff << std::string(SM.getCharacterData(Token.getLocation()),
  /src/external/apache2/llvm/dist/clang/lib/Basic/
SourceLocation.cpp 260 const char *FullSourceLoc::getCharacterData(bool *Invalid) const {
262 return SrcMgr->getCharacterData(*this, Invalid);
SourceManager.cpp 1153 /// getCharacterData - Return a pointer to the start of the specified location
1155 const char *SourceManager::getCharacterData(SourceLocation SL,
  /src/external/apache2/llvm/dist/clang/lib/Frontend/Rewrite/
RewriteObjC.cpp 774 const char *startBuf = SM->getCharacterData(startLoc);
908 const char *startBuf = SM->getCharacterData(startLoc);
1007 const char *startBuf = SM->getCharacterData(LocStart);
1008 const char *endBuf = SM->getCharacterData(LocEnd);
1182 const char *startBuf = SM->getCharacterData(LocStart);
1183 const char *endBuf = SM->getCharacterData(LocEnd);
1195 const char *startBuf = SM->getCharacterData(LocStart);
1196 const char *endBuf = SM->getCharacterData(LocEnd);
1489 const char *startBuf = SM->getCharacterData(startLoc);
1545 const char *rparenBuf = SM->getCharacterData(rightParenLoc)
    [all...]
RewriteModernObjC.cpp 927 const char *startBuf = SM->getCharacterData(startLoc);
1063 const char *startBuf = SM->getCharacterData(startLoc);
1173 const char *startBuf = SM->getCharacterData(LocStart);
1174 const char *endBuf = SM->getCharacterData(LocEnd);
1358 const char *startBuf = SM->getCharacterData(LocStart);
1359 const char *endBuf = SM->getCharacterData(LocEnd);
1371 const char *startBuf = SM->getCharacterData(LocStart);
1372 const char *endBuf = SM->getCharacterData(LocEnd);
1693 const char *startBuf = SM->getCharacterData(startLoc);
1752 const char *rparenBuf = SM->getCharacterData(rightParenLoc)
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Parse/
ParseAST.cpp 80 const char *Spelling = SM.getCharacterData(Tok.getLocation(), &Invalid);
ParseExpr.cpp 508 SM.getCharacterData(FILoc.getLocWithOffset(-1), &IsInvalid);
511 SM.getCharacterData(FILoc.getLocWithOffset(-2), &IsInvalid);
  /src/external/apache2/llvm/dist/clang/lib/Lex/
TokenConcatenation.cpp 54 const char *Ptr = SM.getCharacterData(SM.getSpellingLoc(Tok.getLocation()));
137 return *SM.getCharacterData(SM.getSpellingLoc(Tok.getLocation()));
Lexer.cpp 203 const char *StrData = SM.getCharacterData(SpellingLoc);
373 const char *TokStart = SourceMgr.getCharacterData(Tok.getLocation(),
424 TokStart = SourceMgr.getCharacterData(Tok.getLocation(), &CharDataInvalid);
728 const char *TokPtr = SM.getCharacterData(TokStart, &Invalid);
1284 const char *TokenEnd = SM.getCharacterData(TokenLoc) + Tok->getLength();
Preprocessor.cpp 245 const char *Start = SourceMgr.getCharacterData(Tok.getLocation());
  /src/external/apache2/llvm/dist/clang/include/clang/Basic/
SourceLocation.h 405 const char *getCharacterData(bool *Invalid = nullptr) const;
SourceManager.h 1377 const char *getCharacterData(SourceLocation SL,
  /src/external/apache2/llvm/dist/clang/lib/ARCMigrate/
TransUnbridgedCasts.cpp 255 char PrevChar = *SM.getCharacterData(InsertLoc.getLocWithOffset(-1));
ObjCMT.cpp 301 const char *colon = PP.getSourceManager().getCharacterData(EndLoc);
  /src/external/apache2/llvm/dist/clang/lib/Rewrite/
Rewriter.cpp 203 const char *Ptr = SourceMgr->getCharacterData(Range.getBegin());
  /src/external/apache2/llvm/dist/clang/tools/clang-import-test/
clang-import-test.cpp 105 const char *LocData = SM.getCharacterData(Loc, /*Invalid=*/nullptr);
  /src/external/apache2/llvm/dist/clang/lib/Frontend/
VerifyDiagnosticConsumer.cpp 774 const char *CommentRaw = SM.getCharacterData(CommentBegin);
775 StringRef C(CommentRaw, SM.getCharacterData(Comment.getEnd()) - CommentRaw);
  /src/external/mit/isl/dist/interface/
generator.cc 638 s = SM.getCharacterData(loc);
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
HTMLDiagnostics.cpp 817 const char *TokInstantiationPtr =Pos.getExpansionLoc().getCharacterData();
  /src/external/apache2/llvm/dist/clang/lib/Tooling/Syntax/
Tokens.cpp 114 const char *Start = SM.getCharacterData(location(), &Invalid);
  /src/external/apache2/llvm/dist/clang/include/clang/Lex/
Preprocessor.h 1784 // Otherwise, fall back on getCharacterData, which is slower, but always
1786 return *SourceMgr.getCharacterData(Tok.getLocation(), Invalid);

Completed in 79 milliseconds

1 2