/external/clang/test/CodeGen/ |
D | 2008-01-24-StructAlignAndBitFields.c | 3 struct U { char a; short b; int c:25; char d; } u; struct
|
/external/clang/test/CodeGenCXX/ |
D | cxx11-unrestricted-union.cpp | 10 union U { union 23 U::U() {} in U() function in U 24 U::U(const U&) {} in U() function in U 25 U::U(U&&) {} in U() function in U 26 U &U::operator=(const U&) { return *this; } in operator =() 27 U &U::operator=(U &&) { return *this; } in operator =() argument
|
/external/clang/test/SemaCXX/ |
D | access.cpp | 41 template<typename T1, typename T2> struct U { }; struct 52 struct U<T1, float> { struct 55 … U() : v_(A::x) { } // expected-error {{'x' is a private member of 'PR15209::alias_templates::A'}} in U() function 59 struct U<T1, int> { struct 61 … U() : v_(A::y) { } // expected-error {{'y' is a private member of 'PR15209::alias_templates::A'}} in U() function 64 …template struct U<int, int>; // expected-note {{in instantiation of member function 'PR15209::alia… argument
|
D | constexpr-printing.cpp | 26 struct U : T { struct 27 constexpr U(const int *p) : T(), another(), p(p) {} in U() function 28 constexpr U(const U &u) : T(), another(), p(u.p) {} in U() function 32 constexpr U u1(&u1.arr[2]); argument
|
D | libstdcxx_common_type_hack.cpp | 30 using U = int; // expected-note {{here}} typedef 31 using U = decltype(true ? std::declval<int>() : std::declval<int>()); // expected-error {{different… typedef
|
D | alias-template.cpp | 38 template<typename Z> using U = int[m]; // expected-note {{previous definition}} typedef 39 template<typename Z> using U = int[42]; // ok typedef 40 …template<typename Z> using U = int; // expected-error {{type alias template redefinition with diff… typedef 57 …template<typename Z> using U = T*; // expected-error {{declaration type contains unexpanded parame… typedef 107 template<typename Z> using U = enum { a, b, c }; // expected-error {{cannot be defined}} typedef 126 template<typename Z> using U = int; // expected-note {{declared private here}} typedef in Access::C0 131 template<typename Z> using U = int; typedef in Access::C1
|
D | decltype-overloaded-functions.cpp | 24 template<typename T> struct U { struct A {}; decltype(A{}) f(); }; argument
|
/external/llvm/lib/DebugInfo/ |
D | DWARFDebugInfoEntry.cpp | 93 bool DWARFDebugInfoEntryMinimal::extractFast(const DWARFUnit *U, in extractFast() 144 const DWARFUnit *U, const uint16_t Attr, DWARFFormValue &FormValue) const { in getAttributeValue() argument 169 const DWARFUnit *U, const uint16_t Attr, const char *FailValue) const { in getAttributeValueAsString() argument 178 const DWARFUnit *U, const uint16_t Attr, uint64_t FailValue) const { in getAttributeValueAsAddress() argument 187 const DWARFUnit *U, const uint16_t Attr, uint64_t FailValue) const { in getAttributeValueAsUnsignedConstant() argument 196 const DWARFUnit *U, const uint16_t Attr, uint64_t FailValue) const { in getAttributeValueAsReference() argument 205 const DWARFUnit *U, const uint16_t Attr, uint64_t FailValue) const { in getAttributeValueAsSectionOffset() argument 214 DWARFDebugInfoEntryMinimal::getRangesBaseAttribute(const DWARFUnit *U, in getRangesBaseAttribute() 223 bool DWARFDebugInfoEntryMinimal::getLowAndHighPC(const DWARFUnit *U, in getLowAndHighPC() 261 const DWARFUnit *U, DWARFAddressRangesVector& Ranges) const { in collectChildrenAddressRanges() argument [all …]
|
/external/clang/test/CXX/temp/temp.decls/temp.alias/ |
D | p3.cpp | 7 typedef B<T> U; // expected-note {{in instantiation of template type alias 'B' requested here}} typedef 11 template<typename T> using U = int; typedef 17 template<typename T> using U = U<T>; typedef
|
/external/clang/test/CXX/class/class.static/class.static.data/ |
D | p3.cpp | 29 struct U { struct 37 template<typename T> constexpr T U<T>::d = T(); // expected-error {{non-literal type 'const NonLit'… argument
|
/external/chromium_org/third_party/libvpx/source/libvpx/vpx_mem/memory_manager/ |
D | hmm_base.c | 18 void U(init)(U(descriptor) *desc) { in U() function 26 void U(dll_remove)( in U() function 37 void U(into_free_collection)( in U() function 71 void *U(alloc_from_bin)( in U() function 138 void U(out_of_free_collection)( in U() function 165 void U(free)(U(descriptor) *desc, void *payload_ptr) { in U() function 286 void U(new_chunk)(U(descriptor) *desc, void *start, U(size_bau) n_baus) { in U() function 320 int U(audit_block_fail_dummy_return)(void) { in U() function
|
/external/libvpx/libvpx/vpx_mem/memory_manager/ |
D | hmm_base.c | 18 void U(init)(U(descriptor) *desc) { in U() function 26 void U(dll_remove)( in U() function 37 void U(into_free_collection)( in U() function 71 void *U(alloc_from_bin)( in U() function 138 void U(out_of_free_collection)( in U() function 165 void U(free)(U(descriptor) *desc, void *payload_ptr) { in U() function 286 void U(new_chunk)(U(descriptor) *desc, void *start, U(size_bau) n_baus) { in U() function 320 int U(audit_block_fail_dummy_return)(void) { in U() function
|
/external/clang/test/Modules/Inputs/ |
D | cxx-linkage-cache.h | 6 struct U { struct 10 template class U<int>; variable
|
/external/clang/test/CXX/special/class.init/class.base.init/ |
D | p9-0x.cpp | 17 struct U { struct 20 U *p = this; argument
|
D | p8-0x.cpp | 18 union U { union 22 U() {} in U() function 23 U(int) : a(1) {} in U() function 24 U(char) : b('y') {} in U() function 25 U(double) : a(1), // expected-note{{previous initialization is here}} in U() function
|
/external/clang/test/CXX/dcl.dcl/ |
D | p4-0x.cpp | 11 struct U { struct 19 static_assert(U(), ""); // expected-error {{ambiguous}} argument
|
/external/clang/test/SemaTemplate/ |
D | explicit-specialization-member.cpp | 25 struct U { static const int n = 5; }; argument 29 …te<> struct S<int>::U { static const int n = sizeof(int); }; // expected-error {{explicit speciali… struct in PR12331::S
|
D | alias-nested-nontag.cpp | 4 struct U { static Id<int> V; }; struct
|
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.typedef/ |
D | p2-0x.cpp | 41 using U = int[m]; // expected-note {{previous definition}} typedef 42 using U = int[42]; // ok typedef 43 …using U = int; // expected-error {{type alias redefinition with different types ('int' vs 'int [42… typedef 67 using U = T*; // expected-error {{declaration type contains unexpanded parameter pack 'T'}} in f0() typedef 122 using U = enum { a, b, c }; typedef 144 using U = int; // expected-note {{declared private here}} typedef in Access::C0 149 using U = int; typedef in Access::C1
|
/external/clang/test/CXX/temp/temp.param/ |
D | p5.cpp | 9 template<typename T, T v> struct U { struct 13 U<const int, 6> u; // expected-note {{instantiation}} argument
|
/external/clang/test/CXX/dcl.decl/dcl.meaning/ |
D | p1-0x.cpp | 73 template<typename T> struct U<T*> {}; struct 74 template<> struct U<int> {}; struct 75 template struct U<int*>; variable 76 template struct U<char>; // expected-error {{undefined}} variable
|
/external/clang/test/PCH/ |
D | field-designator.c | 12 struct U { struct 31 static const struct U plan = { .e = 1 }; in bar() argument
|
/external/clang/test/CXX/temp/temp.decls/temp.fct/temp.over.link/ |
D | p4-neg.cpp | 4 template<class U> void f0(U) { } // expected-error{{redefinition}} in f0() argument 22 typename MetaFun<U*>::type f0(const U&) { while (1) {} } // expected-error{{redefinition}} in f0()
|
/external/llvm/lib/Analysis/ |
D | CaptureTracking.cpp | 31 bool CaptureTracker::shouldExplore(const Use *U) { return true; } in shouldExplore() 88 for (const Use &U : V->uses()) { in PointerMayBeCaptured() local 100 const Use *U = Worklist.pop_back_val(); in PointerMayBeCaptured() local
|
/external/clang/test/CXX/except/except.spec/ |
D | p4.cpp | 29 template<typename T> struct U { struct 31 ~U(); // expected-note {{here}} argument
|