/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/meta/meta.unary/meta.unary.cat/ |
array.pass.cpp | 31 static_assert(!std::is_enum<T>::value, "");
|
class.pass.cpp | 31 static_assert(!std::is_enum<T>::value, "");
|
enum.pass.cpp | 31 static_assert( std::is_enum<T>::value, "");
|
floating_point.pass.cpp | 31 static_assert(!std::is_enum<T>::value, "");
|
function.pass.cpp | 31 static_assert(!std::is_enum<T>::value, "");
|
integral.pass.cpp | 31 static_assert(!std::is_enum<T>::value, "");
|
member_function_pointer.pass.cpp | 31 static_assert(!std::is_enum<T>::value, "");
|
member_object_pointer.pass.cpp | 31 static_assert(!std::is_enum<T>::value, "");
|
nullptr.pass.cpp | 31 static_assert(!std::is_enum<T>::value, "");
|
pointer.pass.cpp | 31 static_assert(!std::is_enum<T>::value, "");
|
union.pass.cpp | 31 static_assert(!std::is_enum<T>::value, "");
|
void.pass.cpp | 31 static_assert(!std::is_enum<T>::value, "");
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/type_traits/ |
make_unsigned.hpp | 16 #include <boost/type_traits/is_enum.hpp> 39 (::boost::type_traits::ice_or< ::boost::is_integral<T>::value, ::boost::is_enum<T>::value>::value));
|
intrinsics.hpp | 178 # if __has_feature(is_enum)
|
/external/chromium_org/third_party/WebKit/Source/bindings/scripts/ |
idl_types.py | 160 def is_enum(self): member in class:IdlType 190 self.is_enum or
|
v8_dictionary.py | 114 if idl_type.impl_should_use_nullable_container or idl_type.is_enum or idl_type.is_string_type:
|
v8_types.py | 211 idl_type.is_enum): 631 if idl_type.is_enum: [all...] |
v8_utilities.py | 123 if not idl_type.is_enum:
|
v8_attributes.py | 180 not idl_type.is_enum):
|
v8_methods.py | 450 idl_type.is_enum)))
|
v8_interface.py | [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/ |
gensuitemodule.py | 782 if is_enum(a[2]): 805 if is_enum(returns): 814 if is_enum(a[2]): 1153 def is_enum(data): function [all...] |
/external/chromium_org/third_party/cython/src/Cython/Compiler/ |
PyrexTypes.py | 157 # is_enum boolean Is a C enum type 215 is_enum = 0 variable in class:PyrexType 1523 is_enum = 1 variable in class:CAnonEnumType 3257 is_enum = 1 variable in class:CEnumType [all...] |
TypeInference.py | 544 elif (result_type.is_int or result_type.is_enum) and not might_overflow:
|
ExprNodes.py | 802 if type.is_enum or type.is_error: [all...] |