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

/external/clang/lib/Parse/
H A DParseStmt.cpp1787 SourceLocation StarLoc = ConsumeToken(); local
1793 Res = Actions.ActOnIndirectGotoStmt(GotoLoc, StarLoc, R.get());
/external/clang/lib/Lex/
H A DModuleMap.cpp2175 SourceLocation StarLoc = consumeToken(); local
2180 Diags.Report(StarLoc, diag::err_mmap_top_level_inferred_submodule);
2188 Diags.Report(StarLoc, diag::err_mmap_inferred_no_umbrella);
2194 Diags.Report(StarLoc, diag::err_mmap_inferred_redef);
2203 Diags.Report(StarLoc, diag::err_mmap_inferred_framework_submodule);
2207 Diags.Report(StarLoc, diag::err_mmap_explicit_inferred_framework);
2230 ActiveModule->InferredSubmoduleLoc = StarLoc;
/external/clang/lib/Sema/
H A DSemaObjCProperty.cpp600 SourceLocation StarLoc = TInfo->getTypeLoc().getLocEnd(); local
601 StarLoc = getLocForEndOfToken(StarLoc);
603 << FixItHint::CreateInsertion(StarLoc, "*");
H A DSemaStmt.cpp2594 Sema::ActOnIndirectGotoStmt(SourceLocation GotoLoc, SourceLocation StarLoc, argument
2606 if (DiagnoseAssignmentResult(ConvTy, StarLoc, DestTy, ETy, E, AA_Passing))
2617 return new (Context) IndirectGotoStmt(GotoLoc, StarLoc, E);
H A DTreeTransform.h1235 SourceLocation StarLoc,
1237 return getSema().ActOnIndirectGotoStmt(GotoLoc, StarLoc, Target);
1234 RebuildIndirectGotoStmt(SourceLocation GotoLoc, SourceLocation StarLoc, Expr *Target) argument
/external/clang/include/clang/AST/
H A DStmt.h1238 SourceLocation StarLoc; member in class:clang::IndirectGotoStmt
1243 : Stmt(IndirectGotoStmtClass), GotoLoc(gotoLoc), StarLoc(starLoc),
1252 void setStarLoc(SourceLocation L) { StarLoc = L; }
1253 SourceLocation getStarLoc() const { return StarLoc; }

Completed in 102 milliseconds