Home
last modified time | relevance | path

Searched +defs:h +defs:U (Results 1 – 25 of 597) sorted by relevance

12345678910>>...24

/aosp_15_r20/external/libcxx/test/libcxx/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.mem/
H A Dconstruct_piecewise_pair.pass.cpp111 using U = CountCopiesAllocV1; in main() typedef
117 TestHarness<P> h; in main() local
126 using U = CountCopiesAllocV2; in main() typedef
132 TestHarness<P> h; in main() local
142 using U = CountCopiesAllocV1; in main() typedef
148 TestHarness<P> h; in main() local
158 using U = CountCopies; in main() typedef
164 TestHarness<P> h; in main() local
/aosp_15_r20/external/cronet/third_party/libc++/src/test/libcxx/utilities/utility/mem.res/mem.poly.allocator.class/mem.poly.allocator.mem/
H A Dconstruct_piecewise_pair.pass.cpp108 using U = CountCopiesAllocV1; in main() typedef
114 TestHarness<P> h; in main() local
123 using U = CountCopiesAllocV2; in main() typedef
129 TestHarness<P> h; in main() local
139 using U = CountCopiesAllocV1; in main() typedef
145 TestHarness<P> h; in main() local
155 using U = CountCopies; in main() typedef
161 TestHarness<P> h; in main() local
/aosp_15_r20/external/clang/test/CXX/class/class.static/class.static.data/
H A Dp3.cpp19 static const NonLit h = NonLit(); // expected-error {{must be initialized out of line}} member
38 struct U { struct
41 …static constexpr NonLit h = NonLit(); // expected-error {{cannot have non-literal type 'const NonL… member
46 template<typename T> constexpr T U<T>::d = T(); // expected-error {{non-literal type 'const NonLit'… argument
/aosp_15_r20/external/clang/test/SemaTemplate/
H A Dconstexpr-instantiate.cpp53 template<typename T> auto h(T t[f(sizeof(T))]) -> decltype(&*t) { in h() function
100 struct U : S<int> {}; struct
109 struct U : S<int> {}; // expected-note {{instantiation}} struct
179 struct U { static constexpr int size = 2; }; argument
181 void h() { F<char>::g<U>(); } in h() function
208 void h() { (void)sizeof(f(0)); } in h() function
H A Dalias-templates.cpp14 D<H> h; member
73 template<typename T> using U = int; typedef
116 template<typename T> using U = int; typedef
221 template<typename ...T, typename ...U> void h(X<T...> &) {} in h() function
222 template<typename ...T, typename ...U> void h(X<U...> &) {} // ok, different in h() function
H A Ddeduction.cpp106 void h (void) { g(f()); } // expected-error{{no matching function for call}} in h() function
174 using U = X<B...>; in f() typedef
175 using U = X<int>; in f() typedef
192 using U = BindBack<Z, int, int>::apply<char>; typedef
193 using U = Z<char, int, int>; typedef
/aosp_15_r20/external/clang/test/CXX/drs/
H A Ddr5xx.cpp69 union U { A a; }; union
266 template<> template<typename U> void A<int>::g(int, U) {} in g() argument
287 template<typename U> void A<char>::g(char, U) {} in g() argument
304 template<typename U> void A<int>::g(int, U) {} // expected-error {{should be empty}} in g() argument
319 …template<> template<typename U> void A<char>::g(char, U) {} // expected-warning {{extraneous templ… in g() argument
339 template<> template<typename U> template<typename V> void A<int>::B<U>::h() {} in h() function in dr531::nested::A::B
343 template<> template<> template<typename V> void A<int>::B<int>::h() {} in h() function in dr531::nested::A::B
344 template<> template<> template<> void A<int>::B<int>::h<int>() {} in h() function in dr531::nested::A::B
347 … template<> template<typename V> void A<int>::B<char>::h() {} // expected-error {{should be empty}} in h() function in dr531::nested::A::B
561 struct Y { typedef int U; }; typedef
[all …]
H A Ddr1xx.cpp132 void h() { in h() function
201 template<typename U> void f(A<sizeof(U)>) {} // expected-error {{redefinition}} in f()
363 static A h(A a) { return a; } in h() function
472 void h() { in h() function
479 void h() { C<B>().h(); } // ok in h() function
688 template<typename T> int h(T t) { return t.n; } // expected-error {{private}} in h() function
700 int h(X x) { return x.n; } in h() function
844 struct U : S { constexpr U() : S() {} }; in U() function
H A Ddr4xx.cpp195 template<> void h(int) { A::z(); } in h() function
483 template<class T> void S<T>::f(union U*) {} in f()
514 struct U {}; struct
567 template<int> struct U { struct
568 typedef int type;
611 void h() { in h() function
696 int B<U>::h() { in h() function in dr458::B
791 template<typename T> void h(T *) { T::error; } in h() function
889 void h() { in h() function
1067 void h() { in h() function
[all …]
H A Ddr0xx.cpp17 void h() { in h() function
145 struct X { typedef int U; }; typedef
191 namespace X { typedef int T; typedef int U; } // expected-note {{candidate}} typedef
192 namespace Y { typedef int T; typedef long U; } // expected-note {{candidate}} typedef
284 void (A::*h)() throw (int, char) = f; variable
389 void h() { f(&g); } // expected-error {{ambiguous}} in h() function
921 union U {}; // expected-note{{previous declaration is here}} union
993 union U { friend int f(U); }; union
1004 void h() { in h() function
/aosp_15_r20/external/clang/test/SemaCXX/
H A Duninitialized.cpp32 int h = bar(&h); variable
66 int h = bar(&h); in test_stuff() local
100 int h = bar(&h); in test_stuff() local
134 int h; in test_comma() local
523 class U { class
528 U() {} in U() function in U
529 U(bool (*)[1]) : b1() {} in U() function in U
530 U(bool (*)[2]) : b2(b1) {} in U() function in U
531 U(bool (*)[3]) : b1{ 5, &b1.x } {} in U() function in U
532 U(bool (*)[4]) : b1(getB()) {} in U() function in U
[all …]
H A Dconstant-expression-cxx1y.cpp45 constexpr int h(int n) { in h() function
85 struct U { struct
86 constexpr U(int n) { in U() function
233 constexpr bool h() { f(d); return check(d); } // expected-note {{in call}} in h() function
318 union U { union
559 union U { union
560 constexpr U() : y(4) {} in U() function
785 constexpr int h() { // expected-error {{never produces a constant}} in h() function
835 constexpr int h(int n) { in h() function
H A 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() argument
32 constexpr U u1(&u1.arr[2]); argument
35 int *e, int &f, vector_int g, U h) { in test_printing()
H A Dcxx1y-deduced-return-type.cpp165 void h() { in h() function
178 void h() { in h() function
191 void h() { in h() function
288 struct U : S { struct
345 void h() { return g(42); } // expected-error {{ambiguous}} in h() function
393 auto h(bool b) { in h() function
402 template<typename T> struct U { struct
405 int g() { return f(); } // expected-error {{cannot be used before it is defined}} in g()
H A Dtrailing-return-0x.cpp33 using U = auto (int) -> auto (*)(char) -> void; typedef
34 using U = void (*(int))(char); // ok typedef
60 auto h(T x, U y, V z) -> decltype(x + y + z) in h() function
/aosp_15_r20/libcore/ojluni/src/main/java/java/util/concurrent/
H A DConcurrentHashMap.java664 Node<K,V> find(int h, Object k) { in find()
696 static final int spread(int h) { in spread()
936 int h = spread(key.hashCode()); in get() local
1302 int h = 0; in hashCode() local
1481 int h = p.hash, j = h & mask; in readObject() local
1699 int h = spread(key.hashCode()); in computeIfAbsent() local
1811 int h = spread(key.hashCode()); in computeIfPresent() local
1906 int h = spread(key.hashCode()); in compute() local
2034 int h = spread(key.hashCode()); in merge() local
2243 Node<K,V> find(int h, Object k) { in find()
[all …]
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/gensrcs/libcore/ojluni/src/main/java/java/util/concurrent/
DConcurrentHashMap.java664 Node<K,V> find(int h, Object k) { in find()
696 static final int spread(int h) { in spread()
936 int h = spread(key.hashCode()); in get() local
1302 int h = 0; in hashCode() local
1481 int h = p.hash, j = h & mask; in readObject() local
1699 int h = spread(key.hashCode()); in computeIfAbsent() local
1811 int h = spread(key.hashCode()); in computeIfPresent() local
1906 int h = spread(key.hashCode()); in compute() local
2034 int h = spread(key.hashCode()); in merge() local
2243 Node<K,V> find(int h, Object k) { in find()
[all …]
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/19/libcore/ojluni/src/main/java/java/util/concurrent/
DConcurrentHashMap.java664 Node<K,V> find(int h, Object k) { in find()
696 static final int spread(int h) { in spread()
936 int h = spread(key.hashCode()); in get() local
1302 int h = 0; in hashCode() local
1481 int h = p.hash, j = h & mask; in readObject() local
1699 int h = spread(key.hashCode()); in computeIfAbsent() local
1811 int h = spread(key.hashCode()); in computeIfPresent() local
1906 int h = spread(key.hashCode()); in compute() local
2034 int h = spread(key.hashCode()); in merge() local
2243 Node<K,V> find(int h, Object k) { in find()
[all …]
/aosp_15_r20/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/
H A Dp4.cpp50 struct U { struct
51 constexpr U() in U() function
76 struct U; in V() argument
151 int h; // expected-note {{member not initialized by constructor}} member
200 T h; member
/aosp_15_r20/external/doclava/res/assets/templates/assets/
H A Djquery-resizable.min.js12 …)},D=/^[^<]*(<(.|\s)+>)[^>]*$|^#([\w-]+)$/,f=/^.[^:#\[\.,]*$/;o.fn=o.prototype={init:function(E,H)…
19 …[\\]+)+|[>+~])(\s*,\s*)?/g,L=0,H=Object.prototype.toString;var F=function(Y,U,ab,ac){ab=ab||[];U=U… argument
40 (function(c){c.widget("ui.resizable",c.extend({},c.ui.mouse,{_init:function(){var e=this,j=this.opt… argument
/aosp_15_r20/build/make/tools/droiddoc/templates-pdk/assets/
H A Djquery-resizable.min.js12 …)},D=/^[^<]*(<(.|\s)+>)[^>]*$|^#([\w-]+)$/,f=/^.[^:#\[\.,]*$/;o.fn=o.prototype={init:function(E,H)…
19 …[\\]+)+|[>+~])(\s*,\s*)?/g,L=0,H=Object.prototype.toString;var F=function(Y,U,ab,ac){ab=ab||[];U=U… argument
40 (function(c){c.widget("ui.resizable",c.extend({},c.ui.mouse,{_init:function(){var e=this,j=this.opt… argument
/aosp_15_r20/prebuilts/go/linux-x86/test/
Dblank.go30 type U struct { struct
31 _ struct{ a, b, c int }
58 func h(_ int, _ float64) { func
/aosp_15_r20/external/clang/test/Parser/
H A DDelayedTemplateParsing.cpp158 template<typename C> struct U<C, C> { struct
159 template<typename E> static int f() { in f()
179 static void h() { in h() function
/aosp_15_r20/hardware/google/gfxstream/third-party/glm/include/glm/gtc/
Dmatrix_transform.inl321 T const h = glm::cos(static_cast<T>(0.5) * rad) / glm::sin(static_cast<T>(0.5) * rad); local
348 T const h = glm::cos(static_cast<T>(0.5) * rad) / glm::sin(static_cast<T>(0.5) * rad); local
444 tvec4<U, P> const & viewport
470 tvec4<U, P> const & viewport
492 …<T, P> pickMatrix(tvec2<T, P> const & center, tvec2<T, P> const & delta, tvec4<U, P> const & viewp…
/aosp_15_r20/external/oboe/samples/RhythmGame/third_party/glm/gtc/
H A Dmatrix_transform.inl321 T const h = glm::cos(static_cast<T>(0.5) * rad) / glm::sin(static_cast<T>(0.5) * rad); local
348 T const h = glm::cos(static_cast<T>(0.5) * rad) / glm::sin(static_cast<T>(0.5) * rad); local
444 tvec4<U, P> const & viewport
470 tvec4<U, P> const & viewport
492 …<T, P> pickMatrix(tvec2<T, P> const & center, tvec2<T, P> const & delta, tvec4<U, P> const & viewp…

12345678910>>...24