OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:is_pod
(Results
1 - 11
of
11
) sorted by null
/external/clang/test/Lexer/
has_feature_type_traits.cpp
73
#if __has_feature(
is_pod
)
74
int
is_pod
();
76
// CHECK: int
is_pod
();
/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/clang/test/SemaTemplate/
instantiate-expr-4.cpp
185
struct
is_pod
{
struct
189
static int is_pod0[
is_pod
<X>::value? -1 : 1];
190
static int is_pod1[
is_pod
<Y>::value? 1 : -1];
322
return
is_pod
<X>::value; // expected-error{{non-const lvalue reference to type 'int' cannot bind to a value of unrelated type 'const bool'}}
/external/stlport/stlport/stl/
boost_type_traits.h
33
#include <boost/type_traits/
is_pod
.hpp>
82
enum { pod = ::boost::
is_pod
<_Tp>::value };
/ndk/sources/cxx-stl/stlport/stlport/stl/
boost_type_traits.h
33
#include <boost/type_traits/
is_pod
.hpp>
82
enum { pod = ::boost::
is_pod
<_Tp>::value };
/prebuilt/ndk/android-ndk-r5/sources/cxx-stl/stlport/stlport/stl/
boost_type_traits.h
33
#include <boost/type_traits/
is_pod
.hpp>
82
enum { pod = ::boost::
is_pod
<_Tp>::value };
/prebuilt/ndk/android-ndk-r6/sources/cxx-stl/stlport/stlport/stl/
boost_type_traits.h
33
#include <boost/type_traits/
is_pod
.hpp>
82
enum { pod = ::boost::
is_pod
<_Tp>::value };
/external/clang/test/SemaCXX/
type-traits.cpp
92
void
is_pod
()
function
[
all
...]
Completed in 260 milliseconds