OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:atLoc
(Results
1 - 7
of
7
) sorted by null
/external/clang/lib/ARCMigrate/
TransProperties.cpp
110
SourceLocation
atLoc
= SourceLocation::getFromRawEncoding(I->first);
119
rewriteProperty(props,
atLoc
);
124
void rewriteProperty(PropsTy &props, SourceLocation
atLoc
) const {
134
rewriteAttribute("retain", "strong",
atLoc
);
139
return rewriteAssign(props,
atLoc
);
141
return maybeAddWeakOrUnsafeUnretainedAttr(props,
atLoc
);
144
void rewriteAssign(PropsTy &props, SourceLocation
atLoc
) const {
149
atLoc
);
164
SourceLocation
atLoc
) const {
172
atLoc
);
[
all
...]
/external/clang/lib/Parse/
ParseObjc.cpp
33
SourceLocation
AtLoc
= ConsumeToken(); // the "@"
42
return ParseObjCAtClassDeclaration(
AtLoc
);
45
return ParseObjCAtInterfaceDeclaration(
AtLoc
, attrs);
49
return ParseObjCAtProtocolDeclaration(
AtLoc
, attrs);
52
return ParseObjCAtImplementationDeclaration(
AtLoc
);
54
return ParseObjCAtEndDeclaration(
AtLoc
);
56
return ParseObjCAtAliasDeclaration(
AtLoc
);
58
return ParseObjCPropertySynthesize(
AtLoc
);
60
return ParseObjCPropertyDynamic(
AtLoc
);
62
Diag(
AtLoc
, diag::err_unexpected_at)
[
all
...]
/external/clang/include/clang/Parse/
Parser.h
[
all
...]
/external/clang/include/clang/AST/
StmtObjC.h
349
SourceLocation
AtLoc
;
351
ObjCAutoreleasePoolStmt(SourceLocation
atLoc
,
354
SubStmt(subStmt),
AtLoc
(
atLoc
) {}
364
return SourceRange(
AtLoc
, SubStmt->getLocEnd());
367
SourceLocation getAtLoc() const { return
AtLoc
; }
368
void setAtLoc(SourceLocation Loc) {
AtLoc
= Loc; }
DeclObjC.h
492
ObjCInterfaceDecl(DeclContext *DC, SourceLocation
atLoc
, IdentifierInfo *Id,
498
SourceLocation
atLoc
,
[
all
...]
/external/clang/lib/AST/
DeclObjC.cpp
558
SourceLocation
atLoc
,
562
return new (C) ObjCInterfaceDecl(DC,
atLoc
, Id, ClassLoc, ForwardDecl,
567
ObjCInterfaceDecl(DeclContext *DC, SourceLocation
atLoc
, IdentifierInfo *Id,
569
: ObjCContainerDecl(ObjCInterface, DC,
atLoc
, Id),
[
all
...]
/external/clang/lib/Rewrite/
RewriteObjC.cpp
[
all
...]
Completed in 154 milliseconds