Searched refs:endLoc (Results 1 - 17 of 17) sorted by relevance

/external/clang/include/clang/Parse/
H A DParser.h2016 SourceLocation endLoc; local
2017 ParseGNUAttributes(attrs, &endLoc, LateAttrs, &D);
2018 D.takeAttributes(attrs, endLoc);
2022 SourceLocation *endLoc = nullptr,
2025 ParseGNUAttributes(attrs, endLoc, LateAttrs);
2028 SourceLocation *endLoc = nullptr,
2044 SourceLocation endLoc; local
2045 ParseCXX11Attributes(attrs, &endLoc);
2046 D.takeAttributes(attrs, endLoc);
2050 SourceLocation *endLoc
[all...]
/external/llvm/lib/ProfileData/
H A DCoverageMapping.cpp317 ActiveRegions.back()->endLoc() <= Region.startLoc())
320 PrevRegion->endLoc() == Region.endLoc()) {
390 return RHS.endLoc() < LHS.endLoc();
/external/llvm/include/llvm/ProfileData/
H A DCoverageMapping.h202 inline std::pair<unsigned, unsigned> endLoc() const { function in struct:llvm::coverage::CounterMappingRegion
217 if (endLoc() < Other.endLoc())
/external/llvm/unittests/ProfileData/
H A DCoverageMappingTest.cpp172 ASSERT_EQ(InputCMRs[I].endLoc(), OutputCMRs[I].endLoc());
/external/clang/tools/libclang/
H A DCXLoadedDiagnostic.cpp305 CXSourceLocation endLoc = makeLocation(End);
306 SR = clang_getRange(startLoc, endLoc);
/external/clang/lib/ARCMigrate/
H A DTransformActions.cpp69 SourceLocation beginLoc = range.getBegin(), endLoc = range.getEnd(); local
70 assert(beginLoc.isValid() && endLoc.isValid());
73 End = FullSourceLoc(getLocForEndOfToken(endLoc, srcMgr, PP), srcMgr);
76 End = FullSourceLoc(srcMgr.getExpansionLoc(endLoc), srcMgr);
/external/clang/lib/Parse/
H A DParseDeclCXX.cpp3651 SourceLocation *endLoc) {
3654 ParseAlignmentSpecifier(attrs, endLoc);
3704 AttrParsed = ParseCXX11AttributeArgs(AttrName, AttrLoc, attrs, endLoc,
3720 if (endLoc)
3721 *endLoc = Tok.getLocation();
3731 SourceLocation *endLoc) {
3735 if (!endLoc)
3736 endLoc = &Loc;
3739 ParseCXX11AttributeSpecifier(attrs, endLoc);
3742 attrs.Range = SourceRange(StartLoc, *endLoc);
3650 ParseCXX11AttributeSpecifier(ParsedAttributes &attrs, SourceLocation *endLoc) argument
3730 ParseCXX11Attributes(ParsedAttributesWithRange &attrs, SourceLocation *endLoc) argument
3790 ParseMicrosoftAttributes(ParsedAttributes &attrs, SourceLocation *endLoc) argument
[all...]
H A DParseDecl.cpp123 SourceLocation *endLoc,
162 ParseGNUAttributeArgs(AttrName, AttrNameLoc, attrs, endLoc, nullptr,
191 if (endLoc)
192 *endLoc = Loc;
825 SourceLocation *endLoc,
965 if (endLoc)
966 *endLoc = T.getCloseLocation();
1013 SourceLocation *endLoc,
1069 if (endLoc)
1070 *endLoc
122 ParseGNUAttributes(ParsedAttributes &attrs, SourceLocation *endLoc, LateParsedAttrList *LateAttrs, Declarator *D) argument
822 ParseAvailabilityAttribute(IdentifierInfo &Availability, SourceLocation AvailabilityLoc, ParsedAttributes &attrs, SourceLocation *endLoc, IdentifierInfo *ScopeName, SourceLocation ScopeLoc, AttributeList::Syntax Syntax) argument
1010 ParseObjCBridgeRelatedAttribute(IdentifierInfo &ObjCBridgeRelated, SourceLocation ObjCBridgeRelatedLoc, ParsedAttributes &attrs, SourceLocation *endLoc, IdentifierInfo *ScopeName, SourceLocation ScopeLoc, AttributeList::Syntax Syntax) argument
1167 SourceLocation endLoc; local
[all...]
/external/clang/lib/Sema/
H A DSemaObjCProperty.cpp880 SourceLocation endLoc = local
882 SourceRange ReadonlySourceRange(readonlyLoc, endLoc);
1819 SourceLocation endLoc = local
1821 endLoc = endLoc.getLocWithOffset(-1);
1822 SourceRange PropSourceRange(Property->getAtLoc(), endLoc);
1829 SourceLocation endLoc = Property->getLParenLoc(); local
1830 SourceRange PropSourceRange(Property->getAtLoc(), endLoc);
/external/llvm/lib/MC/MCParser/
H A DCOFFAsmParser.cpp738 SMLoc endLoc; local
740 if (getParser().getTargetParser().ParseRegister(LLVMRegNo,startLoc,endLoc))
/external/llvm/lib/Target/SystemZ/AsmParser/
H A DSystemZAsmParser.cpp127 SystemZOperand(OperandKind kind, SMLoc startLoc, SMLoc endLoc) argument
128 : Kind(kind), StartLoc(startLoc), EndLoc(endLoc) {}
/external/clang/include/clang/AST/
H A DDeclObjC.h226 ObjCMethodDecl(SourceLocation beginLoc, SourceLocation endLoc,
242 NumParams(0), DeclEndLoc(endLoc), Body(), SelfDecl(nullptr),
254 Create(ASTContext &C, SourceLocation beginLoc, SourceLocation endLoc,
H A DStmt.h450 SourceLocation endLoc) : Stmt(DeclStmtClass), DG(dg),
451 StartLoc(startLoc), EndLoc(endLoc) {}
449 DeclStmt(DeclGroupRef dg, SourceLocation startLoc, SourceLocation endLoc) argument
/external/clang/lib/Frontend/Rewrite/
H A DRewriteObjC.cpp1655 SourceLocation endLoc = S->getSynchBody()->getLocStart(); local
1656 const char *endBuf = SM->getCharacterData(endLoc);
1914 SourceLocation endLoc = body->getLocEnd(); local
1917 assert(*SM->getCharacterData(endLoc) == '}' &&
1922 endLoc = endLoc.getLocWithOffset(-1);
1923 InsertText(endLoc, " if (_rethrow) objc_exception_throw(_rethrow);\n");
4670 SourceLocation endLoc = MessExpr->getLocEnd();
4673 const char *endBuf = SM->getCharacterData(endLoc);
H A DRewriteModernObjC.cpp2078 SourceLocation endLoc = S->getLocEnd(); local
2079 const char *endBuf = SM->getCharacterData(endLoc);
5636 SourceLocation endLoc = MessExpr->getLocEnd();
5639 const char *endBuf = SM->getCharacterData(endLoc);
/external/clang/lib/AST/
H A DDeclObjC.cpp642 ASTContext &C, SourceLocation beginLoc, SourceLocation endLoc,
648 beginLoc, endLoc, SelInfo, T, ReturnTInfo, contextDecl, isInstance,
641 Create( ASTContext &C, SourceLocation beginLoc, SourceLocation endLoc, Selector SelInfo, QualType T, TypeSourceInfo *ReturnTInfo, DeclContext *contextDecl, bool isInstance, bool isVariadic, bool isPropertyAccessor, bool isImplicitlyDeclared, bool isDefined, ImplementationControl impControl, bool HasRelatedResultType) argument
/external/clang/tools/c-index-test/
H A Dc-index-test.c3374 CXSourceLocation startLoc, endLoc; local
3446 endLoc = clang_getLocation(TU, file, second_line, second_column);
3447 if (clang_equalLocations(clang_getNullLocation(), endLoc)) {
3454 range = clang_getRange(startLoc, endLoc);

Completed in 533 milliseconds