HomeSort by relevance Sort by last modified time
    Searched refs:LabelStmt (Results 1 - 25 of 30) sorted by null

1 2

  /external/clang/unittests/AST/
SourceLocationTest.cpp 61 class LabelDeclRangeVerifier : public RangeVerifier<LabelStmt> {
63 virtual SourceRange getRange(const LabelStmt &Node) {
71 EXPECT_TRUE(Verifier.match("void f() { l: return; }", labelStmt()));
74 TEST(LabelStmt, Range) {
75 RangeVerifier<LabelStmt> Verifier;
77 EXPECT_TRUE(Verifier.match("void f() { l: return; }", labelStmt()));
  /external/clang/tools/libclang/
CXCursor.h 32 class LabelStmt;
214 CXCursor MakeCursorLabelRef(LabelStmt *Label, SourceLocation Loc,
219 std::pair<const LabelStmt *, SourceLocation> getCursorLabelRef(CXCursor C);
CXCursor.cpp 706 CXCursor cxcursor::MakeCursorLabelRef(LabelStmt *Label, SourceLocation Loc,
715 std::pair<const LabelStmt *, SourceLocation>
718 return std::make_pair(static_cast<const LabelStmt *>(C.data[0]),
    [all...]
CIndex.cpp     [all...]
RecursiveASTVisitor.h     [all...]
  /external/clang/lib/ARCMigrate/
TransProtectedScope.cpp 89 while (Parent && (isa<SwitchCase>(Parent) || isa<LabelStmt>(Parent)))
Transforms.cpp 294 while (LabelStmt *Label = dyn_cast<LabelStmt>(S))
  /external/clang/lib/AST/
Stmt.cpp 118 if (const LabelStmt *LS = dyn_cast<LabelStmt>(S))
280 const char *LabelStmt::getName() const {
    [all...]
StmtPrinter.cpp 169 void StmtPrinter::VisitLabelStmt(LabelStmt *Node) {
    [all...]
ASTDumper.cpp 245 void VisitLabelStmt(const LabelStmt *Node);
    [all...]
StmtProfile.cpp 107 void StmtProfiler::VisitLabelStmt(const LabelStmt *S) {
Expr.cpp     [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
CoreEngine.h 466 return cast<LabelStmt>((*I)->getLabel())->getDecl();
  /external/clang/lib/CodeGen/
CGStmt.cpp 177 case Stmt::LabelStmtClass: EmitLabelStmt(cast<LabelStmt>(*S)); break;
220 while (const LabelStmt *LS = dyn_cast<LabelStmt>(LastStmt)) {
344 void CodeGenFunction::EmitLabelStmt(const LabelStmt &S) {
    [all...]
CodeGenFunction.h 56 class LabelStmt;
    [all...]
CodeGenFunction.cpp 637 if (isa<LabelStmt>(S))
    [all...]
  /external/clang/lib/Sema/
JumpDiagnostics.cpp 380 else if (LabelStmt *LS = dyn_cast<LabelStmt>(SubStmt))
AnalysisBasedWarnings.cpp 757 const LabelStmt *L = dyn_cast_or_null<LabelStmt>(P->getLabel());
    [all...]
SemaStmt.cpp 154 if (const LabelStmt *Label = dyn_cast_or_null<LabelStmt>(S))
400 LabelStmt *LS = new (Context) LabelStmt(IdentLoc, TheDecl, SubStmt);
    [all...]
  /external/clang/include/clang/AST/
Decl.h 36 class LabelStmt;
269 /// corresponding LabelStmt, which indicates the position that the label was
275 LabelStmt *TheStmt;
282 LabelStmt *S, SourceLocation StartL)
293 LabelStmt *getStmt() const { return TheStmt; }
294 void setStmt(LabelStmt *T) { TheStmt = T; }
    [all...]
Stmt.h 766 /// LabelStmt - Represents a label, which has a substatement. For example:
769 class LabelStmt : public Stmt {
774 LabelStmt(SourceLocation IL, LabelDecl *D, Stmt *substmt)
779 explicit LabelStmt(EmptyShell Empty) : Stmt(LabelStmtClass, Empty) { }
    [all...]
RecursiveASTVisitor.h     [all...]
  /external/v8/tools/gcmole/
gcmole.cc 898 VISIT(LabelStmt);
924 IGNORE_STMT(LabelStmt);
    [all...]
  /external/clang/lib/Analysis/
CFG.cpp 382 CFGBlock *VisitLabelStmt(LabelStmt *L);
    [all...]
  /external/clang/include/clang/ASTMatchers/
ASTMatchers.h 861 /// labelStmt()
863 const internal::VariadicDynCastAllOfMatcher<Stmt, LabelStmt> labelStmt;
    [all...]

Completed in 586 milliseconds

1 2