HomeSort by relevance Sort by last modified time
    Searched defs:AtLoc (Results 1 - 8 of 8) sorted by null

  /external/clang/lib/ARCMigrate/
TransGCAttrs.cpp 227 SourceLocation AtLoc,
273 MigrateCtx.AtPropsWeak.insert(AtLoc.getRawEncoding());
285 MigrateCtx.rewritePropertyAttribute("assign", toAttr, AtLoc);
287 MigrateCtx.addPropertyAttribute(toAttr, AtLoc);
296 TA.clearDiagnostic(diag::err_objc_property_attr_mutually_exclusive, AtLoc);
313 SourceLocation AtLoc = PD->getAtLoc();
314 if (AtLoc.isInvalid())
316 unsigned RawAt = AtLoc.getRawEncoding();
323 SourceLocation AtLoc = SourceLocation::getFromRawEncoding(I->first);
325 checkAllAtProps(MigrateCtx, AtLoc, IndProps)
    [all...]
  /external/clang/include/clang/AST/
StmtObjC.h 346 SourceLocation AtLoc;
348 ObjCAutoreleasePoolStmt(SourceLocation atLoc,
351 SubStmt(subStmt), AtLoc(atLoc) {}
360 SourceLocation getLocStart() const LLVM_READONLY { return AtLoc; }
363 SourceLocation getAtLoc() const { return AtLoc; }
364 void setAtLoc(SourceLocation Loc) { AtLoc = Loc; }
ExprObjC.h 31 SourceLocation AtLoc;
36 String(SL), AtLoc(L) {}
44 SourceLocation getAtLoc() const { return AtLoc; }
45 void setAtLoc(SourceLocation L) { AtLoc = L; }
47 SourceLocation getLocStart() const LLVM_READONLY { return AtLoc; }
348 SourceLocation AtLoc, RParenLoc;
357 EncodedType(EncodedType), AtLoc(at), RParenLoc(rp) {}
362 SourceLocation getAtLoc() const { return AtLoc; }
363 void setAtLoc(SourceLocation L) { AtLoc = L; }
374 SourceLocation getLocStart() const LLVM_READONLY { return AtLoc; }
    [all...]
DeclObjC.h 677 ObjCInterfaceDecl(DeclContext *DC, SourceLocation atLoc, IdentifierInfo *Id,
711 SourceLocation atLoc,
    [all...]
  /external/clang/lib/Parse/
ParseExpr.cpp 130 Parser::ParseExpressionWithLeadingAt(SourceLocation AtLoc) {
131 ExprResult LHS(ParseObjCAtExpression(AtLoc));
    [all...]
ParseStmt.cpp 126 SourceLocation AtLoc;
131 AtLoc = ConsumeToken(); // consume @
132 return ParseObjCAtStatement(AtLoc);
    [all...]
Parser.cpp 874 SourceLocation AtLoc = ConsumeToken(); // the "@"
886 if (DS.SetTypeSpecType(DeclSpec::TST_unspecified, AtLoc, PrevSpec, DiagID))
887 Diag(AtLoc, DiagID) << PrevSpec;
890 return ParseObjCAtProtocolDeclaration(AtLoc, DS.getAttributes());
893 ParseObjCAtInterfaceDeclaration(AtLoc, DS.getAttributes()));
    [all...]
ParseObjc.cpp 47 SourceLocation AtLoc = ConsumeToken(); // the "@"
58 return ParseObjCAtClassDeclaration(AtLoc);
61 SingleDecl = ParseObjCAtInterfaceDeclaration(AtLoc, attrs);
66 return ParseObjCAtProtocolDeclaration(AtLoc, attrs);
69 return ParseObjCAtImplementationDeclaration(AtLoc);
71 return ParseObjCAtEndDeclaration(AtLoc);
73 SingleDecl = ParseObjCAtAliasDeclaration(AtLoc);
76 SingleDecl = ParseObjCPropertySynthesize(AtLoc);
79 SingleDecl = ParseObjCPropertyDynamic(AtLoc);
83 return ParseModuleImport(AtLoc);
    [all...]

Completed in 177 milliseconds