OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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())) {
41
if (
MigrateCtx
.Pass.noNSAllocReallocError())
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();
179
SourceManager &SM =
MigrateCtx
.Pass.Ctx.getSourceManager();
186
static void errorForGCAttrsOnNonObjC(MigrationContext &
MigrateCtx
) {
187
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
323
MigrationContext &
MigrateCtx
;
327
ASTTransform(MigrationContext &
MigrateCtx
) :
MigrateCtx
(
MigrateCtx
) { }
332
ObjCImplementationContext ImplCtx(
MigrateCtx
, D);
334
I =
MigrateCtx
.traversers_begin(),
335
E =
MigrateCtx
.traversers_end(); I != E; ++I)
345
BodyContext BodyCtx(
MigrateCtx
, rootS);
347
I =
MigrateCtx
.traversers_begin(),
348
E =
MigrateCtx
.traversers_end(); I != E; ++I
[
all
...]
TransProperties.cpp
47
MigrationContext &
MigrateCtx
;
73
explicit PropertiesRewriter(MigrationContext &
MigrateCtx
)
74
:
MigrateCtx
(
MigrateCtx
), Pass(
MigrateCtx
.Pass) { }
173
MigrateCtx
.rewritePropertyAttribute("retain", toAttr, atLoc);
297
return
MigrateCtx
.removePropertyAttribute(fromAttr, atLoc);
302
return
MigrateCtx
.rewritePropertyAttribute(fromAttr, toAttr, atLoc);
306
return
MigrateCtx
.addPropertyAttribute(attr, atLoc);
370
return
MigrateCtx
.AtPropsWeak.count(atLoc.getRawEncoding())
[
all
...]
Completed in 810 milliseconds