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

1 2

  /external/clang/lib/Sema/
JumpDiagnostics.cpp 66 SmallVector<LabelDecl*, 4> IndirectJumpTargets;
79 LabelDecl *Target, unsigned TargetScope);
507 LabelDecl *Target = IGS->getConstantTarget();
587 llvm::DenseMap<unsigned, LabelDecl*> TargetScopes;
588 for (SmallVectorImpl<LabelDecl*>::iterator
591 LabelDecl *TheLabel = *I;
595 LabelDecl *&Target = TargetScopes[LabelScope];
608 for (llvm::DenseMap<unsigned,LabelDecl*>::iterator
611 LabelDecl *TargetLabel = TI->second;
688 LabelDecl *Target, bool &Diagnosed)
    [all...]
SemaLookup.cpp     [all...]
SemaTemplateInstantiateDecl.cpp 166 TemplateDeclInstantiator::VisitLabelDecl(LabelDecl *D) {
167 LabelDecl *Inst = LabelDecl::Create(SemaRef.Context, Owner, D->getLocation(),
    [all...]
TreeTransform.h     [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
SVals.h 472 explicit GotoLabel(LabelDecl *Label) : Loc(GotoLabelKind, Label) {}
474 const LabelDecl *getLabel() const {
475 return static_cast<const LabelDecl*>(Data);
CoreEngine.h 469 const LabelDecl *getLabel() const {
  /external/clang/include/clang/AST/
Stmt.h 40 class LabelDecl;
763 LabelDecl *TheDecl;
767 LabelStmt(SourceLocation IL, LabelDecl *D, Stmt *substmt)
775 LabelDecl *getDecl() const { return TheDecl; }
776 void setDecl(LabelDecl *D) { TheDecl = D; }
    [all...]
Decl.h 285 /// LabelDecl - Represents the declaration of a label. Labels also have a
290 class LabelDecl : public NamedDecl {
298 LabelDecl(DeclContext *DC, SourceLocation IdentL, IdentifierInfo *II,
303 static LabelDecl *Create(ASTContext &C, DeclContext *DC,
305 static LabelDecl *Create(ASTContext &C, DeclContext *DC,
308 static LabelDecl *CreateDeserialized(ASTContext &C, unsigned ID);
    [all...]
Expr.h     [all...]
  /external/clang/lib/Frontend/
ASTConsumers.cpp 407 LabelDecl *LD = cast<LabelDecl>(*I);
  /external/clang/unittests/AST/
SourceLocationTest.cpp 68 TEST(LabelDecl, Range) {
  /external/clang/lib/AST/
Decl.cpp     [all...]
DeclPrinter.cpp 59 void VisitLabelDecl(LabelDecl *D);
641 void DeclPrinter::VisitLabelDecl(LabelDecl *D) {
    [all...]
ASTDumper.cpp 194 void VisitLabelDecl(const LabelDecl *D);
753 void ASTDumper::VisitLabelDecl(const LabelDecl *D) {
    [all...]
Stmt.cpp 946 LabelDecl *IndirectGotoStmt::getConstantTarget() {
    [all...]
  /external/clang/lib/CodeGen/
CodeGenFunction.h 54 class LabelDecl;
505 SmallVector<const LabelDecl*, 4> Labels;
520 void addLabel(const LabelDecl *label) {
817 llvm::DenseMap<const LabelDecl*, JumpDest> LabelMap;
    [all...]
CGStmt.cpp 325 CodeGenFunction::getJumpDestForLabel(const LabelDecl *D) {
336 void CodeGenFunction::EmitLabel(const LabelDecl *D) {
369 for (SmallVectorImpl<const LabelDecl*>::const_iterator
406 if (const LabelDecl *Target = S.getConstantTarget()) {
    [all...]
CodeGenFunction.cpp     [all...]
  /external/clang/include/clang/Sema/
ScopeInfo.h 34 class LabelDecl;
  /external/clang/lib/Serialization/
ASTReaderStmt.cpp 164 LabelDecl *LD = ReadDeclAs<LabelDecl>(Record, Idx);
251 S->setLabel(ReadDeclAs<LabelDecl>(Record, Idx));
821 E->setLabel(ReadDeclAs<LabelDecl>(Record, Idx));
    [all...]
ASTWriterDecl.cpp 54 void VisitLabelDecl(LabelDecl *LD);
854 void ASTDeclWriter::VisitLabelDecl(LabelDecl *D) {
    [all...]
ASTReaderDecl.cpp 217 void VisitLabelDecl(LabelDecl *LD);
    [all...]
  /external/clang/lib/Parse/
ParseStmt.cpp 492 LabelDecl *LD = Actions.LookupOrCreateLabel(IdentTok.getIdentifierInfo(),
    [all...]
  /external/clang/lib/Analysis/
CFG.cpp 307 typedef llvm::DenseMap<LabelDecl*, JumpTarget> LabelMapTy;
316 typedef llvm::SmallPtrSet<LabelDecl*, 5> LabelSetTy;
    [all...]
  /external/clang/tools/libclang/
CIndex.cpp     [all...]

Completed in 4582 milliseconds

1 2