Home
last modified time | relevance | path

Searched refs:Type (Results 1 – 25 of 6803) sorted by relevance

12345678910>>...273

/third_party/boost/boost/icl/concept/
Dinterval.hpp40 template<class Type>
41 inline typename enable_if<is_interval<Type>, bool>::type
42 domain_less(const typename interval_traits<Type>::domain_type& left, in domain_less()
43 const typename interval_traits<Type>::domain_type& right) in domain_less()
45 return typename interval_traits<Type>::domain_compare()(left, right); in domain_less()
48 template<class Type>
49 inline typename enable_if<is_interval<Type>, bool>::type
50 domain_less_equal(const typename interval_traits<Type>::domain_type& left, in domain_less_equal()
51 const typename interval_traits<Type>::domain_type& right) in domain_less_equal()
53 return !(typename interval_traits<Type>::domain_compare()(right, left)); in domain_less_equal()
[all …]
Delement_map.hpp28 template<class Type, class Predicate>
29 typename enable_if<is_associative_element_container<Type>, Type>::type&
30 erase_if(const Predicate& pred, Type& object);
40 template<class Type>
41 typename enable_if<is_element_map<Type>, bool>::type
42 within(const typename Type::element_type& value_pair, const Type& super) in within()
44 typedef typename Type::const_iterator const_iterator; in within()
52 template<class Type>
53 typename enable_if<is_element_map<Type>, bool>::type
54 contains(const Type& super, const typename Type::element_type& value_pair) in contains()
[all …]
Dinterval_associator.hpp40 template<class Type>
41 inline typename enable_if<is_interval_container<Type>, bool>::type
42 operator == (const Type& left, const Type& right) in operator ==()
47 template<class Type>
48 inline typename enable_if<is_interval_container<Type>, bool>::type
49 operator < (const Type& left, const Type& right) in operator <()
51 typedef typename Type::segment_compare segment_compare; in operator <()
109 template<class Type>
110 typename enable_if<is_interval_container<Type>, std::size_t>::type
111 iterative_size(const Type& object) in iterative_size()
[all …]
Delement_associator.hpp25 template<class Type>
26 typename enable_if<is_element_container<Type>, std::size_t>::type
27 iterative_size(const Type& object) in iterative_size()
32 template<class Type>
33 typename enable_if<is_associative_element_container<Type>, typename Type::size_type>::type
34 size(const Type& object) in size()
39 template<class Type>
40 typename enable_if<is_associative_element_container<Type>, typename Type::size_type>::type
41 cardinality(const Type& object) in cardinality()
54 template<class Type>
[all …]
Dinterval_map.hpp25 template<class Type>
26 inline typename enable_if<is_interval_map<Type>, typename Type::segment_type>::type
27 make_segment(const typename Type::element_type& element) in make_segment()
29 typedef typename Type::interval_type interval_type; in make_segment()
30 typedef typename Type::segment_type segment_type; in make_segment()
41 template<class Type>
42 typename enable_if<is_interval_map<Type>, bool>::type
43 contains(const Type& super, const typename Type::element_type& key_value_pair) in contains()
45 typedef typename Type::const_iterator const_iterator; in contains()
50 template<class Type>
[all …]
Dinterval_set.hpp26 template<class Type>
27 typename enable_if<is_interval_set<Type>, bool>::type
28 contains(const Type& super, const typename Type::element_type& element) in contains()
33 template<class Type>
34 typename enable_if<is_interval_set<Type>, bool>::type
35 contains(const Type& super, const typename Type::segment_type& inter_val) in contains()
37 typedef typename Type::const_iterator const_iterator; in contains()
53 template<class Type, class OperandT>
54 typename enable_if<has_same_concept<is_interval_set, Type, OperandT>,
56 contains(const Type& super, const OperandT& sub) in contains()
[all …]
Delement_set.hpp27 template <class Type>
28 typename enable_if<is_element_set<Type>, Type>::type&
29 add(Type& object, const typename Type::value_type& operand) in add()
37 template <class Type>
38 typename enable_if<is_element_set<Type>, typename Type::iterator>::type
39 add(Type& object, typename Type::iterator prior, in add()
40 const typename Type::value_type& operand) in add()
50 template<class Type>
51 typename enable_if<is_element_set<Type>, Type>::type&
52 subtract(Type& object, const typename Type::value_type& operand) in subtract()
[all …]
Dinterval_associator_base.hpp24 template<class Type> inline
25 typename enable_if<mpl::and_< is_interval_container<Type>
26 , is_discrete<typename domain_type_of<Type>::type>
28 , typename Type::const_iterator>::type
29 find(const Type& object, const typename domain_type_of<Type>::type& key_val) in find()
32 typedef typename Type::interval_type interval_type; in find()
36 template<class Type> inline
37 typename enable_if<mpl::and_< is_interval_container<Type>
38 , is_continuous<typename domain_type_of<Type>::type>
39 , has_dynamic_bounds<typename interval_type_of<Type>::type>
[all …]
/third_party/flutter/skia/src/sksl/
DSkSLContext.h22 : fInvalid_Type(new Type("<INVALID>")) in Context()
23 , fVoid_Type(new Type("void")) in Context()
24 , fNull_Type(new Type("null")) in Context()
25 , fFloatLiteral_Type(new Type("$floatLiteral", Type::kFloat_NumberKind, 3)) in Context()
26 , fIntLiteral_Type(new Type("$intLiteral", Type::kSigned_NumberKind, 1)) in Context()
27 , fDouble_Type(new Type("double", Type::kFloat_NumberKind, 6, true)) in Context()
28 , fDouble2_Type(new Type("double2", *fDouble_Type, 2)) in Context()
29 , fDouble3_Type(new Type("double3", *fDouble_Type, 3)) in Context()
30 , fDouble4_Type(new Type("double4", *fDouble_Type, 4)) in Context()
31 , fFloat_Type(new Type("float", Type::kFloat_NumberKind, 5, true)) in Context()
[all …]
/third_party/skia/third_party/externals/tint/src/reader/wgsl/
Dtoken.cc22 std::string Token::TypeToName(Type type) { in TypeToName()
24 case Token::Type::kError: in TypeToName()
26 case Token::Type::kEOF: in TypeToName()
28 case Token::Type::kIdentifier: in TypeToName()
30 case Token::Type::kFloatLiteral: in TypeToName()
32 case Token::Type::kSintLiteral: in TypeToName()
34 case Token::Type::kUintLiteral: in TypeToName()
36 case Token::Type::kUninitialized: in TypeToName()
39 case Token::Type::kAnd: in TypeToName()
41 case Token::Type::kAndAnd: in TypeToName()
[all …]
/third_party/boost/boost/icl/
Dfunctors.hpp21 template <typename Type> struct identity_based_inplace_combine
23 typedef Type& first_argument_type;
24 typedef const Type& second_argument_type;
26 … inline static Type identity_element() { return boost::icl::identity_element<Type>::value(); } in identity_element()
30 template <typename Type> struct unit_element_based_inplace_combine
32 typedef Type& first_argument_type;
33 typedef const Type& second_argument_type;
35 inline static Type identity_element() { return boost::icl::unit_element<Type>::value(); } in identity_element()
39 template <typename Type> struct inplace_identity
40 : public identity_based_inplace_combine<Type>
[all …]
/third_party/skia/src/sksl/
DSkSLBuiltinTypes.h24 const std::unique_ptr<Type> fFloat;
25 const std::unique_ptr<Type> fFloat2;
26 const std::unique_ptr<Type> fFloat3;
27 const std::unique_ptr<Type> fFloat4;
29 const std::unique_ptr<Type> fHalf;
30 const std::unique_ptr<Type> fHalf2;
31 const std::unique_ptr<Type> fHalf3;
32 const std::unique_ptr<Type> fHalf4;
34 const std::unique_ptr<Type> fInt;
35 const std::unique_ptr<Type> fInt2;
[all …]
DSkSLBuiltinTypes.cpp21 : fFloat(Type::MakeScalarType( in BuiltinTypes()
22 "float", "f", Type::NumberKind::kFloat, /*priority=*/10, /*bitWidth=*/32)) in BuiltinTypes()
23 , fFloat2(Type::MakeVectorType("float2", "f2", *fFloat, /*columns=*/2)) in BuiltinTypes()
24 , fFloat3(Type::MakeVectorType("float3", "f3", *fFloat, /*columns=*/3)) in BuiltinTypes()
25 , fFloat4(Type::MakeVectorType("float4", "f4", *fFloat, /*columns=*/4)) in BuiltinTypes()
26 , fHalf(Type::MakeScalarType( in BuiltinTypes()
27 "half", "h", Type::NumberKind::kFloat, /*priority=*/9, /*bitWidth=*/16)) in BuiltinTypes()
28 , fHalf2(Type::MakeVectorType("half2", "h2", *fHalf, /*columns=*/2)) in BuiltinTypes()
29 , fHalf3(Type::MakeVectorType("half3", "h3", *fHalf, /*columns=*/3)) in BuiltinTypes()
30 , fHalf4(Type::MakeVectorType("half4", "h4", *fHalf, /*columns=*/4)) in BuiltinTypes()
[all …]
/third_party/boost/libs/poly_collection/test/
Dtest_registration.cpp20 template<typename PolyCollection,typename Type>
29 BOOST_TEST(!p.is_registered(typeid(Type))); in test_registration()
30 BOOST_TEST(!p.template is_registered<Type>()); in test_registration()
32 [&]{(void)p.begin(typeid(Type));}, in test_registration()
33 [&]{(void)p.end(typeid(Type));}, in test_registration()
34 [&]{(void)cp.begin(typeid(Type));}, in test_registration()
35 [&]{(void)cp.end(typeid(Type));}, in test_registration()
36 [&]{(void)p.cbegin(typeid(Type));}, in test_registration()
37 [&]{(void)p.cend(typeid(Type));}, in test_registration()
38 [&]{(void)p.template begin<Type>();}, in test_registration()
[all …]
/third_party/flutter/skia/third_party/externals/angle2/src/common/
Dvector_utils.h19 template <size_t Dimension, typename Type>
34 template <size_t Dimension, typename Type>
38 using VectorN = Vector<Dimension, Type>;
42 explicit VectorBase(Type element);
51 const Type *data() const { return mData; } in data()
52 Type *data() { return mData; } in data()
56 static VectorN Load(const Type *source);
57 static void Store(const VectorN &source, Type *destination);
60 Type &operator[](size_t i) { return mData[i]; }
61 const Type &operator[](size_t i) const { return mData[i]; }
[all …]
/third_party/skia/third_party/externals/angle2/src/common/
Dvector_utils.h19 template <size_t Dimension, typename Type>
34 template <size_t Dimension, typename Type>
38 using VectorN = Vector<Dimension, Type>;
42 explicit VectorBase(Type element);
51 const Type *data() const { return mData; } in data()
52 Type *data() { return mData; } in data()
56 static VectorN Load(const Type *source);
57 static void Store(const VectorN &source, Type *destination);
60 Type &operator[](size_t i) { return mData[i]; }
61 const Type &operator[](size_t i) const { return mData[i]; }
[all …]
/third_party/boost/boost/icl/type_traits/
Dinfinity.hpp22 template<class Type> struct has_std_infinity
26 value = ( is_numeric<Type>::value
27 && std::numeric_limits<Type>::has_infinity
32 template<class Type> struct has_max_infinity
36 value = ( is_numeric<Type>::value
37 && ! std::numeric_limits<Type>::has_infinity
43 template <class Type, bool has_std_inf=false, bool has_std_max=false>
46 template <class Type, bool has_std_max>
47 struct get_numeric_infinity<Type, true, has_std_max>
50 static Type value() in value()
[all …]
Dis_interval.hpp18 template <class Type>
25 template <class Type> struct is_interval
27 typedef is_interval<Type> type;
29 value = ((interval_bound_type<Type>::value) < interval_bounds::undefined));
33 template <class Type> struct has_static_bounds
35 typedef has_static_bounds<Type> type;
37 value = ((interval_bound_type<Type>::value) < interval_bounds::dynamic));
40 template <class Type> struct has_dynamic_bounds
42 typedef has_dynamic_bounds<Type> type;
44 value = (interval_bound_type<Type>::value == interval_bounds::dynamic));
[all …]
/third_party/skia/third_party/externals/angle2/src/compiler/translator/TranslatorMetalDirect/
DPipeline.cpp33 case Type::VertexIn: in uses()
43 case Type::VertexOut: in uses()
59 case Type::FragmentIn: in uses()
73 case Type::FragmentOut: in uses()
86 case Type::UserUniforms: in uses()
95 case Type::NonConstantGlobals: in uses()
104 case Type::InvocationVertexGlobals: in uses()
113 case Type::InvocationFragmentGlobals: in uses()
124 case Type::UniformBuffer: in uses()
132 case Type::AngleUniforms: in uses()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/MCTargetDesc/
DPPCELFObjectWriter.cpp32 unsigned Type) const override;
79 unsigned Type; in getRelocType() local
89 Type = ELF::R_PPC_REL24; in getRelocType()
92 Type = ELF::R_PPC_PLTREL24; in getRelocType()
95 Type = ELF::R_PPC_LOCAL24PC; in getRelocType()
101 Type = ELF::R_PPC_REL14; in getRelocType()
107 Type = ELF::R_PPC_REL16; in getRelocType()
110 Type = ELF::R_PPC_REL16_LO; in getRelocType()
113 Type = ELF::R_PPC_REL16_HI; in getRelocType()
116 Type = ELF::R_PPC_REL16_HA; in getRelocType()
[all …]
/third_party/boost/boost/multi_index/
Dmem_fun.hpp53 class Class,typename Type,
58 typedef typename remove_reference<Type>::type result_type;
64 is_convertible<const ChainedPtr&,const Class&>,Type>::type
66 Type
74 Type operator()(const Class& x)const in operator ()()
79 Type operator()(const reference_wrapper<const Class>& x)const in operator ()()
84 Type operator()(const reference_wrapper<Class>& x)const in operator ()()
91 class Class,typename Type,
96 typedef typename remove_reference<Type>::type result_type;
102 is_convertible<ChainedPtr&,Class&>,Type>::type
[all …]
Dmember.hpp44 template<class Class,typename Type,Type Class::*PtrToMember>
47 typedef Type result_type;
53 is_convertible<const ChainedPtr&,const Class&>,Type&>::type
55 Type&
63 Type& operator()(const Class& x)const in operator ()()
68 Type& operator()(const reference_wrapper<const Class>& x)const in operator ()()
73 Type& operator()(const reference_wrapper<Class>& x)const in operator ()()
79 template<class Class,typename Type,Type Class::*PtrToMember>
82 typedef Type result_type;
88 is_convertible<const ChainedPtr&,const Class&>,Type&>::type
[all …]
/third_party/flutter/skia/third_party/externals/harfbuzz/src/
Dhb-null.hh80 template <typename Type>
82 static Type const & get_null () in get_null()
84 static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE."); in get_null()
85 return *reinterpret_cast<Type const *> (_hb_NullPool); in get_null()
91 typedef hb_remove_const<hb_remove_reference<QType>> Type; typedef
92 static const Type & get_null () { return Null<Type>::get_null (); } in get_null()
94 #define Null(Type) NullHelper<Type>::get_null () argument
97 #define DECLARE_NULL_NAMESPACE_BYTES(Namespace, Type) \ argument
99 extern HB_INTERNAL const unsigned char _hb_Null_##Namespace##_##Type[Namespace::Type::null_size]; \
101 struct Null<Namespace::Type> { \
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DValueTypes.cpp140 Type *EVT::getTypeForEVT(LLVMContext &Context) const { in getTypeForEVT()
145 case MVT::isVoid: return Type::getVoidTy(Context); in getTypeForEVT()
146 case MVT::i1: return Type::getInt1Ty(Context); in getTypeForEVT()
147 case MVT::i8: return Type::getInt8Ty(Context); in getTypeForEVT()
148 case MVT::i16: return Type::getInt16Ty(Context); in getTypeForEVT()
149 case MVT::i32: return Type::getInt32Ty(Context); in getTypeForEVT()
150 case MVT::i64: return Type::getInt64Ty(Context); in getTypeForEVT()
152 case MVT::f16: return Type::getHalfTy(Context); in getTypeForEVT()
153 case MVT::f32: return Type::getFloatTy(Context); in getTypeForEVT()
154 case MVT::f64: return Type::getDoubleTy(Context); in getTypeForEVT()
[all …]
/third_party/skia/third_party/externals/harfbuzz/src/
Dhb-null.hh92 template <typename Type>
94 static Type const & get_null () in get_null()
96 static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE."); in get_null()
97 return *reinterpret_cast<Type const *> (_hb_NullPool); in get_null()
103 typedef hb_remove_const<hb_remove_reference<QType>> Type; typedef
104 static const Type & get_null () { return Null<Type>::get_null (); } in get_null()
106 #define Null(Type) NullHelper<Type>::get_null () argument
109 #define DECLARE_NULL_NAMESPACE_BYTES(Namespace, Type) \ argument
111 extern HB_INTERNAL const unsigned char _hb_Null_##Namespace##_##Type[Namespace::Type::null_size]; \
113 struct Null<Namespace::Type> { \
[all …]

12345678910>>...273