Searched refs:is_pointer_type (Results 1 - 2 of 2) sorted by relevance

/external/stlport/test/unit/
H A Dtype_traits_test.cpp377 int is_pointer_type(_Type) { function
385 CPPUNIT_ASSERT( is_pointer_type(int_val) == 0 );
386 CPPUNIT_ASSERT( is_pointer_type(int_pointer) == 1 );
387 CPPUNIT_ASSERT( is_pointer_type(int_const_pointer) == 1 );
388 CPPUNIT_ASSERT( is_pointer_type(int_volatile_pointer) == 1 );
389 CPPUNIT_ASSERT( is_pointer_type(int_const_volatile_pointer) == 1 );
390 CPPUNIT_ASSERT( is_pointer_type(int_ref) == 0 );
391 CPPUNIT_ASSERT( is_pointer_type(int_const_ref) == 0 );
392 CPPUNIT_ASSERT( is_pointer_type(any) == 0 );
393 CPPUNIT_ASSERT( is_pointer_type(any_pointe
[all...]
/external/lldb/source/Core/
H A DValueObject.cpp297 bool is_pointer_type = false; local
301 is_pointer_type = true;
336 if (is_pointer_type)
873 const bool is_pointer_type = type_info & ClangASTType::eTypeIsPointer; local
875 if (!(is_pointer_type || is_array_type))
887 if (is_pointer_type)
911 lldb::addr_t addr = is_pointer_type ? GetPointerValue(&addr_type) : GetAddressOf(true, &addr_type);
3711 const bool is_pointer_type = IsPointerType(); local
3712 if (is_pointer_type)
3772 if (is_pointer_type)
[all...]

Completed in 92 milliseconds