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

/external/srec/tools/grxmlcompile/
H A Dsub_grph.cpp172 int ii, finalId, endLoc, blockCount; local
183 endLoc= numArc;
188 CopyFastArcs (this, arcLoc, endLoc, ii * blockCount, -1, -1, -1, -1);
191 CopyFastArcs (this, arcLoc, endLoc, ii * blockCount, -1, -1, -1, -1);
197 UpdateVertexCount (endLoc);
201 endLoc= numArc;
205 CopyFastArcs (this, arcLoc, endLoc, ii * blockCount, -1, -1, -1, -1);
209 CopyFastArcs (this, arcLoc, endLoc, blockCount, startId, finalId, lastId, finalId);
216 CopyFastArcs (this, arcLoc, endLoc, blockCount, startId, lastId, lastId, lastId);
217 UpdateVertexCount (endLoc);
[all...]
H A Dsub_base.cpp122 void SubGraph::CopyFastArcs (SubGraph *subG, int startLoc, int endLoc, int offset, int headId, int newHeadId, int tailId, int newTailId) argument
126 for (int ii= startLoc; ii < endLoc; ii++) {
H A Dsub_grph.h153 void CopyFastArcs (SubGraph *subG, int startLoc, int endLoc, int offset, int headId, int newHeadId, int tailId, int newTailId);
/external/clang/include/clang/Parse/
H A DParser.h1804 SourceLocation endLoc; local
1805 ParseGNUAttributes(attrs, &endLoc, LateAttrs);
1806 D.takeAttributes(attrs, endLoc);
1810 SourceLocation *endLoc = 0,
1813 ParseGNUAttributes(attrs, endLoc, LateAttrs);
1816 SourceLocation *endLoc = 0,
1826 SourceLocation endLoc; local
1827 ParseCXX11Attributes(attrs, &endLoc);
1828 D.takeAttributes(attrs, endLoc);
1832 SourceLocation *endLoc
[all...]
/external/clang/lib/Parse/
H A DParseDeclCXX.cpp2890 SourceLocation *endLoc) {
2893 ParseAlignmentSpecifier(attrs, endLoc);
2980 if (endLoc)
2981 *endLoc = Tok.getLocation();
2991 SourceLocation *endLoc) {
2993 if (!endLoc)
2994 endLoc = &Loc;
2997 ParseCXX11AttributeSpecifier(attrs, endLoc);
3000 attrs.Range = SourceRange(StartLoc, *endLoc);
3012 SourceLocation *endLoc) {
2889 ParseCXX11AttributeSpecifier(ParsedAttributes &attrs, SourceLocation *endLoc) argument
2990 ParseCXX11Attributes(ParsedAttributesWithRange &attrs, SourceLocation *endLoc) argument
3011 ParseMicrosoftAttributes(ParsedAttributes &attrs, SourceLocation *endLoc) argument
[all...]
H A DParseDecl.cpp110 SourceLocation *endLoc,
157 ParseGNUAttributeArgs(AttrName, AttrNameLoc, attrs, endLoc);
170 if (endLoc)
171 *endLoc = Loc;
660 SourceLocation *endLoc) {
784 if (endLoc)
785 *endLoc = T.getCloseLocation();
901 SourceLocation endLoc; local
926 ParseGNUAttributeArgs(&LA.AttrName, LA.AttrNameLoc, Attrs, &endLoc);
938 ParseGNUAttributeArgs(&LA.AttrName, LA.AttrNameLoc, Attrs, &endLoc);
109 ParseGNUAttributes(ParsedAttributes &attrs, SourceLocation *endLoc, LateParsedAttrList *LateAttrs) argument
657 ParseAvailabilityAttribute(IdentifierInfo &Availability, SourceLocation AvailabilityLoc, ParsedAttributes &attrs, SourceLocation *endLoc) argument
2049 ParseAlignmentSpecifier(ParsedAttributes &Attrs, SourceLocation *endLoc) argument
[all...]
/external/llvm/lib/MC/MCParser/
H A DCOFFAsmParser.cpp456 SMLoc endLoc; local
458 if (getParser().getTargetParser().ParseRegister(LLVMRegNo,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/tools/libclang/
H A DCXLoadedDiagnostic.cpp536 CXSourceLocation endLoc = makeLocation(End); local
537 SR = clang_getRange(startLoc, endLoc);
/external/clang/lib/Sema/
H A DSemaObjCProperty.cpp773 SourceLocation endLoc = local
775 SourceRange ReadonlySourceRange(readonlyLoc, endLoc);
1767 SourceLocation endLoc = local
1769 endLoc = endLoc.getLocWithOffset(-1);
1770 SourceRange PropSourceRange(Property->getAtLoc(), endLoc);
1777 SourceLocation endLoc = Property->getLParenLoc(); local
1778 SourceRange PropSourceRange(Property->getAtLoc(), endLoc);
/external/clang/include/clang/AST/
H A DDeclObjC.h224 ObjCMethodDecl(SourceLocation beginLoc, SourceLocation endLoc,
245 DeclEndLoc(endLoc), Body(0), SelfDecl(0), CmdDecl(0) {
257 SourceLocation endLoc,
H A DStmt.h452 SourceLocation endLoc) : Stmt(DeclStmtClass), DG(dg),
453 StartLoc(startLoc), EndLoc(endLoc) {}
451 DeclStmt(DeclGroupRef dg, SourceLocation startLoc, SourceLocation endLoc) argument
/external/clang/tools/c-index-test/
H A Dc-index-test.c2613 CXSourceLocation startLoc, endLoc; local
2680 endLoc = clang_getLocation(TU, file, second_line, second_column);
2681 if (clang_equalLocations(clang_getNullLocation(), endLoc)) {
2688 range = clang_getRange(startLoc, endLoc);
/external/clang/lib/AST/
H A DDeclObjC.cpp411 SourceLocation endLoc,
422 return new (C) ObjCMethodDecl(beginLoc, endLoc,
409 Create(ASTContext &C, SourceLocation beginLoc, SourceLocation endLoc, Selector SelInfo, QualType T, TypeSourceInfo *ResultTInfo, DeclContext *contextDecl, bool isInstance, bool isVariadic, bool isSynthesized, bool isImplicitlyDeclared, bool isDefined, ImplementationControl impControl, bool HasRelatedResultType) argument
/external/clang/lib/Rewrite/Frontend/
H A DRewriteObjC.cpp1686 SourceLocation endLoc = S->getSynchBody()->getLocStart(); local
1687 const char *endBuf = SM->getCharacterData(endLoc);
1944 SourceLocation endLoc = body->getLocEnd(); local
1947 assert(*SM->getCharacterData(endLoc) == '}' &&
1952 endLoc = endLoc.getLocWithOffset(-1);
1953 InsertText(endLoc, " if (_rethrow) objc_exception_throw(_rethrow);\n");
4754 SourceLocation endLoc = MessExpr->getLocEnd();
4757 const char *endBuf = SM->getCharacterData(endLoc);
H A DRewriteModernObjC.cpp5475 SourceLocation endLoc = MessExpr->getLocEnd();
5478 const char *endBuf = SM->getCharacterData(endLoc);

Completed in 344 milliseconds