Searched defs:StarLoc (Results 1 - 6 of 6) sorted by relevance

/external/clang/lib/Parse/
H A DParseStmt.cpp1828 SourceLocation StarLoc = ConsumeToken(); local
1834 Res = Actions.ActOnIndirectGotoStmt(GotoLoc, StarLoc, R.get());
/external/clang/lib/Lex/
H A DModuleMap.cpp2181 SourceLocation StarLoc = consumeToken(); local
2186 Diags.Report(StarLoc, diag::err_mmap_top_level_inferred_submodule);
2194 Diags.Report(StarLoc, diag::err_mmap_inferred_no_umbrella);
2200 Diags.Report(StarLoc, diag::err_mmap_inferred_redef);
2209 Diags.Report(StarLoc, diag::err_mmap_inferred_framework_submodule);
2213 Diags.Report(StarLoc, diag::err_mmap_explicit_inferred_framework);
2237 ActiveModule->InferredSubmoduleLoc = StarLoc;
/external/clang/lib/Sema/
H A DSemaObjCProperty.cpp604 SourceLocation StarLoc = TInfo->getTypeLoc().getLocEnd(); local
605 StarLoc = getLocForEndOfToken(StarLoc);
607 << FixItHint::CreateInsertion(StarLoc, "*");
H A DSemaStmt.cpp2625 Sema::ActOnIndirectGotoStmt(SourceLocation GotoLoc, SourceLocation StarLoc, argument
2637 if (DiagnoseAssignmentResult(ConvTy, StarLoc, DestTy, ETy, E, AA_Passing))
2648 return new (Context) IndirectGotoStmt(GotoLoc, StarLoc, E);
H A DTreeTransform.h1247 SourceLocation StarLoc,
1249 return getSema().ActOnIndirectGotoStmt(GotoLoc, StarLoc, Target);
1246 RebuildIndirectGotoStmt(SourceLocation GotoLoc, SourceLocation StarLoc, Expr *Target) argument
/external/clang/include/clang/AST/
H A DStmt.h1260 SourceLocation StarLoc; member in class:clang::IndirectGotoStmt
1265 : Stmt(IndirectGotoStmtClass), GotoLoc(gotoLoc), StarLoc(starLoc),
1274 void setStarLoc(SourceLocation L) { StarLoc = L; }
1275 SourceLocation getStarLoc() const { return StarLoc; }

Completed in 280 milliseconds