Home
last modified time | relevance | path

Searched refs:UD (Results 1 – 25 of 55) sorted by relevance

123

/external/clang/test/Preprocessor/
Doutput_paste_avoid.cpp44 UD: StrSuffix()ident
45 UD: IntSuffix()ident
/external/clang/test/Layout/
Dms-x86-member-pointers.cpp11 struct UD { char a; int U::*mp; }; struct
76 sizeof(UD) +
/external/clang/test/SemaCUDA/
Ddevice-var-init.cu63 __device__ UD d_ud;
65 __shared__ UD s_ud;
67 __constant__ UD c_ud;
/external/clang/test/CodeGenCUDA/Inputs/
Dcuda-initializers.h40 struct UD { struct
42 __device__ ~UD(); argument
/external/clang/test/SemaCUDA/Inputs/
Dcuda-initializers.h40 struct UD { struct
42 __device__ ~UD(); argument
/external/clang/test/CodeGenCUDA/
Ddevice-var-init.cu127 UD ud; in df()
/external/llvm/test/DebugInfo/COFF/
Dinheritance.ll82 @"\01?d@@3UD@@A" = global %struct.D zeroinitializer, align 8
93 %call = call %struct.D* @"\01??0D@@QEAA@XZ"(%struct.D* @"\01?d@@3UD@@A", i32 1) #4, !dbg !40
229 …ageName: "\01?d@@3UD@@A", scope: !0, file: !1, line: 9, type: !5, isLocal: false, isDefinition: tr…
/external/ImageMagick/PerlMagick/t/reference/filter/
DLevel.miff115 ��� � 7!< F9\����������������z�UD�4*k 
249 �U!d�&\�+a�4\�!g�(s�9g�<PA(SC(SC(RC*SC+WI&XI#WH+WF*UD%KA!2-*#50CA II/�M?�&*����� ��
DShear.miff14UD�ibc�up��vz��ls��dl��zz��������������ρp��UV��>F��:;��>3��;*��<.��<8��B=��=-��:'��9&��7(��4.��20�…
DRotate.miff15 …��owcbcQifWifWifWieUidXldZmdVmdTmcSkbRg]Qi]Qm_Sh`R[VFBE7=E6HOAsaT�[Q�YL�VE�UD�W[�oo����id�;3�A3�OA…
DMotionBlur.miff15 …>;�><�><�@?�BA�AA�CD�BD�BC�@@�??�BB�DC�FD�EB�D?�C=�E?�F@�G@�I@�J?�K@�M@�PB�UD�YE�\F�`I�cK�jN�pP�vT…
/external/clang/lib/Sema/
DSemaDeclCXX.cpp7338 UsingDirectiveDecl *&UD) { in ActOnStartNamespaceDef() argument
7453 UD = UsingDirectiveDecl::Create(Context, Parent, in ActOnStartNamespaceDef()
7460 UD->setImplicit(); in ActOnStartNamespaceDef()
7461 Parent->addDecl(UD); in ActOnStartNamespaceDef()
7862 NamedDecl *UD = BuildUsingDeclaration(S, AS, UsingLoc, SS, in ActOnUsingDeclaration() local
7866 if (UD) in ActOnUsingDeclaration()
7867 PushOnScopeChains(UD, S, /*AddToContext*/ false); in ActOnUsingDeclaration()
7869 return UD; in ActOnUsingDeclaration()
8042 UsingDecl *UD, in BuildUsingShadowDecl() argument
8060 UD->getQualifier()->getAsRecordDecl()); in BuildUsingShadowDecl()
[all …]
DSemaTemplateInstantiateDecl.cpp2481 NamedDecl *UD = in VisitUnresolvedUsingTypenameDecl() local
2486 if (UD) in VisitUnresolvedUsingTypenameDecl()
2487 SemaRef.Context.setInstantiatedFromUsingDecl(cast<UsingDecl>(UD), D); in VisitUnresolvedUsingTypenameDecl()
2489 return UD; in VisitUnresolvedUsingTypenameDecl()
2505 NamedDecl *UD = in VisitUnresolvedUsingValueDecl() local
2510 if (UD) in VisitUnresolvedUsingValueDecl()
2511 SemaRef.Context.setInstantiatedFromUsingDecl(cast<UsingDecl>(UD), D); in VisitUnresolvedUsingValueDecl()
2513 return UD; in VisitUnresolvedUsingValueDecl()
4510 if (UsingDecl *UD = dyn_cast<UsingDecl>(Other)) { in isInstantiationOf() local
4511 return isInstantiationOf(UUD, UD, Ctx); in isInstantiationOf()
[all …]
DSemaLookup.cpp143 void visit(UsingDirectiveDecl *UD, DeclContext *EffectiveDC) { in visit() argument
144 DeclContext *NS = UD->getNominatedNamespace(); in visit()
148 addUsingDirective(UD, EffectiveDC); in visit()
158 for (auto UD : DC->using_directives()) { in addUsingDirectives() local
159 DeclContext *NS = UD->getNominatedNamespace(); in addUsingDirectives()
161 addUsingDirective(UD, EffectiveDC); in addUsingDirectives()
180 void addUsingDirective(UsingDirectiveDecl *UD, DeclContext *EffectiveDC) { in addUsingDirective() argument
183 DeclContext *Common = UD->getNominatedNamespace(); in addUsingDirective()
188 list.push_back(UnqualUsingEntry(UD->getNominatedNamespace(), Common)); in addUsingDirective()
/external/clang/lib/CodeGen/
DCGDebugInfo.h357 void EmitUsingDirective(const UsingDirectiveDecl &UD);
363 void EmitUsingDecl(const UsingDecl &UD);
DCGDebugInfo.cpp3630 void CGDebugInfo::EmitUsingDirective(const UsingDirectiveDecl &UD) { in EmitUsingDirective() argument
3633 const NamespaceDecl *NSDecl = UD.getNominatedNamespace(); in EmitUsingDirective()
3637 getCurrentContextDescriptor(cast<Decl>(UD.getDeclContext())), in EmitUsingDirective()
3639 getLineNumber(UD.getLocation())); in EmitUsingDirective()
3643 void CGDebugInfo::EmitUsingDecl(const UsingDecl &UD) { in EmitUsingDecl() argument
3646 assert(UD.shadow_size() && in EmitUsingDecl()
3650 const UsingShadowDecl &USD = **UD.shadow_begin(); in EmitUsingDecl()
/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
DIndVarSimplify.cpp631 if (const SCEVUDivExpr *UD = dyn_cast<SCEVUDivExpr>(S)) in isSafe() local
632 return isSafe(UD->getLHS(), L, SE) && in isSafe()
633 isSafe(UD->getRHS(), L, SE); in isSafe()
/external/clang/lib/AST/
DDecl.cpp1544 if (auto *UD = dyn_cast<UsingDecl>(this)) { in declarationReplaces() local
1546 return Context.getCanonicalNestedNameSpecifier(UD->getQualifier()) == in declarationReplaces()
1560 if (auto *UD = dyn_cast<UsingDirectiveDecl>(this)) in declarationReplaces() local
1561 return UD->getNominatedNamespace()->getOriginalNamespace() == in declarationReplaces()
1604 while (auto *UD = dyn_cast<UsingShadowDecl>(ND)) in getUnderlyingDeclImpl() local
1605 ND = UD->getTargetDecl(); in getUnderlyingDeclImpl()
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/pkb/it-IT/
Dit-IT_kdt_posp.pkb52 …��ː�h4p#΃����`� ��܉F>6�J���,@,mw�bD��xd5ƁB�|֫�#l4C-�lǂ�9D�����&UD���ƿ&�� �ǃ,�"O<�…
/external/ImageMagick/PerlMagick/t/reference/write/jng/
Dread_prog.miff13 …F5KC.Y<*n;*�=0�@7�D?�IC�LI�KG�G>�A8�>1�=.�C/�H2�G/�B)�B+�@)�?(�?)�<&�=(�F0�UD�KIX67E+.B009/-50*63*…
/external/syslinux/gnu-efi/gnu-efi-3.0/
DChangeLog93 initialize the #DE or #UD trap handlers, and your backtrace will be a
95 whatever address the IDT has for #UD, but also addresses like "0x4" and
/external/ImageMagick/PerlMagick/t/reference/write/filter/
DBlur.miff43 …8/E:0F;1E:1B80@60B61K63W75\73`80k90{;2�=5�?6�@6�?5�>5�=4�<2�<1�>5�C<�J?�O@UD�\K�aU�h_�sj�}q��p�l…
DImplode.miff43 …J?�SJ�WO�_S�mTq�P��^y�Yb{JLW9BE39</9@/M]9h�Fl�Hf�Ij�Mk�Ln�Lq�Os�Sv�VUM>VM?]UD^VFaXGd[Gf]Mj`Zla]i^U…
/external/ImageMagick/PerlMagick/t/reference/write/read/
Dgranite.miff96 b�g��#�ں��gQϟ��,� C����bG��S���������C�����2B �UD�����8a-!�8?�l`��s��:��$�@Z�(�IV��!…
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/pkb/fr-FR/
Dfr-FR_kdt_posp.pkb83 …1�P�В@��(�٫�����#߳�c�c��j�H��I-lMUƣ^�"&�Q#�[q���%�����hp�D�`@D�����A���UD�$î"r6s�"`�:��#�8Z��…

123