Home
last modified time | relevance | path

Searched refs:StarLoc (Results 1 – 8 of 8) sorted by relevance

/external/clang/lib/Lex/
DModuleMap.cpp1698 SourceLocation StarLoc = consumeToken(); in parseInferredModuleDecl() local
1703 Diags.Report(StarLoc, diag::err_mmap_top_level_inferred_submodule); in parseInferredModuleDecl()
1710 Diags.Report(StarLoc, diag::err_mmap_inferred_no_umbrella); in parseInferredModuleDecl()
1716 Diags.Report(StarLoc, diag::err_mmap_inferred_redef); in parseInferredModuleDecl()
1725 Diags.Report(StarLoc, diag::err_mmap_inferred_framework_submodule); in parseInferredModuleDecl()
1729 Diags.Report(StarLoc, diag::err_mmap_explicit_inferred_framework); in parseInferredModuleDecl()
1752 ActiveModule->InferredSubmoduleLoc = StarLoc; in parseInferredModuleDecl()
/external/clang/include/clang/AST/
DTypeLoc.h1012 SourceLocation StarLoc; member
1021 return this->getLocalData()->StarLoc; in getSigilLoc()
1024 this->getLocalData()->StarLoc = Loc; in setSigilLoc()
DStmt.h1215 SourceLocation StarLoc; variable
1220 : Stmt(IndirectGotoStmtClass), GotoLoc(gotoLoc), StarLoc(starLoc), in IndirectGotoStmt()
1229 void setStarLoc(SourceLocation L) { StarLoc = L; } in setStarLoc()
1230 SourceLocation getStarLoc() const { return StarLoc; } in getStarLoc()
/external/clang/lib/Sema/
DSemaObjCProperty.cpp534 SourceLocation StarLoc = TInfo->getTypeLoc().getLocEnd(); in CreatePropertyDecl() local
535 StarLoc = PP.getLocForEndOfToken(StarLoc); in CreatePropertyDecl()
537 << FixItHint::CreateInsertion(StarLoc, "*"); in CreatePropertyDecl()
DSemaStmt.cpp2268 Sema::ActOnIndirectGotoStmt(SourceLocation GotoLoc, SourceLocation StarLoc, in ActOnIndirectGotoStmt() argument
2280 if (DiagnoseAssignmentResult(ConvTy, StarLoc, DestTy, ETy, E, AA_Passing)) in ActOnIndirectGotoStmt()
2291 return Owned(new (Context) IndirectGotoStmt(GotoLoc, StarLoc, E)); in ActOnIndirectGotoStmt()
DTreeTransform.h1164 SourceLocation StarLoc, in RebuildIndirectGotoStmt() argument
1166 return getSema().ActOnIndirectGotoStmt(GotoLoc, StarLoc, Target); in RebuildIndirectGotoStmt()
/external/clang/lib/Parse/
DParseStmt.cpp1609 SourceLocation StarLoc = ConsumeToken(); in ParseGotoStatement() local
1615 Res = Actions.ActOnIndirectGotoStmt(GotoLoc, StarLoc, R.take()); in ParseGotoStatement()
/external/clang/include/clang/Sema/
DSema.h2881 SourceLocation StarLoc,