Home
last modified time | relevance | path

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

/external/srec/tools/grxmlcompile/
Dsub_grph.cpp172 int ii, finalId, endLoc, blockCount; in CloseScope() local
183 endLoc= numArc; in CloseScope()
188 CopyFastArcs (this, arcLoc, endLoc, ii * blockCount, -1, -1, -1, -1); in CloseScope()
191 CopyFastArcs (this, arcLoc, endLoc, ii * blockCount, -1, -1, -1, -1); in CloseScope()
197 UpdateVertexCount (endLoc); in CloseScope()
201 endLoc= numArc; in CloseScope()
205 CopyFastArcs (this, arcLoc, endLoc, ii * blockCount, -1, -1, -1, -1); in CloseScope()
209 CopyFastArcs (this, arcLoc, endLoc, blockCount, startId, finalId, lastId, finalId); in CloseScope()
216 CopyFastArcs (this, arcLoc, endLoc, blockCount, startId, lastId, lastId, lastId); in CloseScope()
217 UpdateVertexCount (endLoc); in CloseScope()
[all …]
Dsub_base.cpp122 void SubGraph::CopyFastArcs (SubGraph *subG, int startLoc, int endLoc, int offset, int headId, int … in CopyFastArcs() argument
126 for (int ii= startLoc; ii < endLoc; ii++) { in CopyFastArcs()
Dsub_grph.h153 …void CopyFastArcs (SubGraph *subG, int startLoc, int endLoc, int offset, int headId, int newHeadId…
/external/clang/include/clang/Parse/
DParser.h1883 SourceLocation endLoc; variable
1884 ParseGNUAttributes(attrs, &endLoc, LateAttrs);
1885 D.takeAttributes(attrs, endLoc);
1889 SourceLocation *endLoc = 0,
1892 ParseGNUAttributes(attrs, endLoc, LateAttrs);
1895 SourceLocation *endLoc = 0,
1908 SourceLocation endLoc; in MaybeParseCXX11Attributes() local
1909 ParseCXX11Attributes(attrs, &endLoc); in MaybeParseCXX11Attributes()
1910 D.takeAttributes(attrs, endLoc); in MaybeParseCXX11Attributes()
1914 SourceLocation *endLoc = 0) {
[all …]
/external/clang/lib/Parse/
DParseDeclCXX.cpp3168 SourceLocation *endLoc) { in ParseCXX11AttributeSpecifier() argument
3171 ParseAlignmentSpecifier(attrs, endLoc); in ParseCXX11AttributeSpecifier()
3226 ParseGNUAttributeArgs(AttrName, AttrLoc, attrs, endLoc, in ParseCXX11AttributeSpecifier()
3257 if (endLoc) in ParseCXX11AttributeSpecifier()
3258 *endLoc = Tok.getLocation(); in ParseCXX11AttributeSpecifier()
3268 SourceLocation *endLoc) { in ParseCXX11Attributes() argument
3272 if (!endLoc) in ParseCXX11Attributes()
3273 endLoc = &Loc; in ParseCXX11Attributes()
3276 ParseCXX11AttributeSpecifier(attrs, endLoc); in ParseCXX11Attributes()
3279 attrs.Range = SourceRange(StartLoc, *endLoc); in ParseCXX11Attributes()
[all …]
DParseDecl.cpp116 SourceLocation *endLoc, in ParseGNUAttributes() argument
163 ParseGNUAttributeArgs(AttrName, AttrNameLoc, attrs, endLoc, in ParseGNUAttributes()
177 if (endLoc) in ParseGNUAttributes()
178 *endLoc = Loc; in ParseGNUAttributes()
813 SourceLocation *endLoc) { in ParseAvailabilityAttribute() argument
938 if (endLoc) in ParseAvailabilityAttribute()
939 *endLoc = T.getCloseLocation(); in ParseAvailabilityAttribute()
1059 SourceLocation endLoc; in ParseLexedAttribute() local
1083 ParseGNUAttributeArgs(&LA.AttrName, LA.AttrNameLoc, Attrs, &endLoc, in ParseLexedAttribute()
1096 ParseGNUAttributeArgs(&LA.AttrName, LA.AttrNameLoc, Attrs, &endLoc, in ParseLexedAttribute()
/external/clang/lib/ARCMigrate/
DTransformActions.cpp69 SourceLocation beginLoc = range.getBegin(), endLoc = range.getEnd(); in CharRange() local
70 assert(beginLoc.isValid() && endLoc.isValid()); in CharRange()
73 End = FullSourceLoc(getLocForEndOfToken(endLoc, srcMgr, PP), srcMgr); in CharRange()
76 End = FullSourceLoc(srcMgr.getExpansionLoc(endLoc), srcMgr); in CharRange()
/external/clang/lib/Sema/
DSemaObjCProperty.cpp934 SourceLocation endLoc = in ActOnPropertyImplDecl() local
936 SourceRange ReadonlySourceRange(readonlyLoc, endLoc); in ActOnPropertyImplDecl()
1809 SourceLocation endLoc = in AtomicPropertySetterGetterRules() local
1811 endLoc = endLoc.getLocWithOffset(-1); in AtomicPropertySetterGetterRules()
1812 SourceRange PropSourceRange(Property->getAtLoc(), endLoc); in AtomicPropertySetterGetterRules()
1819 SourceLocation endLoc = Property->getLParenLoc(); in AtomicPropertySetterGetterRules() local
1820 SourceRange PropSourceRange(Property->getAtLoc(), endLoc); in AtomicPropertySetterGetterRules()
/external/clang/tools/libclang/
DCXLoadedDiagnostic.cpp522 CXSourceLocation endLoc = makeLocation(End); in readRange() local
523 SR = clang_getRange(startLoc, endLoc); in readRange()
/external/llvm/lib/MC/MCParser/
DCOFFAsmParser.cpp689 SMLoc endLoc; in ParseSEHRegisterNumber() local
691 if (getParser().getTargetParser().ParseRegister(LLVMRegNo,startLoc,endLoc)) in ParseSEHRegisterNumber()
/external/llvm/lib/Target/SystemZ/AsmParser/
DSystemZAsmParser.cpp106 SystemZOperand(OperandKind kind, SMLoc startLoc, SMLoc endLoc) in SystemZOperand() argument
107 : Kind(kind), StartLoc(startLoc), EndLoc(endLoc) in SystemZOperand()
/external/clang/include/clang/AST/
DDeclObjC.h226 ObjCMethodDecl(SourceLocation beginLoc, SourceLocation endLoc,
247 DeclEndLoc(endLoc), Body(), SelfDecl(0), CmdDecl(0) { in NamedDecl()
259 SourceLocation endLoc,
DStmt.h447 SourceLocation endLoc) : Stmt(DeclStmtClass), DG(dg), in DeclStmt() argument
448 StartLoc(startLoc), EndLoc(endLoc) {} in DeclStmt()
/external/clang/lib/Rewrite/Frontend/
DRewriteObjC.cpp1686 SourceLocation endLoc = S->getSynchBody()->getLocStart(); in RewriteObjCSynchronizedStmt() local
1687 const char *endBuf = SM->getCharacterData(endLoc); in RewriteObjCSynchronizedStmt()
1944 SourceLocation endLoc = body->getLocEnd(); in RewriteObjCTryStmt() local
1947 assert(*SM->getCharacterData(endLoc) == '}' && in RewriteObjCTryStmt()
1952 endLoc = endLoc.getLocWithOffset(-1); in RewriteObjCTryStmt()
1953 InsertText(endLoc, " if (_rethrow) objc_exception_throw(_rethrow);\n"); in RewriteObjCTryStmt()
4740 SourceLocation endLoc = MessExpr->getLocEnd(); in RewriteFunctionBodyOrGlobalInitializer()
4743 const char *endBuf = SM->getCharacterData(endLoc); in RewriteFunctionBodyOrGlobalInitializer()
DRewriteModernObjC.cpp2094 SourceLocation endLoc = S->getLocEnd(); in RewriteObjCThrowStmt() local
2095 const char *endBuf = SM->getCharacterData(endLoc); in RewriteObjCThrowStmt()
5735 SourceLocation endLoc = MessExpr->getLocEnd(); in RewriteFunctionBodyOrGlobalInitializer()
5738 const char *endBuf = SM->getCharacterData(endLoc); in RewriteFunctionBodyOrGlobalInitializer()
/external/clang/tools/c-index-test/
Dc-index-test.c3113 CXSourceLocation startLoc, endLoc; in perform_token_annotation() local
3180 endLoc = clang_getLocation(TU, file, second_line, second_column); in perform_token_annotation()
3181 if (clang_equalLocations(clang_getNullLocation(), endLoc)) { in perform_token_annotation()
3188 range = clang_getRange(startLoc, endLoc); in perform_token_annotation()
/external/clang/lib/AST/
DDeclObjC.cpp555 SourceLocation endLoc, in Create() argument
566 return new (C) ObjCMethodDecl(beginLoc, endLoc, in Create()