OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:are_both_pointer_type
(Results
1 - 3
of
3
) sorted by null
/external/stlport/test/unit/
type_traits_test.cpp
413
int
are_both_pointer_type
(_Tp1, _Tp2) {
function
421
CPPUNIT_CHECK(
are_both_pointer_type
(int_val, int_val) == 0 );
422
CPPUNIT_CHECK(
are_both_pointer_type
(int_pointer, int_pointer) == 1 );
423
CPPUNIT_CHECK(
are_both_pointer_type
(int_const_pointer, int_const_pointer) == 1 );
424
CPPUNIT_CHECK(
are_both_pointer_type
(int_volatile_pointer, int_volatile_pointer) == 1 );
425
CPPUNIT_CHECK(
are_both_pointer_type
(int_const_volatile_pointer, int_const_volatile_pointer) == 1 );
426
CPPUNIT_CHECK(
are_both_pointer_type
(int_ref, int_ref) == 0 );
427
CPPUNIT_CHECK(
are_both_pointer_type
(int_const_ref, int_const_ref) == 0 );
428
CPPUNIT_CHECK(
are_both_pointer_type
(any, any) == 0 );
429
CPPUNIT_CHECK(
are_both_pointer_type
(any_pointer, any_pointer) == 1 )
[
all
...]
/ndk/tests/device/test-gnustl-full/unit/
type_traits_test.cpp
413
int
are_both_pointer_type
(_Tp1, _Tp2) {
function
421
CPPUNIT_CHECK(
are_both_pointer_type
(int_val, int_val) == 0 );
422
CPPUNIT_CHECK(
are_both_pointer_type
(int_pointer, int_pointer) == 1 );
423
CPPUNIT_CHECK(
are_both_pointer_type
(int_const_pointer, int_const_pointer) == 1 );
424
CPPUNIT_CHECK(
are_both_pointer_type
(int_volatile_pointer, int_volatile_pointer) == 1 );
425
CPPUNIT_CHECK(
are_both_pointer_type
(int_const_volatile_pointer, int_const_volatile_pointer) == 1 );
426
CPPUNIT_CHECK(
are_both_pointer_type
(int_ref, int_ref) == 0 );
427
CPPUNIT_CHECK(
are_both_pointer_type
(int_const_ref, int_const_ref) == 0 );
428
CPPUNIT_CHECK(
are_both_pointer_type
(any, any) == 0 );
429
CPPUNIT_CHECK(
are_both_pointer_type
(any_pointer, any_pointer) == 1 )
[
all
...]
/ndk/tests/device/test-stlport/unit/
type_traits_test.cpp
413
int
are_both_pointer_type
(_Tp1, _Tp2) {
function
421
CPPUNIT_CHECK(
are_both_pointer_type
(int_val, int_val) == 0 );
422
CPPUNIT_CHECK(
are_both_pointer_type
(int_pointer, int_pointer) == 1 );
423
CPPUNIT_CHECK(
are_both_pointer_type
(int_const_pointer, int_const_pointer) == 1 );
424
CPPUNIT_CHECK(
are_both_pointer_type
(int_volatile_pointer, int_volatile_pointer) == 1 );
425
CPPUNIT_CHECK(
are_both_pointer_type
(int_const_volatile_pointer, int_const_volatile_pointer) == 1 );
426
CPPUNIT_CHECK(
are_both_pointer_type
(int_ref, int_ref) == 0 );
427
CPPUNIT_CHECK(
are_both_pointer_type
(int_const_ref, int_const_ref) == 0 );
428
CPPUNIT_CHECK(
are_both_pointer_type
(any, any) == 0 );
429
CPPUNIT_CHECK(
are_both_pointer_type
(any_pointer, any_pointer) == 1 )
[
all
...]
Completed in 4387 milliseconds