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

1 2

  /external/clang/lib/Sema/
JumpDiagnostics.cpp 66 SmallVector<LabelDecl*, 4> IndirectJumpTargets;
79 LabelDecl *Target, unsigned TargetScope);
502 LabelDecl *Target = IGS->getConstantTarget();
582 llvm::DenseMap<unsigned, LabelDecl*> TargetScopes;
583 for (SmallVectorImpl<LabelDecl*>::iterator
586 LabelDecl *TheLabel = *I;
590 LabelDecl *&Target = TargetScopes[LabelScope];
603 for (llvm::DenseMap<unsigned,LabelDecl*>::iterator
606 LabelDecl *TargetLabel = TI->second;
683 LabelDecl *Target, bool &Diagnosed)
    [all...]
SemaLookup.cpp     [all...]
SemaTemplateInstantiateDecl.cpp 159 TemplateDeclInstantiator::VisitLabelDecl(LabelDecl *D) {
160 LabelDecl *Inst = LabelDecl::Create(SemaRef.Context, Owner, D->getLocation(),
    [all...]
SemaDecl.cpp     [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
SVals.h 464 explicit GotoLabel(LabelDecl *Label) : Loc(GotoLabelKind, Label) {}
466 const LabelDecl *getLabel() const {
467 return static_cast<const LabelDecl*>(Data);
CoreEngine.h 465 const LabelDecl *getLabel() const {
  /external/clang/unittests/AST/
SourceLocationTest.cpp 68 TEST(LabelDecl, Range) {
  /external/clang/include/clang/AST/
Stmt.h 37 class LabelDecl;
770 LabelDecl *TheDecl;
774 LabelStmt(SourceLocation IL, LabelDecl *D, Stmt *substmt)
782 LabelDecl *getDecl() const { return TheDecl; }
783 void setDecl(LabelDecl *D) { TheDecl = D; }
    [all...]
Decl.h 268 /// LabelDecl - Represents the declaration of a label. Labels also have a
273 class LabelDecl : public NamedDecl {
281 LabelDecl(DeclContext *DC, SourceLocation IdentL, IdentifierInfo *II,
286 static LabelDecl *Create(ASTContext &C, DeclContext *DC,
288 static LabelDecl *Create(ASTContext &C, DeclContext *DC,
291 static LabelDecl *CreateDeserialized(ASTContext &C, unsigned ID);
    [all...]
Expr.h     [all...]
  /external/clang/lib/Frontend/
ASTConsumers.cpp 403 LabelDecl *LD = cast<LabelDecl>(*I);
  /external/clang/lib/AST/
Decl.cpp     [all...]
DeclPrinter.cpp 59 void VisitLabelDecl(LabelDecl *D);
635 void DeclPrinter::VisitLabelDecl(LabelDecl *D) {
    [all...]
ASTDumper.cpp 189 void VisitLabelDecl(const LabelDecl *D);
695 void ASTDumper::VisitLabelDecl(const LabelDecl *D) {
    [all...]
Stmt.cpp 954 LabelDecl *IndirectGotoStmt::getConstantTarget() {
    [all...]
  /external/clang/include/clang/Sema/
ScopeInfo.h 30 class LabelDecl;
Template.h 395 Decl *VisitLabelDecl(LabelDecl *D);
  /external/clang/lib/CodeGen/
CodeGenFunction.h 52 class LabelDecl;
    [all...]
CGStmt.cpp 310 CodeGenFunction::getJumpDestForLabel(const LabelDecl *D) {
321 void CodeGenFunction::EmitLabel(const LabelDecl *D) {
365 if (const LabelDecl *Target = S.getConstantTarget()) {
    [all...]
CodeGenFunction.cpp     [all...]
  /external/clang/lib/Parse/
ParseStmt.cpp 472 LabelDecl *LD = Actions.LookupOrCreateLabel(IdentTok.getIdentifierInfo(),
    [all...]
  /external/clang/lib/Serialization/
ASTReaderStmt.cpp 154 LabelDecl *LD = ReadDeclAs<LabelDecl>(Record, Idx);
241 S->setLabel(ReadDeclAs<LabelDecl>(Record, Idx));
736 E->setLabel(ReadDeclAs<LabelDecl>(Record, Idx));
    [all...]
ASTWriterDecl.cpp 54 void VisitLabelDecl(LabelDecl *LD);
828 void ASTDeclWriter::VisitLabelDecl(LabelDecl *D) {
    [all...]
ASTReaderDecl.cpp 217 void VisitLabelDecl(LabelDecl *LD);
    [all...]
  /external/clang/lib/Analysis/
CFG.cpp 307 typedef llvm::DenseMap<LabelDecl*, JumpTarget> LabelMapTy;
316 typedef llvm::SmallPtrSet<LabelDecl*, 5> LabelSetTy;
    [all...]

Completed in 519 milliseconds

1 2