/external/clang/include/clang/Parse/ |
H A D | Parser.h | 1315 SourceLocation &endLoc); 2098 SourceLocation endLoc; local 2099 ParseGNUAttributes(attrs, &endLoc, LateAttrs, &D); 2100 D.takeAttributes(attrs, endLoc); 2104 SourceLocation *endLoc = nullptr, 2107 ParseGNUAttributes(attrs, endLoc, LateAttrs); 2110 SourceLocation *endLoc = nullptr, 2126 SourceLocation endLoc; local 2127 ParseCXX11Attributes(attrs, &endLoc); 2128 D.takeAttributes(attrs, endLoc); [all...] |
/external/llvm/lib/ProfileData/ |
H A D | CoverageMapping.cpp | 326 ActiveRegions.back()->endLoc() <= Region.startLoc()) 329 PrevRegion->endLoc() == Region.endLoc()) { 399 return RHS.endLoc() < LHS.endLoc();
|
/external/llvm/include/llvm/ProfileData/ |
H A D | CoverageMapping.h | 202 inline std::pair<unsigned, unsigned> endLoc() const { function in struct:llvm::coverage::CounterMappingRegion 217 if (endLoc() < Other.endLoc())
|
/external/clang/tools/libclang/ |
H A D | CXLoadedDiagnostic.cpp | 306 CXSourceLocation endLoc = makeLocation(End); 307 SR = clang_getRange(startLoc, endLoc);
|
/external/llvm/unittests/ProfileData/ |
H A D | CoverageMappingTest.cpp | 172 ASSERT_EQ(InputCMRs[I].endLoc(), OutputCMRs[I].endLoc());
|
/external/clang/lib/ARCMigrate/ |
H A D | TransformActions.cpp | 69 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 D | ParseDeclCXX.cpp | 3729 SourceLocation *endLoc) { 3732 ParseAlignmentSpecifier(attrs, endLoc); 3782 AttrParsed = ParseCXX11AttributeArgs(AttrName, AttrLoc, attrs, endLoc, 3798 if (endLoc) 3799 *endLoc = Tok.getLocation(); 3809 SourceLocation *endLoc) { 3813 if (!endLoc) 3814 endLoc = &Loc; 3817 ParseCXX11AttributeSpecifier(attrs, endLoc); 3820 attrs.Range = SourceRange(StartLoc, *endLoc); 3728 ParseCXX11AttributeSpecifier(ParsedAttributes &attrs, SourceLocation *endLoc) argument 3808 ParseCXX11Attributes(ParsedAttributesWithRange &attrs, SourceLocation *endLoc) argument 3868 ParseMicrosoftAttributes(ParsedAttributes &attrs, SourceLocation *endLoc) argument [all...] |
H A D | ParseDecl.cpp | 124 SourceLocation *endLoc, 163 ParseGNUAttributeArgs(AttrName, AttrNameLoc, attrs, endLoc, nullptr, 192 if (endLoc) 193 *endLoc = Loc; 855 SourceLocation *endLoc, 995 if (endLoc) 996 *endLoc = T.getCloseLocation(); 1043 SourceLocation *endLoc, 1099 if (endLoc) 1100 *endLoc 123 ParseGNUAttributes(ParsedAttributes &attrs, SourceLocation *endLoc, LateParsedAttrList *LateAttrs, Declarator *D) argument 852 ParseAvailabilityAttribute(IdentifierInfo &Availability, SourceLocation AvailabilityLoc, ParsedAttributes &attrs, SourceLocation *endLoc, IdentifierInfo *ScopeName, SourceLocation ScopeLoc, AttributeList::Syntax Syntax) argument 1040 ParseObjCBridgeRelatedAttribute(IdentifierInfo &ObjCBridgeRelated, SourceLocation ObjCBridgeRelatedLoc, ParsedAttributes &attrs, SourceLocation *endLoc, IdentifierInfo *ScopeName, SourceLocation ScopeLoc, AttributeList::Syntax Syntax) argument 1195 SourceLocation endLoc; local [all...] |
H A D | ParseObjc.cpp | 1824 SourceLocation &endLoc) { 1842 endLoc = PrevTokLocation; 1844 endLoc = Tok.getLocation(); 1820 parseObjCTypeArgsAndProtocolQualifiers( SourceLocation loc, ParsedType type, bool consumeLastToken, SourceLocation &endLoc) argument
|
/external/llvm/lib/MC/MCParser/ |
H A D | COFFAsmParser.cpp | 754 SMLoc endLoc; local 756 if (getParser().getTargetParser().ParseRegister(LLVMRegNo,startLoc,endLoc))
|
/external/llvm/lib/Target/SystemZ/AsmParser/ |
H A D | SystemZAsmParser.cpp | 131 SystemZOperand(OperandKind kind, SMLoc startLoc, SMLoc endLoc) argument 132 : Kind(kind), StartLoc(startLoc), EndLoc(endLoc) {}
|
/external/clang/lib/Frontend/Rewrite/ |
H A D | RewriteObjC.cpp | 1655 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"); 4655 SourceLocation endLoc = MessExpr->getLocEnd(); 4658 const char *endBuf = SM->getCharacterData(endLoc);
|
H A D | RewriteModernObjC.cpp | 2078 SourceLocation endLoc = S->getLocEnd(); local 2079 const char *endBuf = SM->getCharacterData(endLoc); 5613 SourceLocation endLoc = MessExpr->getLocEnd(); 5616 const char *endBuf = SM->getCharacterData(endLoc);
|
/external/clang/include/clang/AST/ |
H A D | DeclObjC.h | 226 ObjCMethodDecl(SourceLocation beginLoc, SourceLocation endLoc, 242 NumParams(0), DeclEndLoc(endLoc), Body(), SelfDecl(nullptr), 254 Create(ASTContext &C, SourceLocation beginLoc, SourceLocation endLoc,
|
H A D | Stmt.h | 437 SourceLocation endLoc) : Stmt(DeclStmtClass), DG(dg), 438 StartLoc(startLoc), EndLoc(endLoc) {} 436 DeclStmt(DeclGroupRef dg, SourceLocation startLoc, SourceLocation endLoc) argument
|
/external/clang/lib/AST/ |
H A D | DeclObjC.cpp | 723 ASTContext &C, SourceLocation beginLoc, SourceLocation endLoc, 729 beginLoc, endLoc, SelInfo, T, ReturnTInfo, contextDecl, isInstance, 722 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 D | c-index-test.c | 3436 CXSourceLocation startLoc, endLoc; local 3508 endLoc = clang_getLocation(TU, file, second_line, second_column); 3509 if (clang_equalLocations(clang_getNullLocation(), endLoc)) { 3516 range = clang_getRange(startLoc, endLoc);
|
/external/clang/lib/Sema/ |
H A D | SemaObjCProperty.cpp | 966 SourceLocation endLoc = local 968 SourceRange ReadonlySourceRange(readonlyLoc, endLoc);
|