OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:is_pod
(Results
1 - 5
of
5
) sorted by null
/external/astl/tests/
test_type_traits.cpp
112
using std::
is_pod
;
113
EXPECT_TRUE(
is_pod
<float>::value == true);
114
EXPECT_TRUE(
is_pod
<int *>::value == true);
115
EXPECT_TRUE(
is_pod
<A>::value == false);
/external/astl/include/
memory
134
is_pod
<_ValueType1>::value &&
is_pod
<_ValueType2>::value;
178
const bool pod =
is_pod
<_ForwardIterator>::value;
vector
291
if (
is_pod
<value_type>::value)
328
if (
is_pod
<value_type>::value) {
344
if (!
is_pod
<value_type>::value)
357
if (!
is_pod
<value_type>::value) {
371
if (!
is_pod
<value_type>::value) {
387
if (
is_pod
<value_type>::value)
407
if (!
is_pod
<value_type>::value) {
type_traits.h
147
// Substitution Failure Is Not An Error used in
is_pod
.
160
struct
is_pod
: public integral_constant<bool, sizeof(test_pod_type<_T>(0)) != sizeof(sfinae_types::one)> { };
struct in namespace:std
/external/stlport/stlport/stl/
boost_type_traits.h
33
#include <boost/type_traits/
is_pod
.hpp>
82
enum { pod = ::boost::
is_pod
<_Tp>::value };
Completed in 207 milliseconds