Searched refs:atLoc (Results 1 - 13 of 13) sorted by relevance

/external/clang/lib/ARCMigrate/
H A DTransProperties.cpp131 SourceLocation atLoc = SourceLocation::getFromRawEncoding(I->first); local
139 rewriteProperty(props, atLoc);
153 SourceLocation atLoc = SourceLocation::getFromRawEncoding(I->first); local
156 doActionForExtensionProp(props, atLoc);
162 PropsTy &props, SourceLocation atLoc,
173 MigrateCtx.rewritePropertyAttribute("retain", toAttr, atLoc);
177 return removeAssignForDefaultStrong(props, atLoc);
179 return rewriteAssign(props, atLoc);
181 return maybeAddWeakOrUnsafeUnretainedAttr(props, atLoc);
185 void doActionForExtensionProp(PropsTy &props, SourceLocation atLoc) { argument
161 doPropAction(PropActionKind kind, PropsTy &props, SourceLocation atLoc, bool markAction = true) argument
194 rewriteProperty(PropsTy &props, SourceLocation atLoc) argument
[all...]
H A DTransforms.h116 bool removePropertyAttribute(StringRef fromAttr, SourceLocation atLoc) { argument
117 return rewritePropertyAttribute(fromAttr, StringRef(), atLoc);
120 SourceLocation atLoc);
121 bool addPropertyAttribute(StringRef attr, SourceLocation atLoc);
H A DTransforms.cpp385 SourceLocation atLoc) {
386 if (atLoc.isMacroID())
392 std::pair<FileID, unsigned> locInfo = SM.getDecomposedLoc(atLoc);
468 SourceLocation atLoc) {
469 if (atLoc.isMacroID())
475 std::pair<FileID, unsigned> locInfo = SM.getDecomposedLoc(atLoc);
383 rewritePropertyAttribute(StringRef fromAttr, StringRef toAttr, SourceLocation atLoc) argument
467 addPropertyAttribute(StringRef attr, SourceLocation atLoc) argument
/external/clang/lib/Parse/
H A DParseObjc.cpp101 Parser::ParseObjCAtClassDeclaration(SourceLocation atLoc) { argument
128 return Actions.ActOnForwardClassDeclaration(atLoc, ClassNames.data(),
1240 void Parser::HelperActionsForIvarDeclarations(Decl *interfaceDecl, SourceLocation atLoc, argument
1252 Actions.ActOnFields(getCurScope(), atLoc, interfaceDecl, local
1279 SourceLocation atLoc) {
1322 HelperActionsForIvarDeclarations(interfaceDecl, atLoc,
1375 HelperActionsForIvarDeclarations(interfaceDecl, atLoc,
1650 Decl *Parser::ParseObjCAtAliasDeclaration(SourceLocation atLoc) { argument
1668 return Actions.ActOnCompatibilityAlias(atLoc, aliasId, aliasLoc,
1683 Decl *Parser::ParseObjCPropertySynthesize(SourceLocation atLoc) { argument
1277 ParseObjCClassInstanceVariables(Decl *interfaceDecl, tok::ObjCKeywordKind visibility, SourceLocation atLoc) argument
1722 Actions.ActOnPropertyImplDecl(getCurScope(), atLoc, propertyLoc, true, local
1739 ParseObjCPropertyDynamic(SourceLocation atLoc) argument
1758 Actions.ActOnPropertyImplDecl(getCurScope(), atLoc, propertyLoc, false, local
1772 ParseObjCThrowStmt(SourceLocation atLoc) argument
1791 ParseObjCSynchronizedStmt(SourceLocation atLoc) argument
1850 ParseObjCTryStmt(SourceLocation atLoc) argument
1954 ParseObjCAutoreleasePoolStmt(SourceLocation atLoc) argument
[all...]
/external/clang/include/clang/Parse/
H A DParser.h1145 DeclGroupPtrTy ParseObjCAtClassDeclaration(SourceLocation atLoc);
1148 void HelperActionsForIvarDeclarations(Decl *interfaceDecl, SourceLocation atLoc,
1154 SourceLocation atLoc);
1163 DeclGroupPtrTy ParseObjCAtProtocolDeclaration(SourceLocation atLoc,
1191 Decl *ParseObjCAtAliasDeclaration(SourceLocation atLoc);
1192 Decl *ParseObjCPropertySynthesize(SourceLocation atLoc);
1193 Decl *ParseObjCPropertyDynamic(SourceLocation atLoc);
1573 StmtResult ParseObjCAtStatement(SourceLocation atLoc);
1574 StmtResult ParseObjCTryStmt(SourceLocation atLoc);
1575 StmtResult ParseObjCThrowStmt(SourceLocation atLoc);
[all...]
/external/clang/include/clang/AST/
H A DStmtObjC.h348 ObjCAutoreleasePoolStmt(SourceLocation atLoc, argument
351 SubStmt(subStmt), AtLoc(atLoc) {}
H A DDeclObjC.h677 ObjCInterfaceDecl(DeclContext *DC, SourceLocation atLoc, IdentifierInfo *Id,
711 SourceLocation atLoc,
2193 ObjCPropertyImplDecl(DeclContext *DC, SourceLocation atLoc, SourceLocation L, argument
2198 : Decl(ObjCPropertyImpl, DC, L), AtLoc(atLoc),
2206 SourceLocation atLoc, SourceLocation L,
/external/clang/lib/AST/
H A DDeclObjC.cpp1053 SourceLocation atLoc,
1058 ObjCInterfaceDecl *Result = new (C) ObjCInterfaceDecl(DC, atLoc, Id, ClassLoc,
1076 ObjCInterfaceDecl(DeclContext *DC, SourceLocation atLoc, IdentifierInfo *Id, argument
1079 : ObjCContainerDecl(ObjCInterface, DC, Id, CLoc, atLoc),
1778 SourceLocation atLoc,
1784 return new (C) ObjCPropertyImplDecl(DC, atLoc, L, property, PK, ivar,
1051 Create(const ASTContext &C, DeclContext *DC, SourceLocation atLoc, IdentifierInfo *Id, ObjCInterfaceDecl *PrevDecl, SourceLocation ClassLoc, bool isInternal) argument
1776 Create(ASTContext &C, DeclContext *DC, SourceLocation atLoc, SourceLocation L, ObjCPropertyDecl *property, Kind PK, ObjCIvarDecl *ivar, SourceLocation ivarLoc) argument
/external/clang/lib/Rewrite/Frontend/
H A DRewriteObjC.cpp3244 SourceLocation atLoc = LocStart.getLocWithOffset(cursor-startBuf); local
3255 InsertText(atLoc, "// ");
3261 SourceLocation atLoc = LocStart.getLocWithOffset(cursor-startBuf); local
3262 InsertText(atLoc, "/* ");
3265 atLoc = LocStart.getLocWithOffset(cursor-startBuf);
3266 InsertText(atLoc, " */");
/external/clang/lib/Sema/
H A DSemaStmt.cpp2925 Sema::ActOnObjCAtSynchronizedOperand(SourceLocation atLoc, Expr *operand) { argument
2937 return Diag(atLoc, diag::error_objc_synchronized_expects_object)
H A DTreeTransform.h1314 ExprResult RebuildObjCAtSynchronizedOperand(SourceLocation atLoc, argument
1316 return getSema().ActOnObjCAtSynchronizedOperand(atLoc, object);
/external/clang/include/clang/Sema/
H A DSema.h2940 ExprResult ActOnObjCAtSynchronizedOperand(SourceLocation atLoc,
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.pde.core_3.6.1.v20100902_r361.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 299 milliseconds