/third_party/skia/third_party/externals/tint/src/writer/spirv/ |
D | builder_intrinsic_texture_test.cc | 39 R"( in expected_texture_overload() 50 R"( in expected_texture_overload() 54 R"( in expected_texture_overload() 60 R"( in expected_texture_overload() 72 R"( in expected_texture_overload() 76 R"( in expected_texture_overload() 81 R"( in expected_texture_overload() 93 R"( in expected_texture_overload() 97 R"( in expected_texture_overload() 102 R"( in expected_texture_overload() [all …]
|
/third_party/libpsl/fuzz/libpsl_load_fuzzer.in/ |
D | dcc216908a7d0ca9ca79ff0421b5576181b546cb | 22 …R��kk���R��������{����|������u����{��{����s����z��kRl���ó�lRk��y�����������u����m���z��… 23 �R��kc���R��������y�����{������{���z���뻇{����z����ƀ}��}o`UOOU`o|��}����������q���{u���|��� 25 �R��Rk��[R�� 26 Rk��kc���R[���R��kc���R������R����R����[R��kRR���R���R��� 27 cR��R���rR���Rk���Rr�[R���R��� Rk��kc��R[�� 28 …R��kc���R������� �y����z������~��{�������浂{��~����ܜw~��������~w��������}��~��x��������ܘ�… 29 �R����RR���R����R[�����R����Rr���rk����R����R����R�����R����R[���R����x�R����RRk�R����…
|
/third_party/boost/boost/safe_numerics/ |
D | checked_default.hpp | 48 typename R, 49 R Min, 50 R Max, 52 class F = make_checked_result<R>, 56 constexpr static checked_result<R> 58 return static_cast<R>(t); in cast() 63 typename R, 64 class F = make_checked_result<R>, 68 constexpr static checked_result<R> 69 minus(const R & t) noexcept { in minus() [all …]
|
D | checked_integer.hpp | 37 typename R, 38 R Min, 39 R Max, 44 R, 50 std::is_integral<R>::value 58 constexpr static checked_result<R> 83 checked_result<R>(static_cast<R>(t)) in cast_impl() 86 constexpr static checked_result<R> 103 checked_result<R>(static_cast<R>(t)) in cast_impl() 106 constexpr static checked_result<R> [all …]
|
/third_party/libsnd/docs/ |
D | formats.md | 15 …R/W | R/W | | R/W | … 16 …R/W | R/W | R/W | R/W | R/W … 17 …R/W | R/W | R/W | R/W | R/W … 18 …R/W | R/W | R/W | R/W | R/W … 19 …R/W | R/W | R/W | R/W | … 20 …R/W | R/W | R/W | R/W | … 21 …R/W | R/W | R/W | R/W | … 22 …R/W | R/W | R/W | R/W | … 23 …R/W | R/W | R/W | R/W | … 24 …R/W | | | | … [all …]
|
/third_party/typescript/tests/cases/compiler/ |
D | bluebirdStaticThis.ts | 5 export declare class Promise<R> implements Promise.Thenable<R> { 6 …constructor(callback: (resolve: (thenableOrResult: R | Promise.Thenable<R>) => void, reject: (erro… 7 …static try<R>(dit: typeof Promise, fn: () => Promise.Thenable<R>, args?: any[], ctx?: any): Promis… 8 static try<R>(dit: typeof Promise, fn: () => R, args?: any[], ctx?: any): Promise<R>; 10 …static attempt<R>(dit: typeof Promise, fn: () => Promise.Thenable<R>, args?: any[], ctx?: any): Pr… 11 static attempt<R>(dit: typeof Promise, fn: () => R, args?: any[], ctx?: any): Promise<R>; 16 static resolve<R>(dit: typeof Promise, value: Promise.Thenable<R>): Promise<R>; 17 static resolve<R>(dit: typeof Promise, value: R): Promise<R>; 20 static reject<R>(dit: typeof Promise, reason: any): Promise<R>; 22 static defer<R>(dit: typeof Promise): Promise.Resolver<R>; [all …]
|
/third_party/skia/third_party/externals/tint/src/writer/msl/ |
D | generator_impl_intrinsic_texture_test.cc | 30 return R"(int(texture.get_width()))"; in expected_texture_overload() 43 return R"(int2(texture.get_width(), texture.get_height()))"; in expected_texture_overload() 46 return R"(int3(texture.get_width(), texture.get_height(), texture.get_depth()))"; in expected_texture_overload() 55 return R"(int2(texture.get_width(1), texture.get_height(1)))"; in expected_texture_overload() 57 return R"(int3(texture.get_width(1), texture.get_height(1), texture.get_depth(1)))"; in expected_texture_overload() 59 return R"(texture.gather(sampler, float2(1.0f, 2.0f), int2(0), component::x))"; in expected_texture_overload() 61 return R"(texture.gather(sampler, float2(1.0f, 2.0f), int2(3, 4), component::x))"; in expected_texture_overload() 63 return R"(texture.gather(sampler, float2(1.0f, 2.0f), 3, int2(0), component::x))"; in expected_texture_overload() 65 return R"(texture.gather(sampler, float2(1.0f, 2.0f), 3, int2(4, 5), component::x))"; in expected_texture_overload() 67 return R"(texture.gather(sampler, float3(1.0f, 2.0f, 3.0f), component::x))"; in expected_texture_overload() [all …]
|
/third_party/typescript/tests/baselines/reference/ |
D | bluebirdStaticThis.types | 6 export declare class Promise<R> implements Promise.Thenable<R> { 7 >Promise : Promise<R> 10 …constructor(callback: (resolve: (thenableOrResult: R | Promise.Thenable<R>) => void, reject: (erro… 11 >callback : (resolve: (thenableOrResult: R | Promise.Thenable<R>) => void, reject: (error: any) => … 12 >resolve : (thenableOrResult: R | Promise.Thenable<R>) => void 13 >thenableOrResult : R | Promise.Thenable<R> 18 …static try<R>(dit: typeof Promise, fn: () => Promise.Thenable<R>, args?: any[], ctx?: any): Promis… 19 …R>(dit: typeof Promise, fn: () => Promise.Thenable<R>, args?: any[], ctx?: any): Promise<R>; <R>(d… 22 >fn : () => Promise.Thenable<R> 27 static try<R>(dit: typeof Promise, fn: () => R, args?: any[], ctx?: any): Promise<R>; [all …]
|
D | bluebirdStaticThis.js | 6 export declare class Promise<R> implements Promise.Thenable<R> { 7 …constructor(callback: (resolve: (thenableOrResult: R | Promise.Thenable<R>) => void, reject: (erro… 8 …static try<R>(dit: typeof Promise, fn: () => Promise.Thenable<R>, args?: any[], ctx?: any): Promis… 9 static try<R>(dit: typeof Promise, fn: () => R, args?: any[], ctx?: any): Promise<R>; 11 …static attempt<R>(dit: typeof Promise, fn: () => Promise.Thenable<R>, args?: any[], ctx?: any): Pr… 12 static attempt<R>(dit: typeof Promise, fn: () => R, args?: any[], ctx?: any): Promise<R>; 17 static resolve<R>(dit: typeof Promise, value: Promise.Thenable<R>): Promise<R>; 18 static resolve<R>(dit: typeof Promise, value: R): Promise<R>; 21 static reject<R>(dit: typeof Promise, reason: any): Promise<R>; 23 static defer<R>(dit: typeof Promise): Promise.Resolver<R>; [all …]
|
D | bluebirdStaticThis.errors.txt | 1 …rdStaticThis.ts(5,22): error TS2420: Class 'Promise<R>' incorrectly implements interface 'Thenable… 2 Property 'then' is missing in type 'Promise<R>' but required in type 'Thenable<R>'. 15 export declare class Promise<R> implements Promise.Thenable<R> { 17 !!! error TS2420: Class 'Promise<R>' incorrectly implements interface 'Thenable<R>'. 18 …error TS2420: Property 'then' is missing in type 'Promise<R>' but required in type 'Thenable<R>'. 20 …constructor(callback: (resolve: (thenableOrResult: R | Promise.Thenable<R>) => void, reject: (erro… 21 …static try<R>(dit: typeof Promise, fn: () => Promise.Thenable<R>, args?: any[], ctx?: any): Promis… 22 static try<R>(dit: typeof Promise, fn: () => R, args?: any[], ctx?: any): Promise<R>; 24 …static attempt<R>(dit: typeof Promise, fn: () => Promise.Thenable<R>, args?: any[], ctx?: any): Pr… 25 static attempt<R>(dit: typeof Promise, fn: () => R, args?: any[], ctx?: any): Promise<R>; [all …]
|
/third_party/skia/third_party/externals/tint/src/writer/hlsl/ |
D | generator_impl_intrinsic_texture_test.cc | 43 R"(int tint_tmp; in expected_texture_overload() 52 R"(int2 tint_tmp; in expected_texture_overload() 60 R"(int3 tint_tmp; in expected_texture_overload() 70 R"(int3 tint_tmp; in expected_texture_overload() 78 R"(int3 tint_tmp; in expected_texture_overload() 86 R"(int2 tint_tmp; in expected_texture_overload() 94 R"(int3 tint_tmp; in expected_texture_overload() 102 R"(int3 tint_tmp; in expected_texture_overload() 110 R"(int4 tint_tmp; in expected_texture_overload() 117 R"(int4 tint_tmp; in expected_texture_overload() [all …]
|
/third_party/boost/boost/asio/execution/ |
D | set_value.hpp | 62 template <typename R, typename... Vs> 91 template <typename R, typename Vs, typename = void> 99 template <typename R, typename Vs> 100 struct call_traits<R, Vs, 103 set_value_member<R, Vs>::is_valid 106 set_value_member<R, Vs> 111 template <typename R, typename Vs> 112 struct call_traits<R, Vs, 115 !set_value_member<R, Vs>::is_valid 117 set_value_free<R, Vs>::is_valid [all …]
|
D | connect.hpp | 107 template <typename S, typename R> 114 template <typename S, typename R> 126 template <typename S, typename R> 127 using connect_result_t = typename connect_result<S, R>::type; 162 template <typename S, typename R, typename = void> 170 template <typename S, typename R> 171 struct call_traits<S, void(R), 174 connect_member<S, R>::is_valid 176 is_operation_state<typename connect_member<S, R>::result_type>::value 181 connect_member<S, R> [all …]
|
D | submit.hpp | 100 template <typename S, typename R> 130 template <typename S, typename R, typename = void> 138 template <typename S, typename R> 139 struct call_traits<S, void(R), 142 submit_member<S, R>::is_valid 144 is_sender_to<S, R>::value 147 submit_member<S, R> 152 template <typename S, typename R> 153 struct call_traits<S, void(R), 156 !submit_member<S, R>::is_valid [all …]
|
D | set_done.hpp | 59 template <typename R> 88 template <typename R, typename = void> 96 template <typename R> 97 struct call_traits<R, 100 set_done_member<R>::is_valid 103 set_done_member<R> 108 template <typename R> 109 struct call_traits<R, 112 !set_done_member<R>::is_valid 114 set_done_free<R>::is_valid [all …]
|
D | start.hpp | 56 template <typename R> 85 template <typename R, typename = void> 93 template <typename R> 94 struct call_traits<R, 97 start_member<R>::is_valid 100 start_member<R> 105 template <typename R> 106 struct call_traits<R, 109 !start_member<R>::is_valid 111 start_free<R>::is_valid [all …]
|
/third_party/giflib/tests/ |
D | welcome2.rgb | 1 …RJJJJA91ZJRZJRZJRZJRZJRZJRZJR)19AJRRRRRJJA91)ZJRZJ…
|
/third_party/boost/boost/phoenix/stl/algorithm/ |
D | querying.hpp | 42 template <typename This, class R, class T> 43 struct result<This(R&, T&)> 44 : range_iterator<R> 47 template<class R, class T> 48 typename range_iterator<R>::type 49 execute(R& r, T const& x, mpl::true_) const in execute() 54 template<class R, class T> 55 typename range_iterator<R>::type 56 execute(R& r, T const& x, mpl::false_) const in execute() 61 template<class R, class T> [all …]
|
/third_party/ffmpeg/tests/ref/fate/ |
D | parseutils | 29 bikeshed -> R(80) G(64) B(140) A(59) 30 RaNdOm -> R(185) G(88) B(148) A(94) 32 red -> R(255) G(0) B(0) A(255) 34 RED -> R(255) G(0) B(0) A(255) 35 Violet -> R(238) G(130) B(238) A(255) 36 Yellow -> R(255) G(255) B(0) A(255) 37 Red -> R(255) G(0) B(0) A(255) 38 0x000000 -> R(0) G(0) B(0) A(255) 40 0xff000000 -> R(255) G(0) B(0) A(0) 41 0x3e34ff -> R(62) G(52) B(255) A(255) [all …]
|
/third_party/skia/third_party/externals/tint/src/writer/glsl/ |
D | generator_impl_intrinsic_texture_test.cc | 67 return R"(textureGather(tint_symbol, vec2(1.0f, 2.0f), 0))"; in expected_texture_overload() 69 return R"(textureGatherOffset(tint_symbol, vec2(1.0f, 2.0f), ivec2(3, 4), 0))"; in expected_texture_overload() 71 return R"(textureGather(tint_symbol, vec3(1.0f, 2.0f, float(3)), 0))"; in expected_texture_overload() 73 return R"(textureGatherOffset(tint_symbol, vec3(1.0f, 2.0f, float(3)), ivec2(4, 5), 0))"; in expected_texture_overload() 75 return R"(textureGather(tint_symbol, vec3(1.0f, 2.0f, 3.0f), 0))"; in expected_texture_overload() 77 return R"(textureGather(tint_symbol, vec4(1.0f, 2.0f, 3.0f, float(4)), 0))"; in expected_texture_overload() 79 return R"(textureGather(tint_symbol, vec2(1.0f, 2.0f)))"; in expected_texture_overload() 81 return R"(textureGatherOffset(tint_symbol, vec2(1.0f, 2.0f), ivec2(3, 4)))"; in expected_texture_overload() 83 return R"(textureGather(tint_symbol, vec3(1.0f, 2.0f, float(3))))"; in expected_texture_overload() 85 return R"(textureGatherOffset(tint_symbol, vec3(1.0f, 2.0f, float(3)), ivec2(4, 5)))"; in expected_texture_overload() [all …]
|
/third_party/boost/boost/type_traits/ |
D | has_dereference.hpp | 34 template <class R> 35 struct has_dereference<void*, R> : public false_type {}; 41 template <class R> 42 struct has_dereference<const void*, R> : public false_type {}; 48 template <class R> 49 struct has_dereference<volatile void*, R> : public false_type {}; 55 template <class R> 56 struct has_dereference<const volatile void*, R> : public false_type {}; 62 template <class R> 63 struct has_dereference<void*const, R> : public false_type {}; [all …]
|
/third_party/ltp/testcases/kernel/syscalls/ptrace/ |
D | ptrace04.c | 27 #define R(r) { .name = "PT_" #r, .off = PT_##r }, macro 33 R(ORIG_R0) R(ORIG_P0) 34 R(R0) R(R1) R(R2) R(R3) R(R4) R(R5) R(R6) R(R7) 35 R(P0) R(P1) R(P2) R(P3) R(P4) R(P5) R(FP) R(USP) 36 R(I0) R(I1) R(I2) R(I3) 37 R(M0) R(M1) R(M2) R(M3) 38 R(L0) R(L1) R(L2) R(L3) 39 R(B0) R(B1) R(B2) R(B3) 40 R(A0X) R(A0W) R(A1X) R(A1W) 41 R(LC0) R(LC1) R(LT0) R(LT1) R(LB0) R(LB1) [all …]
|
/third_party/boost/boost/bind/ |
D | mem_fn_vw.hpp | 15 template<class R, class T> struct BOOST_MEM_FN_NAME(mf0): public mf<R>::BOOST_NESTED_TEMPLATE BOOST… in BOOST_MEM_FN_NAME() 17 typedef R (BOOST_MEM_FN_CC T::*F) (); in BOOST_MEM_FN_NAME() 18 …explicit BOOST_MEM_FN_NAME(mf0)(F f): mf<R>::BOOST_NESTED_TEMPLATE BOOST_MEM_FN_NAME2(mf0)<R, T, F… in BOOST_MEM_FN_NAME() 21 template<class R, class T> struct BOOST_MEM_FN_NAME(cmf0): public mf<R>::BOOST_NESTED_TEMPLATE BOOS… in BOOST_MEM_FN_NAME() 23 typedef R (BOOST_MEM_FN_CC T::*F) () const; in BOOST_MEM_FN_NAME() 24 …explicit BOOST_MEM_FN_NAME(cmf0)(F f): mf<R>::BOOST_NESTED_TEMPLATE BOOST_MEM_FN_NAME2(cmf0)<R, T,… in BOOST_MEM_FN_NAME() 28 …emplate<class R, class T, class A1> struct BOOST_MEM_FN_NAME(mf1): public mf<R>::BOOST_NESTED_TEMP… in BOOST_MEM_FN_NAME() 30 typedef R (BOOST_MEM_FN_CC T::*F) (A1); in BOOST_MEM_FN_NAME() 31 …explicit BOOST_MEM_FN_NAME(mf1)(F f): mf<R>::BOOST_NESTED_TEMPLATE BOOST_MEM_FN_NAME2(mf1)<R, T, A… in BOOST_MEM_FN_NAME() 34 …mplate<class R, class T, class A1> struct BOOST_MEM_FN_NAME(cmf1): public mf<R>::BOOST_NESTED_TEMP… in BOOST_MEM_FN_NAME() [all …]
|
/third_party/boost/boost/type_traits/detail/ |
D | is_rvalue_reference_msvc10_fix.hpp | 14 template <class R> struct is_rvalue_reference<R(&&)()> : public true_type {}; 15 template <class R> struct is_rvalue_reference<R(&&)(...)> : public true_type {}; 16 template <class R, class Arg1> struct is_rvalue_reference<R(&&)(Arg1)> : public true_type {}; 17 template <class R, class Arg1> struct is_rvalue_reference<R(&&)(Arg1, ...)> : public true_type {}; 18 template <class R, class Arg1, class Arg2> struct is_rvalue_reference<R(&&)(Arg1, Arg2)> : public t… 19 template <class R, class Arg1, class Arg2> struct is_rvalue_reference<R(&&)(Arg1, Arg2, ...)> : pub… 20 template <class R, class Arg1, class Arg2, class Arg3> struct is_rvalue_reference<R(&&)(Arg1, Arg2,… 21 template <class R, class Arg1, class Arg2, class Arg3> struct is_rvalue_reference<R(&&)(Arg1, Arg2,… 22 template <class R, class Arg1, class Arg2, class Arg3, class Arg4> struct is_rvalue_reference<R(&&)… 23 template <class R, class Arg1, class Arg2, class Arg3, class Arg4> struct is_rvalue_reference<R(&&)… [all …]
|
/third_party/boost/boost/proto/transform/detail/preprocessed/ |
D | when.hpp | 34 template<typename Grammar, typename R > 35 struct when<Grammar, R()> 36 : detail::when_impl<Grammar, R, R()> 64 template<typename Grammar, typename R , typename A0> 65 struct when<Grammar, R(A0)> 66 : detail::when_impl<Grammar, R, R(A0)> 94 template<typename Grammar, typename R , typename A0> 95 struct when<Grammar, R(A0...)> 96 : detail::when_impl<Grammar, R, R(A0...)> 124 template<typename Grammar, typename R , typename A0 , typename A1> [all …]
|