HomeSort by relevance Sort by last modified time
    Searched refs:UD (Results 1 - 12 of 12) sorted by null

  /external/clang/lib/AST/
StmtDumper.cpp 277 } else if (UsingDirectiveDecl *UD = dyn_cast<UsingDirectiveDecl>(D)) {
280 if (const IdentifierInfo *II = UD->getNominatedNamespace()->getIdentifier())
284 OS << '"' << UD->getDeclKindName() << ns << ";\"";
285 } else if (UsingDecl *UD = dyn_cast<UsingDecl>(D)) {
287 const char *tn = UD->isTypeName() ? "typename " : "";
288 OS << '"' << UD->getDeclKindName() << tn;
289 UD->getQualifier()->print(OS,
290 PrintingPolicy(UD->getASTContext().getLangOpts()));
DeclBase.cpp 146 if (const UsingShadowDecl *UD = dyn_cast<UsingShadowDecl>(this))
147 return UD->getTargetDecl()->isFunctionOrFunctionTemplate();
    [all...]
Decl.cpp     [all...]
ASTContext.cpp     [all...]
  /external/clang/lib/Sema/
SemaDeclCXX.cpp     [all...]
SemaTemplateInstantiateDecl.cpp     [all...]
SemaLookup.cpp 142 void visit(UsingDirectiveDecl *UD, DeclContext *EffectiveDC) {
143 DeclContext *NS = UD->getNominatedNamespace();
147 addUsingDirective(UD, EffectiveDC);
159 UsingDirectiveDecl *UD = *I;
160 DeclContext *NS = UD->getNominatedNamespace();
162 addUsingDirective(UD, EffectiveDC);
182 void addUsingDirective(UsingDirectiveDecl *UD, DeclContext *EffectiveDC) {
185 DeclContext *Common = UD->getNominatedNamespace();
190 list.push_back(UnqualUsingEntry(UD->getNominatedNamespace(), Common));
    [all...]
TreeTransform.h     [all...]
SemaDeclAttr.cpp 845 RecordDecl *UD = UT->getDecl();
846 for (RecordDecl::field_iterator it = UD->field_begin(),
847 itend = UD->field_end(); it != itend; ++it) {
    [all...]
SemaExpr.cpp     [all...]
SemaOverload.cpp     [all...]
  /external/clang/include/clang/Sema/
Sema.h     [all...]

Completed in 359 milliseconds