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 23 MigrationContext &MigrateCtx;
29 : MigrateCtx(ctx) {
30 IdentifierTable &Ids = MigrateCtx.Pass.Ctx.Idents;
38 TransformActions &TA = MigrateCtx.Pass.TA;
40 if (MigrateCtx.isGCOwnedNonObjC(E->getType())) {
TransGCAttrs.cpp 28 MigrationContext &MigrateCtx;
36 : 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();
177 SourceManager &SM = MigrateCtx.Pass.Ctx.getSourceManager();
184 static void errorForGCAttrsOnNonObjC(MigrationContext &MigrateCtx) {
185 TransformActions &TA = MigrateCtx.Pass.TA
    [all...]
Transforms.h 47 MigrationContext &MigrateCtx;
52 BodyContext(MigrationContext &MigrateCtx, Stmt *S)
53 : MigrateCtx(MigrateCtx), PMap(S), TopStmt(S) {}
55 MigrationContext &getMigrationContext() { return MigrateCtx; }
61 MigrationContext &MigrateCtx;
65 ObjCImplementationContext(MigrationContext &MigrateCtx,
67 : MigrateCtx(MigrateCtx), ImpD(D) {}
69 MigrationContext &getMigrationContext() { return MigrateCtx; }
    [all...]
Transforms.cpp 328 MigrationContext &MigrateCtx;
332 ASTTransform(MigrationContext &MigrateCtx) : MigrateCtx(MigrateCtx) { }
337 ObjCImplementationContext ImplCtx(MigrateCtx, D);
339 I = MigrateCtx.traversers_begin(),
340 E = MigrateCtx.traversers_end(); I != E; ++I)
350 BodyContext BodyCtx(MigrateCtx, rootS);
352 I = MigrateCtx.traversers_begin(),
353 E = MigrateCtx.traversers_end(); I != E; ++I
    [all...]
TransProperties.cpp 47 MigrationContext &MigrateCtx;
74 explicit PropertiesRewriter(MigrationContext &MigrateCtx)
75 : MigrateCtx(MigrateCtx), Pass(MigrateCtx.Pass) { }
168 MigrateCtx.rewritePropertyAttribute("retain", toAttr, atLoc);
292 return MigrateCtx.removePropertyAttribute(fromAttr, atLoc);
297 return MigrateCtx.rewritePropertyAttribute(fromAttr, toAttr, atLoc);
301 return MigrateCtx.addPropertyAttribute(attr, atLoc);
357 return MigrateCtx.AtPropsWeak.count(atLoc.getRawEncoding())
    [all...]

Completed in 385 milliseconds