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

  /external/clang/include/clang/Edit/
EditedSource.h 56 bool canInsertInOffset(SourceLocation OrigLoc, FileOffset Offs);
71 bool commitInsert(SourceLocation OrigLoc, FileOffset Offs, StringRef text,
73 bool commitInsertFromRange(SourceLocation OrigLoc, FileOffset Offs,
76 void commitRemove(SourceLocation OrigLoc, FileOffset BeginOffs, unsigned Len);
Commit.h 35 SourceLocation OrigLoc;
111 void addInsert(SourceLocation OrigLoc,
113 void addInsertFromRange(SourceLocation OrigLoc, FileOffset Offs,
116 void addRemove(SourceLocation OrigLoc, FileOffset Offs, unsigned Len);
121 bool canInsertInOffset(SourceLocation OrigLoc, FileOffset Offs);
  /external/clang/lib/ARCMigrate/
TransARCAssign.cpp 46 SourceLocation OrigLoc = E->getExprLoc();
47 SourceLocation Loc = OrigLoc;
  /external/clang/lib/Edit/
EditedSource.cpp 30 bool EditedSource::canInsertInOffset(SourceLocation OrigLoc, FileOffset Offs) {
37 if (SourceMgr.isMacroArgExpansion(OrigLoc)) {
39 DefArgLoc = SourceMgr.getImmediateExpansionRange(OrigLoc).first;
52 bool EditedSource::commitInsert(SourceLocation OrigLoc,
55 if (!canInsertInOffset(OrigLoc, Offs))
60 if (SourceMgr.isMacroArgExpansion(OrigLoc)) {
62 DefArgLoc = SourceMgr.getImmediateExpansionRange(OrigLoc).first;
84 bool EditedSource::commitInsertFromRange(SourceLocation OrigLoc,
136 return commitInsert(OrigLoc, Offs, StrVec.str(), beforePreviousInsertions);
139 void EditedSource::commitRemove(SourceLocation OrigLoc,
    [all...]
Commit.cpp 177 void Commit::addInsert(SourceLocation OrigLoc, FileOffset Offs, StringRef text,
184 data.OrigLoc = OrigLoc;
191 void Commit::addInsertFromRange(SourceLocation OrigLoc, FileOffset Offs,
199 data.OrigLoc = OrigLoc;
207 void Commit::addRemove(SourceLocation OrigLoc,
214 data.OrigLoc = OrigLoc;
280 bool Commit::canInsertInOffset(SourceLocation OrigLoc, FileOffset Offs)
    [all...]
  /external/clang/lib/Parse/
ParseObjc.cpp     [all...]
ParseDecl.cpp 778 SourceLocation OrigLoc = Tok.getLocation();
831 if (Tok.getLocation() != OrigLoc) {
837 OrigLoc))
838 while (Tok.getLocation() != OrigLoc && Tok.isNot(tok::eof))
    [all...]
  /external/clang/lib/Sema/
SemaExpr.cpp     [all...]
SemaExprObjC.cpp     [all...]

Completed in 218 milliseconds