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

1 2 3 4 5 6 7

  /src/external/apache2/llvm/dist/clang/lib/Tooling/
NodeIntrospection.cpp 69 if (LHS.first.getEnd() < RHS.first.getEnd())
71 else if (LHS.first.getEnd() != RHS.first.getEnd())
  /src/external/apache2/llvm/dist/clang/lib/Tooling/Refactoring/
ASTSelection.cpp 27 R.getEnd(), tok::raw_identifier, SM, LangOpts,
43 SelectionEnd(Selection.getBegin() == Selection.getEnd()
45 : Selection.getEnd()),
87 if (DeclRange.getBegin().isMacroID() && !DeclRange.getEnd().isMacroID())
88 FileLoc = DeclRange.getEnd();
101 if (DeclRange.getEnd().isValid() &&
104 DeclRange.getEnd())) {
140 SourceLocation End = Range.getEnd();
186 SelectionRange.getEnd()) &&
190 assert(Context.getSourceManager().getFileID(SelectionRange.getEnd()) =
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Rewrite/
Rewriter.cpp 148 !isRewritable(Range.getEnd())) return -1;
152 unsigned EndOff = getLocationOffsetAndFileID(Range.getEnd(), EndFileID);
170 EndOff += Lexer::MeasureTokenLength(Range.getEnd(), *SourceMgr, *LangOpts);
186 !isRewritable(Range.getEnd()))
192 EndOff = getLocationOffsetAndFileID(Range.getEnd(), EndFileID);
209 Lexer::MeasureTokenLength(Range.getEnd(), *SourceMgr, *LangOpts);
220 EndOff += Lexer::MeasureTokenLength(Range.getEnd(), *SourceMgr, *LangOpts);
332 if (!isRewritable(range.getEnd())) return true;
348 if (!isRewritable(range.getEnd())) return true;
355 EndOff = getLocationOffsetAndFileID(range.getEnd(), EndFileID)
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Tooling/Transformer/
SourceCode.cpp 46 Lexer::getRawToken(R.getEnd(), Tok, Context.getSourceManager(),
59 if (Range.getBegin().isMacroID() || Range.getEnd().isMacroID())
64 SM.isInSystemHeader(Range.getEnd()))
69 std::pair<FileID, unsigned> EndInfo = SM.getDecomposedLoc(Range.getEnd());
137 auto FileOffset = SM.getDecomposedLoc(ExpansionRange.getEnd());
358 atOrBeforeSeparation(SM, Range.getEnd(), LangOpts)) {
398 // Range.getEnd() is already fully un-expanded by getEntityEndLoc. But,
RangeSelector.cpp 120 SourceLocation End = SelectedRange->getEnd();
129 CharSourceRange::getTokenRange(SelectedRange->getEnd()),
134 End = Range.getEnd();
173 SourceLocation E = EndRange->getEnd();
  /src/external/apache2/llvm/dist/clang/lib/Lex/
PPConditionalDirectiveRecord.cpp 33 if (SourceMgr.isBeforeInTranslationUnit(Range.getEnd(), low->getLoc()))
38 Range.getEnd(), CondDirectiveLoc::Comp(SourceMgr));
PreprocessingRecord.cpp 139 assert(!SourceMgr.isBeforeInTranslationUnit(Range.getEnd(),Range.getBegin()));
171 assert(!SourceMgr.isBeforeInTranslationUnit(Range.getEnd(),Range.getBegin()));
174 unsigned End = findEndLocalPreprocessedEntity(Range.getEnd());
229 if (SourceMgr.isBeforeInTranslationUnit((*I)->getSourceRange().getEnd(),
498 EndLoc = FilenameRange.getEnd();
  /src/external/apache2/llvm/dist/clang/include/clang/Rewrite/Core/
HTMLRewrite.h 42 HighlightRange(R, Range.getBegin(), Range.getEnd(), StartTag, EndTag);
  /src/external/apache2/llvm/dist/clang/lib/ARCMigrate/
TransUnusedInitDelegate.cpp 61 Pass.TA.insertAfterToken(ExprRange.getEnd(), retStr);
PlistReporter.cpp 54 AddFID(FM, Fids, SM, RI->getEnd());
  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
Dominators.h 101 const BasicBlock *getEnd() const {
124 BBInfo::getHashValue(Edge.getEnd()));
129 BBInfo::isEqual(LHS.getEnd(), RHS.getEnd());
  /src/external/bsd/elftosb/dist/common/
StSRecordFile.h 85 inline const_iterator getEnd() const { return m_records.end(); }
SRecordSourceFile.cpp 125 for (; it != m_file->getEnd(); it++)
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CoverageMappingGen.cpp 66 SourceMgr.isWrittenInSameFile(SkippedRanges.back().Range.getEnd(),
68 SkippedRanges.back().Range.setEnd(Range.getEnd());
278 SourceLocation getEnd(const Stmt *S) {
378 auto LocEnd = Range.getEnd();
491 SourceLocation End = getEnd(Body);
690 SourceLocation EndLoc = getEnd(S);
732 popRegions(pushRegion(Counter::getZero(), getStart(C), getEnd(C),
736 popRegions(pushRegion(TrueCnt, getStart(C), getEnd(C), FalseCnt));
866 SourceLocation EndLoc = getEnd(S);
975 auto Gap = findGapAreaBetween(getEnd(LastStmt), getStart(Child))
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Edit/
Commit.cpp 109 commitableAfter = insertAfterToken(range.getEnd(), after);
111 commitableAfter = insert(range.getEnd(), after);
160 addRemove(replacementRange.getEnd(),
303 if (range.getBegin().isMacroID() || range.getEnd().isMacroID())
306 SM.isInSystemHeader(range.getEnd()))
313 std::pair<FileID, unsigned> endInfo = SM.getDecomposedLoc(range.getEnd());
  /src/external/apache2/llvm/dist/clang/lib/Format/
AffectedRangeManager.cpp 65 if (!SourceMgr.isBeforeInTranslationUnit(Range.getEnd(), I->getBegin()) &&
66 !SourceMgr.isBeforeInTranslationUnit(I->getEnd(), Range.getBegin()))
  /src/external/apache2/llvm/dist/clang/lib/Tooling/Core/
Diagnostic.cpp 44 Length = Sources.getFileOffset(Range.getEnd()) - FileOffset;
  /src/external/apache2/llvm/dist/clang/lib/Tooling/Refactoring/Extract/
SourceExtraction.cpp 97 SourceLocation End = ExtractedRange.getEnd();
  /src/external/apache2/llvm/dist/llvm/lib/IR/
Dominators.cpp 205 const BasicBlock *End = BBE.getEnd();
254 if (PN && PN->getParent() == BBE.getEnd() &&
346 if (BBE1.getStart() == BBE2.getStart() && BBE1.getEnd() == BBE2.getEnd())
  /src/external/apache2/llvm/dist/clang/lib/Frontend/
DiagnosticRenderer.cpp 73 Hint.RemoveRange.getBegin() != Hint.RemoveRange.getEnd())
289 IsBegin ? MacroRange.getBegin() : MacroRange.getEnd();
308 IsBegin ? MacroArgRange.getBegin() : MacroArgRange.getEnd();
325 Loc = IsBegin ? ExpRange.getBegin() : ExpRange.getEnd();
367 SourceLocation Begin = Range.getBegin(), End = Range.getEnd();
388 End = Exp.getEnd();
478 SourceLocation BegLoc = Range.getBegin(), EndLoc = Range.getEnd();
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
ContainerModeling.cpp 232 if (CData.getEnd()) {
233 SR.markLive(CData.getEnd());
234 if(const auto *SIE = dyn_cast<SymIntExpr>(CData.getEnd()))
327 if (const auto OldEndSym = OldCData->getEnd()) {
408 if (const auto EndSym = CData->getEnd()) {
443 if (const auto EndSym = CData->getEnd()) {
475 if (const auto EndSym = CData->getEnd()) {
595 if (const auto EndSym = CData->getEnd()) {
627 if (const auto EndSym = CData->getEnd()) {
662 if (const auto EndSym = CData->getEnd()) {
    [all...]
DebugContainerModeling.cpp 128 return D->getEnd();
  /src/sys/external/bsd/compiler_rt/dist/lib/ubsan/
ubsan_diag.cc 231 if (Ranges[I].getEnd().getMemoryLocation() > Loc &&
259 Max = __sanitizer::Max(Ranges[I].getEnd().getMemoryLocation(), Max);
286 if (InRange && InRange->getEnd().getMemoryLocation() == P)
306 if (!InRange || InRange->getEnd().getMemoryLocation() == P)
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
SarifDiagnostics.cpp 187 if (R.getBegin() == R.getEnd()) {
190 Region["endLine"] = SM.getExpansionLineNumber(R.getEnd());
192 SM, R.getEnd(),
193 Lexer::MeasureTokenLength(R.getEnd(), SM, LO));
  /src/external/apache2/llvm/dist/clang/lib/Tooling/Refactoring/Rename/
USRFinder.cpp 49 SourceLocation End = Range.getEnd();

Completed in 56 milliseconds

1 2 3 4 5 6 7