Home
last modified time | relevance | path

Searched defs:U (Results 1 – 25 of 387) sorted by relevance

12345678910>>...16

/external/clang/test/CodeGen/
D2008-01-24-StructAlignAndBitFields.c3 struct U { char a; short b; int c:25; char d; } u; struct
/external/clang/test/CodeGenCXX/
Dcxx11-unrestricted-union.cpp10 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/
Daccess.cpp41 template<typename T1, typename T2> struct U { }; struct
52 struct U<T1, float> { struct
55U() : v_(A::x) { } // expected-error {{'x' is a private member of 'PR15209::alias_templates::A'}} in U() function
59 struct U<T1, int> { struct
61U() : 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
Dconstexpr-printing.cpp26 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
Dlibstdcxx_common_type_hack.cpp30 using U = int; // expected-note {{here}} typedef
31 using U = decltype(true ? std::declval<int>() : std::declval<int>()); // expected-error {{different… typedef
Dalias-template.cpp38 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
Ddecltype-overloaded-functions.cpp24 template<typename T> struct U { struct A {}; decltype(A{}) f(); }; argument
/external/llvm/lib/DebugInfo/
DDWARFDebugInfoEntry.cpp93 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/
Dp3.cpp7 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/
Dp3.cpp29 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/
Dhmm_base.c18 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/
Dhmm_base.c18 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/
Dcxx-linkage-cache.h6 struct U { struct
10 template class U<int>; variable
/external/clang/test/CXX/special/class.init/class.base.init/
Dp9-0x.cpp17 struct U { struct
20 U *p = this; argument
Dp8-0x.cpp18 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/
Dp4-0x.cpp11 struct U { struct
19 static_assert(U(), ""); // expected-error {{ambiguous}} argument
/external/clang/test/SemaTemplate/
Dexplicit-specialization-member.cpp25 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
Dalias-nested-nontag.cpp4 struct U { static Id<int> V; }; struct
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.typedef/
Dp2-0x.cpp41 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/
Dp5.cpp9 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/
Dp1-0x.cpp73 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/
Dfield-designator.c12 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/
Dp4-neg.cpp4 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/
DCaptureTracking.cpp31 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/
Dp4.cpp29 template<typename T> struct U { struct
31 ~U(); // expected-note {{here}} argument

12345678910>>...16