Home
last modified time | relevance | path

Searched refs:Second (Results 1 – 25 of 776) sorted by relevance

12345678910>>...32

/third_party/vk-gl-cts/framework/common/
DtcuEither.hpp39 template<typename First, typename Second>
44 Either (const Second& second);
47 Either (const Either<First, Second>& other);
48 Either& operator= (const Either<First, Second>& other);
51 Either& operator= (const Second& second);
57 const Second& getSecond (void) const;
73 Second* m_second;
78 deUint8 m_data[sizeof(First) > sizeof(Second) ? sizeof(First) : sizeof(Second)];
86 template<typename Type, typename First, typename Second>
89 template<typename First, typename Second>
[all …]
/third_party/boost/libs/hana/include/boost/hana/
Dpair.hpp39 template <typename First, typename Second>
41 struct __declspec(empty_bases) pair : detail::operators::adl<pair<First, Second>>
43 struct pair : detail::operators::adl<pair<First, Second>>
46 , private detail::ebo<detail::pix<1>, Second>
51 BOOST_HANA_TT_IS_CONSTRUCTIBLE(Second, dummy...)
55 , detail::ebo<detail::pix<1>, Second>() in pair()
61 BOOST_HANA_TT_IS_CONSTRUCTIBLE(Second, Second const&, dummy...)
63 constexpr pair(First const& fst, Second const& snd) in pair()
65 , detail::ebo<detail::pix<1>, Second>(snd) in pair()
70 BOOST_HANA_TT_IS_CONVERTIBLE(U&&, Second)
[all …]
/third_party/boost/boost/hana/
Dpair.hpp39 template <typename First, typename Second>
41 struct __declspec(empty_bases) pair : detail::operators::adl<pair<First, Second>>
43 struct pair : detail::operators::adl<pair<First, Second>>
46 , private detail::ebo<detail::pix<1>, Second>
51 BOOST_HANA_TT_IS_CONSTRUCTIBLE(Second, dummy...)
55 , detail::ebo<detail::pix<1>, Second>() in pair()
61 BOOST_HANA_TT_IS_CONSTRUCTIBLE(Second, Second const&, dummy...)
63 constexpr pair(First const& fst, Second const& snd) in pair()
65 , detail::ebo<detail::pix<1>, Second>(snd) in pair()
70 BOOST_HANA_TT_IS_CONVERTIBLE(U&&, Second)
[all …]
/third_party/boost/boost/fusion/support/
Dpair.hpp29 template <typename First, typename Second>
43 : second(BOOST_FUSION_FWD_ELEM(Second, rhs.second)) {} in pair()
47 pair(typename detail::call_param<Second>::type val) in pair()
55 , typename boost::enable_if<is_convertible<Second2, Second> >::type* /*dummy*/ = 0 in pair()
56 ) : second(BOOST_FUSION_FWD_ELEM(Second, val)) {} in pair()
83 second = BOOST_FUSION_FWD_ELEM(Second, rhs.second); in operator =()
89 typedef Second second_type;
90 Second second;
95 template<typename First, typename Second>
99 typename detail::as_fusion_element<Second>::type> type;
[all …]
/third_party/boost/libs/concept_check/test/
Dconcept_check_test.cpp64 typedef equal_op_second_archetype<> Second; in main() typedef
65 function_requires< EqualOp<First, Second> >(); in main()
69 typedef not_equal_op_second_archetype<> Second; in main() typedef
70 function_requires< NotEqualOp<First, Second> >(); in main()
74 typedef less_than_op_second_archetype<> Second; in main() typedef
75 function_requires< LessThanOp<First, Second> >(); in main()
79 typedef less_equal_op_second_archetype<> Second; in main() typedef
80 function_requires< LessEqualOp<First, Second> >(); in main()
84 typedef greater_than_op_second_archetype<> Second; in main() typedef
85 function_requires< GreaterThanOp<First, Second> >(); in main()
[all …]
Dold_concepts.hpp41 template <class Func, class Return, class First, class Second>
49 Second second;
54 template <class First, class Second> \
61 Second b; \
/third_party/typescript/tests/baselines/reference/
DreexportedMissingAlias.types8 import * as Second from './second';
9 >Second : typeof Second
11 export = Second;
12 >Second : typeof Second
DreexportedMissingAlias.symbols7 import * as Second from './second';
8 >Second : Symbol(Second, Decl(first.d.ts, 0, 6))
10 export = Second;
11 >Second : Symbol(Second, Decl(first.d.ts, 0, 6))
DjsDeclarationsEnumTag.js11 export const Second = { variable
54 exports.ff = exports.consume = exports.Fs = exports.Second = exports.Target = void 0;
64 exports.Second = {
111 export function consume(t: Target, s: Second, f: Fs): void;
121 export type Second = number;
122 export namespace Second {
DenumTag.types29 const Second = {
30 >Second : { MISTAKE: string; OK: number; FINE: number; }
75 * @param {Second} s
79 >consume : (t: Target, s: Second, f: Fs) => void
113 v = Second.MISTAKE // meh..ok, I guess?
114 >v = Second.MISTAKE : string
116 >Second.MISTAKE : string
117 >Second : { MISTAKE: string; OK: number; FINE: number; }
DenumTag.symbols23 const Second = {
24 >Second : Symbol(Second, Decl(a.js, 10, 5), Decl(a.js, 9, 4))
57 * @param {Second} s
92 v = Second.MISTAKE // meh..ok, I guess?
94 >Second.MISTAKE : Symbol(MISTAKE, Decl(a.js, 10, 16))
95 >Second : Symbol(Second, Decl(a.js, 10, 5), Decl(a.js, 9, 4))
/third_party/boost/boost/hof/detail/
Dcompressed_pair.hpp24 template<class First, class Second, class=void>
82 class Second
84 struct compressed_pair<First, Second>
85 : pair_holder<0, First, Second>::type, pair_holder<1, Second, First>::type
87 typedef typename pair_holder<0, First, Second>::type first_base;
88 typedef typename pair_holder<1, Second, First>::type second_base;
91 BOOST_HOF_ENABLE_IF_CONSTRUCTIBLE(Second, Y&&)
113 constexpr const Second& second(Xs&&... xs) const noexcept in second()
/third_party/boost/boost/proto/functional/std/
Dutility.hpp31 template<typename This, typename First, typename Second>
32 struct result<This(First, Second)>
37 , typename remove_const<typename remove_reference<Second>::type>::type
42 template<typename First, typename Second>
43 std::pair<First, Second> operator()(First const &first, Second const &second) const in operator ()()
/third_party/protobuf/src/google/protobuf/stubs/
Dhash.h92 template <typename First, typename Second>
93 struct hash<std::pair<First, Second> > {
94 inline size_t operator()(const std::pair<First, Second>& key) const {
96 size_t second_hash = hash<Second>()(key.second);
105 inline bool operator()(const std::pair<First, Second>& a,
106 const std::pair<First, Second>& b) const {
/third_party/boost/boost/proto/
Dgenerate.hpp317 template<typename First, typename Second>
329 typename Second::template result<
330 Second(typename First::template result<First(Expr)>::type)
339 typename Second::template result<
340 Second(typename First::template result<First(Expr)>::type)
349 typename Second::template result<
350 Second(typename First::template result<First(Expr)>::type)
361 return Second()(First()(e)); in operator ()()
404 template<typename First, typename Second>
405 struct is_callable<compose_generators<First, Second> >
/third_party/boost/libs/safe_numerics/test/
Dtest_checked_equal_to_constexpr.cpp40 template<typename T, typename First, typename Second>
43 static const std::size_t j = Second();
52 template<typename T, typename First, typename Second>
55 static const std::size_t j = Second();
Dtest_checked_less_than_constexpr.cpp40 template<typename T, typename First, typename Second>
43 static const std::size_t j = Second();
52 template<typename T, typename First, typename Second>
55 static const std::size_t j = Second();
Dtest_checked_subtract_constexpr.cpp41 template<typename T, typename First, typename Second>
44 static const std::size_t j = Second();
53 template<typename T, typename First, typename Second>
56 static const std::size_t j = Second();
Dtest_checked_xor_constexpr.cpp44 template<typename T, typename First, typename Second>
47 static const std::size_t j = Second();
55 template<typename T, typename First, typename Second>
58 static const std::size_t j = Second();
Dtest_checked_divide_constexpr.cpp38 template<typename T, typename First, typename Second>
41 static const std::size_t j = Second();
50 template<typename T, typename First, typename Second>
53 static const std::size_t j = Second();
Dtest_checked_modulus_constexpr.cpp37 template<typename T, typename First, typename Second>
40 static const std::size_t j = Second();
49 template<typename T, typename First, typename Second>
52 static const std::size_t j = Second();
Dtest_checked_add_constexpr.cpp35 template<typename T, typename First, typename Second>
38 static const std::size_t j = Second();
47 template<typename T, typename First, typename Second>
50 static const std::size_t j = Second();
Dtest_checked_or_constexpr.cpp41 template<typename T, typename First, typename Second>
44 static const std::size_t j = Second();
53 template<typename T, typename First, typename Second>
56 static const std::size_t j = Second();
Dtest_checked_and_constexpr.cpp35 template<typename T, typename First, typename Second>
38 static const std::size_t j = Second();
47 template<typename T, typename First, typename Second>
50 static const std::size_t j = Second();
Dtest_checked_multiply_constexpr.cpp43 template<typename T, typename First, typename Second>
46 static const std::size_t j = Second();
55 template<typename T, typename First, typename Second>
58 static const std::size_t j = Second();

12345678910>>...32