Searched defs:UD (Results 1 - 12 of 12) sorted by relevance

/external/clang/test/Layout/
H A Dms-x86-member-pointers.cpp11 struct UD { char a; int U::*mp; }; struct
39 // CHECK-NEXT: 0 | struct UD
76 sizeof(UD) +
/external/clang/test/CodeGenCUDA/Inputs/
H A Dcuda-initializers.h40 struct UD { struct
42 __device__ ~UD();
/external/clang/test/SemaCUDA/Inputs/
H A Dcuda-initializers.h40 struct UD { struct
42 __device__ ~UD();
/external/clang/lib/Sema/
H A DSemaLookup.cpp143 void visit(UsingDirectiveDecl *UD, DeclContext *EffectiveDC) { argument
144 DeclContext *NS = UD->getNominatedNamespace();
148 addUsingDirective(UD, EffectiveDC);
158 for (auto UD : DC->using_directives()) {
159 DeclContext *NS = UD->getNominatedNamespace();
161 addUsingDirective(UD, EffectiveDC);
180 void addUsingDirective(UsingDirectiveDecl *UD, DeclContext *EffectiveDC) { argument
183 DeclContext *Common = UD->getNominatedNamespace();
188 list.push_back(UnqualUsingEntry(UD->getNominatedNamespace(), Common));
H A DSemaTemplateInstantiateDecl.cpp2481 NamedDecl *UD = local
2486 if (UD)
2487 SemaRef.Context.setInstantiatedFromUsingDecl(cast<UsingDecl>(UD), D);
2489 return UD;
2505 NamedDecl *UD = local
2510 if (UD)
2511 SemaRef.Context.setInstantiatedFromUsingDecl(cast<UsingDecl>(UD), D);
2513 return UD;
4510 if (UsingDecl *UD = dyn_cast<UsingDecl>(Other)) {
4511 return isInstantiationOf(UUD, UD, Ct
[all...]
H A DSemaDeclAttr.cpp1202 RecordDecl *UD = UT->getDecl(); local
1203 for (const auto *I : UD->fields()) {
H A DSemaDeclCXX.cpp7338 UsingDirectiveDecl *&UD) {
7453 UD = UsingDirectiveDecl::Create(Context, Parent,
7460 UD->setImplicit();
7461 Parent->addDecl(UD);
7862 NamedDecl *UD = BuildUsingDeclaration(S, AS, UsingLoc, SS,
7866 if (UD)
7867 PushOnScopeChains(UD, S, /*AddToContext*/ false);
7869 return UD;
8042 UsingDecl *UD,
8060 UD
7331 ActOnStartNamespaceDef(Scope *NamespcScope, SourceLocation InlineLoc, SourceLocation NamespaceLoc, SourceLocation IdentLoc, IdentifierInfo *II, SourceLocation LBrace, AttributeList *AttrList, UsingDirectiveDecl *&UD) argument
8041 BuildUsingShadowDecl(Scope *S, UsingDecl *UD, NamedDecl *Orig, UsingShadowDecl *PrevDecl) argument
8448 UsingDecl *UD = BuildValid(); local
8470 CheckInheritingConstructorUsingDecl(UsingDecl *UD) argument
[all...]
H A DTreeTransform.h9684 UsingDecl *UD = cast<UsingDecl>(InstD); local
9685 for (auto *I : UD->shadows())
10570 UsingDecl *UD = cast<UsingDecl>(InstD); local
10571 for (auto *I : UD->shadows())
/external/clang/lib/CodeGen/
H A DTargetInfo.cpp157 const RecordDecl *UD = UT->getDecl(); local
158 if (UD->hasAttr<TransparentUnionAttr>()) {
159 assert(!UD->field_empty() && "sema created an empty transparent union");
160 return UD->field_begin()->getType();
H A DCGDebugInfo.cpp3630 void CGDebugInfo::EmitUsingDirective(const UsingDirectiveDecl &UD) { argument
3633 const NamespaceDecl *NSDecl = UD.getNominatedNamespace();
3637 getCurrentContextDescriptor(cast<Decl>(UD.getDeclContext())),
3639 getLineNumber(UD.getLocation()));
3643 void CGDebugInfo::EmitUsingDecl(const UsingDecl &UD) { argument
3646 assert(UD.shadow_size() &&
3650 const UsingShadowDecl &USD = **UD.shadow_begin();
H A DCGOpenMPRuntime.cpp3207 auto *UD = C.buildImplicitRecord("kmp_cmplrdata_t", TTK_Union); local
3208 UD->startDefinition();
3209 addFieldToRecordDecl(C, UD, KmpInt32Ty);
3210 addFieldToRecordDecl(C, UD, KmpRoutineEntryPointerQTy);
3211 UD->completeDefinition();
3212 QualType KmpCmplrdataTy = C.getRecordType(UD);
/external/clang/lib/AST/
H A DASTContext.cpp7410 RecordDecl *UD = UT->getDecl(); local
7411 if (UD->hasAttr<TransparentUnionAttr>()) {
7412 for (const auto *I : UD->fields()) {

Completed in 1233 milliseconds