reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

gen/tools/clang/include/clang/AST/StmtDataCollectors.inc
  128     addData(S->getLabel()->getName());
tools/clang/lib/AST/ASTImporter.cpp
 5940   auto Imp = importSeq(S->getLabel(), S->getGotoLoc(), S->getLabelLoc());
tools/clang/lib/AST/JSONNodeDumper.cpp
 1437                 createPointerRepresentation(GS->getLabel()));
tools/clang/lib/AST/StmtPrinter.cpp
  380   Indent() << "goto " << Node->getLabel()->getName() << ";";
tools/clang/lib/AST/StmtProfile.cpp
  287   VisitDecl(S->getLabel());
tools/clang/lib/AST/TextNodeDumper.cpp
  677   OS << " '" << Node->getLabel()->getName() << "'";
  678   dumpPointer(Node->getLabel());
tools/clang/lib/Analysis/CFG.cpp
 1551       LabelMapTy::iterator LI = LabelMap.find(G->getLabel());
 3246   LabelMapTy::iterator I = LabelMap.find(G->getLabel());
tools/clang/lib/CodeGen/CGStmt.cpp
  607   EmitBranchThroughCleanup(getJumpDestForLabel(S.getLabel()));
tools/clang/lib/CodeGen/VarBypassDetector.cpp
  141       if (const LabelStmt *LS = GS->getLabel()->getStmt())
tools/clang/lib/Sema/JumpDiagnostics.cpp
  609       if (GS->getLabel()->getStmt()) {
  610         CheckJump(GS, GS->getLabel()->getStmt(), GS->getGotoLoc(),
  934   if (GS->getLabel()->isMSAsmLabel()) {
  936         << GS->getLabel()->getIdentifier();
  937     S.Diag(GS->getLabel()->getLocation(), diag::note_goto_ms_asm_label)
  938         << GS->getLabel()->getIdentifier();
tools/clang/lib/Sema/TreeTransform.h
 6995   Decl *LD = getDerived().TransformDecl(S->getLabel()->getLocation(),
 6996                                         S->getLabel());
tools/clang/lib/Serialization/ASTWriterStmt.cpp
  224   Record.AddDeclRef(S->getLabel());
tools/clang/tools/extra/clang-tidy/cppcoreguidelines/AvoidGotoCheck.cpp
   21   return Node.getBeginLoc() < Node.getLabel()->getBeginLoc();
   51   diag(Goto->getLabel()->getBeginLoc(), "label defined here",
tools/clang/tools/libclang/CIndex.cpp
 2618   WL.push_back(LabelRefVisit(GS->getLabel(), GS->getLabelLoc(), Parent));
 6161       if (LabelDecl *label = Goto->getLabel())