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

  /external/clang/lib/ARCMigrate/
TransGCAttrs.cpp 225 SourceLocation AtLoc,
271 MigrateCtx.AtPropsWeak.insert(AtLoc.getRawEncoding());
283 MigrateCtx.rewritePropertyAttribute("assign", toAttr, AtLoc);
285 MigrateCtx.addPropertyAttribute(toAttr, AtLoc);
294 TA.clearDiagnostic(diag::err_objc_property_attr_mutually_exclusive, AtLoc);
311 SourceLocation AtLoc = PD->getAtLoc();
312 if (AtLoc.isInvalid())
314 unsigned RawAt = AtLoc.getRawEncoding();
321 SourceLocation AtLoc = SourceLocation::getFromRawEncoding(I->first);
323 checkAllAtProps(MigrateCtx, AtLoc, IndProps)
    [all...]
  /external/clang/include/clang/AST/
StmtObjC.h 345 SourceLocation AtLoc;
347 ObjCAutoreleasePoolStmt(SourceLocation atLoc,
350 SubStmt(subStmt), AtLoc(atLoc) {}
359 SourceLocation getLocStart() const LLVM_READONLY { return AtLoc; }
362 SourceLocation getAtLoc() const { return AtLoc; }
363 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; }
349 SourceLocation AtLoc, RParenLoc;
358 EncodedType(EncodedType), AtLoc(at), RParenLoc(rp) {}
363 SourceLocation getAtLoc() const { return AtLoc; }
364 void setAtLoc(SourceLocation L) { AtLoc = L; }
375 SourceLocation getLocStart() const LLVM_READONLY { return AtLoc; }
    [all...]
DeclObjC.h 737 ObjCInterfaceDecl(const ASTContext &C, DeclContext *DC, SourceLocation AtLoc,
771 SourceLocation atLoc,
    [all...]
  /external/clang/lib/Parse/
ParseExpr.cpp 131 Parser::ParseExpressionWithLeadingAt(SourceLocation AtLoc) {
132 ExprResult LHS(ParseObjCAtExpression(AtLoc));
    [all...]
ParseStmt.cpp 162 SourceLocation AtLoc;
167 AtLoc = ConsumeToken(); // consume @
168 return ParseObjCAtStatement(AtLoc);
    [all...]
Parser.cpp 855 SourceLocation AtLoc = ConsumeToken(); // the "@"
867 if (DS.SetTypeSpecType(DeclSpec::TST_unspecified, AtLoc, PrevSpec, DiagID,
869 Diag(AtLoc, DiagID) << PrevSpec;
872 return ParseObjCAtProtocolDeclaration(AtLoc, DS.getAttributes());
875 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...]
  /external/llvm/lib/MC/MCParser/
AsmParser.cpp 817 SMLoc AtLoc = getLexer().getLoc();
820 return Error(AtLoc, "expected symbol variant after '@'");
    [all...]

Completed in 694 milliseconds