HomeSort by relevance Sort by last modified time
    Searched refs:MigrateCtx (Results 1 - 5 of 5) sorted by null

  /external/clang/lib/ARCMigrate/
TransGCCalls.cpp 22 MigrationContext &MigrateCtx;
29 : MigrateCtx(ctx), PMap(map) {
30 IdentifierTable &Ids = MigrateCtx.Pass.Ctx.Idents;
38 TransformActions &TA = MigrateCtx.Pass.TA;
40 if (MigrateCtx.isGCOwnedNonObjC(E->getType())) {
41 if (MigrateCtx.Pass.noNSAllocReallocError())
TransGCAttrs.cpp 27 MigrationContext &MigrateCtx;
35 : MigrateCtx(ctx), FullyMigratable(false),
89 if (MigrateCtx.AttrSet.count(RawLoc))
92 ASTContext &Ctx = MigrateCtx.Pass.Ctx;
111 MigrateCtx.AttrSet.insert(RawLoc);
112 MigrateCtx.GCAttrs.push_back(MigrationContext::GCAttrOccurrence());
113 MigrationContext::GCAttrOccurrence &Attr = MigrateCtx.GCAttrs.back();
179 SourceManager &SM = MigrateCtx.Pass.Ctx.getSourceManager();
186 static void errorForGCAttrsOnNonObjC(MigrationContext &MigrateCtx) {
187 TransformActions &TA = MigrateCtx.Pass.TA
    [all...]
Transforms.h 46 MigrationContext &MigrateCtx;
51 BodyContext(MigrationContext &MigrateCtx, Stmt *S)
52 : MigrateCtx(MigrateCtx), PMap(S), TopStmt(S) {}
54 MigrationContext &getMigrationContext() { return MigrateCtx; }
60 MigrationContext &MigrateCtx;
64 ObjCImplementationContext(MigrationContext &MigrateCtx,
66 : MigrateCtx(MigrateCtx), ImpD(D) {}
68 MigrationContext &getMigrationContext() { return MigrateCtx; }
    [all...]
Transforms.cpp 262 MigrationContext &MigrateCtx;
266 ASTTransform(MigrationContext &MigrateCtx) : MigrateCtx(MigrateCtx) { }
271 ObjCImplementationContext ImplCtx(MigrateCtx, D);
273 I = MigrateCtx.traversers_begin(),
274 E = MigrateCtx.traversers_end(); I != E; ++I)
284 BodyContext BodyCtx(MigrateCtx, rootS);
286 I = MigrateCtx.traversers_begin(),
287 E = MigrateCtx.traversers_end(); I != E; ++I
    [all...]
TransProperties.cpp 47 MigrationContext &MigrateCtx;
73 explicit PropertiesRewriter(MigrationContext &MigrateCtx)
74 : MigrateCtx(MigrateCtx), Pass(MigrateCtx.Pass) { }
171 MigrateCtx.rewritePropertyAttribute("retain", toAttr, atLoc);
289 return MigrateCtx.removePropertyAttribute(fromAttr, atLoc);
294 return MigrateCtx.rewritePropertyAttribute(fromAttr, toAttr, atLoc);
298 return MigrateCtx.addPropertyAttribute(attr, atLoc);
371 return MigrateCtx.AtPropsWeak.count(atLoc.getRawEncoding())
    [all...]

Completed in 32 milliseconds