HomeSort by relevance Sort by last modified time
    Searched refs:is_array (Results 1 - 25 of 147) sorted by null

1 2 3 4 5 6

  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/type_traits/
is_array.hpp 11 // Some fixes for is_array are based on a newgroup posting by Jonathan Lundquist.
32 BOOST_TT_AUX_BOOL_TRAIT_DEF1(is_array,T,__is_array(T))
34 BOOST_TT_AUX_BOOL_TRAIT_DEF1(is_array,T,false)
36 BOOST_TT_AUX_BOOL_TRAIT_PARTIAL_SPEC1_2(typename T,std::size_t N,is_array,T[N],true)
37 BOOST_TT_AUX_BOOL_TRAIT_PARTIAL_SPEC1_2(typename T,std::size_t N,is_array,T const[N],true)
38 BOOST_TT_AUX_BOOL_TRAIT_PARTIAL_SPEC1_2(typename T,std::size_t N,is_array,T volatile[N],true)
39 BOOST_TT_AUX_BOOL_TRAIT_PARTIAL_SPEC1_2(typename T,std::size_t N,is_array,T const volatile[N],true)
41 BOOST_TT_AUX_BOOL_TRAIT_PARTIAL_SPEC1_1(typename T,is_array,T[],true)
42 BOOST_TT_AUX_BOOL_TRAIT_PARTIAL_SPEC1_1(typename T,is_array,T const[],true)
43 BOOST_TT_AUX_BOOL_TRAIT_PARTIAL_SPEC1_1(typename T,is_array,T volatile[],true
    [all...]
is_enum.hpp 20 #include <boost/type_traits/is_array.hpp>
121 , is_array<T>::value
131 , is_array<T>::value
142 , is_array<T>::value
is_class.hpp 24 # include <boost/type_traits/is_array.hpp>
101 ::boost::type_traits::ice_not< ::boost::is_array<T>::value >::value,
111 ::boost::type_traits::ice_not< ::boost::is_array<T>::value >::value,
is_const.hpp 37 # include <boost/type_traits/is_array.hpp>
141 , is_array<T>::value
is_member_function_pointer.hpp 28 # include <boost/type_traits/is_array.hpp>
89 , ::boost::is_array<T>::value
is_member_pointer.hpp 31 # include <boost/type_traits/is_array.hpp>
93 , ::boost::is_array<T>::value
is_pod.hpp 59 template <bool is_array = false>
115 ::boost::is_array<T>::value
is_volatile.hpp 34 # include <boost/type_traits/is_array.hpp>
129 , is_array<T>::value
  /external/chromium/base/
template_util_unittest.cc 26 EXPECT_FALSE(is_array<int>::value);
27 EXPECT_FALSE(is_array<int*>::value);
28 EXPECT_FALSE(is_array<int(*)[3]>::value);
29 EXPECT_TRUE(is_array<int[]>::value);
30 EXPECT_TRUE(is_array<const int[]>::value);
31 EXPECT_TRUE(is_array<int[3]>::value);
template_util.h 32 template<class> struct is_array : public false_type {}; struct in namespace:base
33 template<class T, size_t n> struct is_array<T[n]> : public true_type {}; struct in namespace:base
34 template<class T> struct is_array<T[]> : public true_type {}; struct in namespace:base
  /external/chromium_org/base/
template_util_unittest.cc 26 // is_array<Type>
27 COMPILE_ASSERT(!is_array<int>::value, IsArray);
28 COMPILE_ASSERT(!is_array<int*>::value, IsArray);
29 COMPILE_ASSERT(!is_array<int(*)[3]>::value, IsArray);
30 COMPILE_ASSERT(is_array<int[]>::value, IsArray);
31 COMPILE_ASSERT(is_array<const int[]>::value, IsArray);
32 COMPILE_ASSERT(is_array<int[3]>::value, IsArray);
template_util.h 34 template<class> struct is_array : public false_type {}; struct in namespace:base
35 template<class T, size_t n> struct is_array<T[n]> : public true_type {}; struct in namespace:base
36 template<class T> struct is_array<T[]> : public true_type {}; struct in namespace:base
  /external/chromium_org/third_party/libphonenumber/src/phonenumbers/base/
template_util.h 33 template<class> struct is_array : public false_type {}; struct in namespace:i18n::phonenumbers
34 template<class T, size_t n> struct is_array<T[n]> : public true_type {}; struct in namespace:i18n::phonenumbers
35 template<class T> struct is_array<T[]> : public true_type {}; struct in namespace:i18n::phonenumbers
  /external/chromium_org/ppapi/cpp/
var_array.cc 29 if (!var.is_array()) {
58 if (other.is_array()) {
  /art/compiler/dex/quick/x86/
utility_x86.cc 349 bool is_array = r_index != INVALID_REG; local
358 opcode = is_array ? kX86MovsdRA : kX86MovsdRM;
367 opcode = is_array ? kX86Mov32RA : kX86Mov32RM;
374 opcode = is_array ? kX86Mov32RA : kX86Mov32RM;
376 opcode = is_array ? kX86MovssRA : kX86MovssRM;
382 opcode = is_array ? kX86Movzx16RA : kX86Movzx16RM;
386 opcode = is_array ? kX86Movsx16RA : kX86Movsx16RM;
390 opcode = is_array ? kX86Movzx8RA : kX86Movzx8RM;
393 opcode = is_array ? kX86Movsx8RA : kX86Movsx8RM;
399 if (!is_array) {
467 bool is_array = r_index != INVALID_REG; local
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/meta/meta.unary/meta.unary.cat/
lvalue_ref.pass.cpp 22 static_assert(!std::is_array<T>::value, "");
rvalue_ref.pass.cpp 22 static_assert(!std::is_array<T>::value, "");
void.pass.cpp 22 static_assert(!std::is_array<T>::value, "");
array.pass.cpp 22 static_assert( std::is_array<T>::value, "");
class.pass.cpp 22 static_assert(!std::is_array<T>::value, "");
enum.pass.cpp 22 static_assert(!std::is_array<T>::value, "");
floating_point.pass.cpp 22 static_assert(!std::is_array<T>::value, "");
function.pass.cpp 22 static_assert(!std::is_array<T>::value, "");
  /external/chromium_org/third_party/mesa/src/src/glsl/
link_uniforms.cpp 53 } else if (type->is_array() && type->fields.array->is_sampler()) {
66 if (t->is_record() || (t->is_array() && t->fields.array->is_record())) {
95 } else if (t->is_array() && t->fields.array->is_record()) {
158 assert(!(type->is_array() && type->fields.array->is_record()));
168 type->is_array() ? type->array_size() : 1;
262 assert(!(type->is_array() && type->fields.array->is_record()));
282 const unsigned shadow = (type->is_array())
297 if (type->is_array()) {
341 if (type->is_array()) {
349 (type->is_array() && type->fields.array->is_matrix()))
    [all...]
  /external/mesa3d/src/glsl/
link_uniforms.cpp 53 } else if (type->is_array() && type->fields.array->is_sampler()) {
66 if (t->is_record() || (t->is_array() && t->fields.array->is_record())) {
95 } else if (t->is_array() && t->fields.array->is_record()) {
158 assert(!(type->is_array() && type->fields.array->is_record()));
168 type->is_array() ? type->array_size() : 1;
262 assert(!(type->is_array() && type->fields.array->is_record()));
282 const unsigned shadow = (type->is_array())
297 if (type->is_array()) {
341 if (type->is_array()) {
349 (type->is_array() && type->fields.array->is_matrix()))
    [all...]

Completed in 1706 milliseconds

1 2 3 4 5 6