Searched refs:_Type (Results 1 - 25 of 28) sorted by relevance

12

/external/stlport/stlport/stl/
H A D_ptrs_specialize.h31 # define _STLP_TYPE_TRAITS_POD_SPECIALIZE_V(_Type)
32 # define _STLP_TYPE_TRAITS_POD_SPECIALIZE(_Type)
34 # define _STLP_TYPE_TRAITS_POD_SPECIALIZE(_Type) _STLP_TEMPLATE_NULL struct __type_traits<_Type> : __type_traits_aux<__true_type> {};
35 # define _STLP_TYPE_TRAITS_POD_SPECIALIZE_V(_Type) \
36 _STLP_TYPE_TRAITS_POD_SPECIALIZE(_Type*) \
37 _STLP_TYPE_TRAITS_POD_SPECIALIZE(const _Type*) \
38 _STLP_TYPE_TRAITS_POD_SPECIALIZE(_Type**) \
39 _STLP_TYPE_TRAITS_POD_SPECIALIZE(_Type* const *) \
40 _STLP_TYPE_TRAITS_POD_SPECIALIZE(const _Type**) \
[all...]
H A Dconcept_checks.h234 typedef _Tp _Type; typedef in struct:_Mutable_trait
238 typedef _Tp _Type; typedef in struct:_Mutable_trait
243 template <class _Type>
244 void __sink_unused_warning(_Type) { }
256 template <class _Type> struct __check_equal { };
362 template <class _Type>
363 static _Type
364 __default_constructor_requirement_violation(_Type) {
365 return _Type();
367 template <class _Type>
799 typedef typename _Alloc::value_type _Type; typedef
[all...]
H A Dtype_manips.h240 struct _UnConstPtr { typedef _Tp _Type; }; typedef in struct:_UnConstPtr
243 struct _UnConstPtr<_Tp*> { typedef _Tp _Type; }; typedef in struct:_UnConstPtr
246 struct _UnConstPtr<const _Tp*> { typedef _Tp _Type; }; typedef in struct:_UnConstPtr
279 template <class _Tp> struct _UnQual { typedef _Tp _Type; }; typedef in struct:_UnQual
280 template <class _Tp> struct _UnQual<const _Tp> { typedef _Tp _Type; }; typedef in struct:_UnQual
281 template <class _Tp> struct _UnQual<volatile _Tp> { typedef _Tp _Type; }; typedef in struct:_UnQual
282 template <class _Tp> struct _UnQual<const volatile _Tp> { typedef _Tp _Type; }; typedef in struct:_UnQual
299 enum { _Is2 = _IsConvertible<_UnConstPtr<_Src>::_Type, _UnConstPtr<_Dst>::_Type>::value };
H A D_move_construct_fwk.h95 _Tp const&>::_Ret _Type; typedef in struct:_MoveSourceTraits
100 inline _STLP_TYPENAME_ON_RETURN_TYPE _MoveSourceTraits<_Tp>::_Type
102 typedef typename _MoveSourceTraits<_Tp>::_Type _SrcType;
H A Dtype_traits.h365 typedef typename _UnQual<_Src>::_Type _UnQuSrc;
391 typedef typename _UnConstPtr<_Src*>::_Type _UnConstSrc;
406 typedef typename _UnConstPtr<_Src*>::_Type _UnConstSrc;
428 typedef typename _UnConstPtr<_Tp*>::_Type _Tp1;
441 typedef typename _IsPtr<_Tp>::_Ret _Type; typedef in struct:_IsPtrType
442 static _Type _Ret() { return _Type(); }
447 typedef typename _IsRef<_Tp>::_Ret _Type; typedef in struct:_IsRefType
448 static _Type _Ret() { return _Type();}
491 typedef typename _Land3<_Same, _IsRef1, _IsRef2>::_Ret _Type; typedef in struct:_OKToSwap
546 typedef typename __type_traits<_Tp>::is_POD_type _Type; typedef in struct:_IsPOD
572 { typedef _Tp _Type; }; typedef in struct:__stlport_class
[all...]
H A Dboost_type_traits.h99 typedef typename _Land2<_Same, _TrivialAssign>::_Ret _Type; typedef in struct:_TrivialCopy
100 static _Type _Answer() { return _Type(); }
116 typedef typename _Land2<_Same, _TrivialCopy>::_Ret _Type; typedef in struct:_TrivialUCopy
117 static _Type _Answer() { return _Type(); }
/external/stlport/test/compiler/
H A Dttei6.cpp21 typedef T2 _Type; typedef in struct:A::B
29 typedef typename A<T1>:: template B<T2>::_Type ABType;
H A Dttei7.cpp22 typedef A<T2> _Type; typedef in struct:A::B
30 typedef typename A:: template B<T>::_Type _ATType;
/external/clang/lib/Driver/
H A DInputInfo.h46 InputInfo(types::ID _Type, const char *_BaseInput) argument
47 : Kind(Nothing), Type(_Type), BaseInput(_BaseInput) {
49 InputInfo(const char *_Filename, types::ID _Type, const char *_BaseInput) argument
50 : Kind(Filename), Type(_Type), BaseInput(_BaseInput) {
53 InputInfo(const llvm::opt::Arg *_InputArg, types::ID _Type, argument
55 : Kind(InputArg), Type(_Type), BaseInput(_BaseInput) {
H A DAction.cpp45 InputAction::InputAction(const Arg &_Input, types::ID _Type) argument
46 : Action(InputClass, _Type), Input(_Input) {
/external/clang/include/clang/Driver/
H A DAction.h73 Action(ActionClass _Kind, types::ID _Type) argument
74 : Kind(_Kind), Type(_Type), OwnsInputs(true) {}
75 Action(ActionClass _Kind, Action *Input, types::ID _Type) argument
76 : Kind(_Kind), Type(_Type), Inputs(&Input, &Input + 1), OwnsInputs(true) {}
77 Action(ActionClass _Kind, const ActionList &_Inputs, types::ID _Type) argument
78 : Kind(_Kind), Type(_Type), Inputs(_Inputs), OwnsInputs(true) {}
106 InputAction(const llvm::opt::Arg &_Input, types::ID _Type);
/external/stlport/stlport/stl/pointers/
H A D_tools.h85 typedef _Tp _Type; typedef in struct:_StorageType
99 typedef _QualifiedType _Type; typedef in struct:_StorageType
112 const _Tp*>::_Ret _Type; typedef in struct:_StorageType
125 volatile _Tp*>::_Ret _Type; typedef in struct:_StorageType
138 const volatile _Tp*>::_Ret _Type; typedef in struct:_StorageType
171 typedef _QualifiedType _Type; typedef in struct:_StorageType
178 _Tp>::_Ret _Type; typedef in struct:_StorageType
186 typedef typename _StorageTypeInfo::_Type _SType;
H A D_list.h64 typedef _STLP_TYPENAME _STLP_PRIV _StorageType<_Tp>::_Type _StorageType;
/external/skia/include/core/
H A DSkFlattenable.h44 return k##flattenable##_Type; \
/external/chromium_org/third_party/skia/src/core/
H A DSkRecords.h66 #define ENUM(T) T##_Type,
74 static const Type kType = T##_Type; \
83 static const Type kType = T##_Type; \
91 static const Type kType = T##_Type; \
99 static const Type kType = T##_Type; \
107 static const Type kType = T##_Type; \
115 static const Type kType = T##_Type; \
H A DSkRecord.h201 #define CASE(T) case SkRecords::T##_Type: return f(*this->ptr<SkRecords::T>());
212 #define CASE(T) case SkRecords::T##_Type: return f(this->ptr<SkRecords::T>());
/external/skia/src/core/
H A DSkRecords.h60 #define ENUM(T) T##_Type,
68 static const Type kType = T##_Type; \
77 static const Type kType = T##_Type; \
85 static const Type kType = T##_Type; \
93 static const Type kType = T##_Type; \
101 static const Type kType = T##_Type; \
109 static const Type kType = T##_Type; \
H A DSkRecord.h197 #define CASE(T) case SkRecords::T##_Type: return f(*this->ptr<SkRecords::T>());
208 #define CASE(T) case SkRecords::T##_Type: return f(this->ptr<SkRecords::T>());
/external/stlport/test/unit/
H A Dtype_traits_test.cpp284 template <typename _Type>
285 int is_integer(_Type) {
286 typedef typename _IsIntegral<_Type>::_Ret _Ret;
330 template <typename _Type>
331 int is_rational(_Type) {
332 typedef typename _IsRational<_Type>::_Ret _Ret;
376 template <typename _Type>
377 int is_pointer_type(_Type) {
378 return type_to_value(_IsPtrType<_Type>::_Ret());
/external/chromium_org/third_party/skia/tools/
H A DDumpRecord.cpp84 #define CASE(U) case SkRecords::U##_Type: return #U;
/external/skia/tools/
H A DDumpRecord.cpp86 #define CASE(U) case SkRecords::U##_Type: return #U;
/external/clang/include/clang/ASTMatchers/
H A DASTMatchersMacros.h56 typedef ReturnType (&DefineMatcher##_Type##OverloadId)(ParamType const &); \
123 typedef internal::Matcher<Type>(&DefineMatcher##_Type##OverloadId)( \
171 typedef internal::Matcher<Type>(&DefineMatcher##_Type##OverloadId)( \
261 ReturnTypesF>(&DefineMatcher##_Type##OverloadId)( \
310 ParamType2, ReturnTypesF>(&DefineMatcher##_Type##OverloadId)( \
/external/chromium_org/third_party/skia/include/core/
H A DSkFlattenable.h87 return k##flattenable##_Type; \
/external/chromium_org/tools/gyp/pylib/gyp/
H A DMSVSSettings.py67 class _Type(object): class in inherits:object
105 class _String(_Type):
121 class _StringList(_Type):
140 class _Boolean(_Type):
158 class _Integer(_Type):
162 _Type.__init__(self)
178 class _Enumeration(_Type):
192 _Type.__init__(self)
/external/clang/lib/ASTMatchers/Dynamic/
H A DRegistry.cpp57 static_cast< ::clang::ast_matchers::name##_Type##Id>( \

Completed in 1180 milliseconds

12