HomeSort by: relevance | last modified time | path
    Searched defs:MigrateCtx (Results 1 - 5 of 5) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/ARCMigrate/
TransGCCalls.cpp 22 MigrationContext &MigrateCtx;
28 : MigrateCtx(ctx) {
29 IdentifierTable &Ids = MigrateCtx.Pass.Ctx.Idents;
37 TransformActions &TA = MigrateCtx.Pass.TA;
39 if (MigrateCtx.isGCOwnedNonObjC(E->getType())) {
TransGCAttrs.cpp 27 MigrationContext &MigrateCtx;
35 : MigrateCtx(ctx), FullyMigratable(false),
92 if (MigrateCtx.AttrSet.count(OrigLoc))
95 ASTContext &Ctx = MigrateCtx.Pass.Ctx;
108 MigrateCtx.AttrSet.insert(OrigLoc);
109 MigrateCtx.GCAttrs.push_back(MigrationContext::GCAttrOccurrence());
110 MigrationContext::GCAttrOccurrence &Attr = MigrateCtx.GCAttrs.back();
172 SourceManager &SM = MigrateCtx.Pass.Ctx.getSourceManager();
179 static void errorForGCAttrsOnNonObjC(MigrationContext &MigrateCtx) {
180 TransformActions &TA = MigrateCtx.Pass.TA
    [all...]
TransProperties.cpp 46 MigrationContext &MigrateCtx;
73 explicit PropertiesRewriter(MigrationContext &MigrateCtx)
74 : MigrateCtx(MigrateCtx), Pass(MigrateCtx.Pass) { }
157 MigrateCtx.rewritePropertyAttribute("retain", toAttr, atLoc);
272 return MigrateCtx.removePropertyAttribute(fromAttr, atLoc);
277 return MigrateCtx.rewritePropertyAttribute(fromAttr, toAttr, atLoc);
281 return MigrateCtx.addPropertyAttribute(attr, atLoc);
340 return MigrateCtx.AtPropsWeak.count(atLoc)
    [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 320 MigrationContext &MigrateCtx;
324 ASTTransform(MigrationContext &MigrateCtx) : MigrateCtx(MigrateCtx) { }
329 ObjCImplementationContext ImplCtx(MigrateCtx, D);
331 I = MigrateCtx.traversers_begin(),
332 E = MigrateCtx.traversers_end(); I != E; ++I)
342 BodyContext BodyCtx(MigrateCtx, rootS);
344 I = MigrateCtx.traversers_begin(),
345 E = MigrateCtx.traversers_end(); I != E; ++I
    [all...]

Completed in 24 milliseconds