Searched refs:value_type (Results 1 - 25 of 907) sorted by relevance

1234567891011>>

/external/clang/test/CXX/temp/temp.decls/temp.class/temp.mem.func/
H A Dp1-retmem.cpp9 typedef T value_type; typedef in struct:X0
12 value_type *f1();
13 X1<value_type*> f2();
22 typename X0<U>::value_type *X0<U>::f1() {
27 X1<typename X0<U>::value_type*> X0<U>::f2() {
/external/libcxx/test/std/numerics/numarray/template.valarray/
H A Dtypes.pass.cpp16 // typedef T value_type;
24 static_assert((std::is_same<std::valarray<int>::value_type, int>::value), "");
25 static_assert((std::is_same<std::valarray<double>::value_type, double>::value), "");
/external/libcxx/test/std/utilities/memory/allocator.traits/
H A Dvalue_type.pass.cpp15 // typedef typename Alloc::value_type value_type;
25 typedef T value_type; typedef in struct:A
30 static_assert((std::is_same<std::allocator_traits<A<char> >::value_type, char>::value), "");
/external/libcxx/test/std/numerics/numarray/template.gslice.array/
H A Dtypes.pass.cpp16 // typedef T value_type;
23 static_assert((std::is_same<std::gslice_array<int>::value_type, int>::value), "");
/external/libcxx/test/std/numerics/numarray/template.indirect.array/
H A Dtypes.pass.cpp16 // typedef T value_type;
23 static_assert((std::is_same<std::indirect_array<int>::value_type, int>::value), "");
/external/libcxx/test/std/numerics/numarray/template.mask.array/
H A Dtypes.pass.cpp16 // typedef T value_type;
23 static_assert((std::is_same<std::mask_array<int>::value_type, int>::value), "");
/external/libcxx/test/std/numerics/numarray/template.slice.array/
H A Dtypes.pass.cpp16 // typedef T value_type;
23 static_assert((std::is_same<std::slice_array<int>::value_type, int>::value), "");
/external/libcxx/test/std/utilities/intseq/intseq.intseq/
H A Dinteger_seq.fail.cpp33 floatmix::value_type I;
/external/vulkan-validation-layers/libs/glm/detail/
H A Dfunc_noise.hpp58 GLM_FUNC_DECL typename genType::value_type noise1(genType const & x);
67 GLM_FUNC_DECL detail::tvec2<typename genType::value_type, defaultp> noise2(genType const & x);
76 GLM_FUNC_DECL detail::tvec3<typename genType::value_type, defaultp> noise3(genType const & x);
85 GLM_FUNC_DECL detail::tvec4<typename genType::value_type, defaultp> noise4(genType const & x);
/external/vulkan-validation-layers/libs/glm/gtx/
H A Dcomponent_wise.hpp56 GLM_FUNC_DECL typename genType::value_type compAdd(
62 GLM_FUNC_DECL typename genType::value_type compMul(
68 GLM_FUNC_DECL typename genType::value_type compMin(
74 GLM_FUNC_DECL typename genType::value_type compMax(
H A Dnormalize_dot.hpp59 GLM_FUNC_DECL typename genType::value_type normalizeDot(
67 GLM_FUNC_DECL typename genType::value_type fastNormalizeDot(
/external/clang/test/SemaCXX/
H A Dcxx11-call-to-deleted-constructor.cpp14 typedef VT value_type; typedef in class:cva::Matrix
15 inline __attribute__((always_inline)) value_type& at();
26 typedef VT value_type; typedef in class:cva::Matrix
27 Matrix(const unsigned int nRows, const unsigned int nColumns, const value_type* data = nullptr);
29 Matrix(const std::initializer_list<value_type>& list) = delete; // expected-note {{'Matrix' has been explicitly marked deleted here}}
/external/libcxx/test/std/utilities/memory/allocator.traits/allocator.traits.members/
H A Dallocate.fail.cpp31 typedef T value_type; typedef in struct:A
33 value_type* allocate(std::size_t n)
36 return reinterpret_cast<value_type*>(static_cast<std::uintptr_t>(0xEEADBEEF));
38 value_type* allocate(std::size_t n, const void* p)
42 return reinterpret_cast<value_type*>(static_cast<std::uintptr_t>(0xFEADBEEF));
H A Dallocate_hint.pass.cpp29 typedef T value_type; typedef in struct:A
31 value_type* allocate(std::size_t n)
34 return reinterpret_cast<value_type*>(static_cast<std::uintptr_t>(0xDEADBEEF));
41 typedef T value_type; typedef in struct:B
43 value_type* allocate(std::size_t n)
46 return reinterpret_cast<value_type*>(static_cast<std::uintptr_t>(0xEEADBEEF));
48 value_type* allocate(std::size_t n, const void* p)
52 return reinterpret_cast<value_type*>(static_cast<std::uintptr_t>(0xFEADBEEF));
/external/libtextclassifier/util/gtl/
H A Dmap_util.h32 const typename Collection::value_type::second_type& FindWithDefault(
34 const typename Collection::value_type::first_type& key,
35 const typename Collection::value_type::second_type& value) {
49 const typename Collection::value_type& vt) {
57 const typename Collection::value_type::first_type& key,
58 const typename Collection::value_type::second_type& value) {
60 typename Collection::value_type(key, value));
/external/swiftshader/third_party/LLVM/include/llvm/ADT/
H A DInMemoryStruct.h26 typedef T value_type; typedef in class:llvm::InMemoryStruct
27 typedef value_type &reference;
28 typedef value_type *pointer;
29 typedef const value_type &const_reference;
30 typedef const value_type *const_pointer;
33 value_type *Target;
37 value_type Contents;
/external/swiftshader/third_party/LLVM/include/llvm/Support/
H A DEndian.h29 template<typename value_type, alignment align>
32 template<typename value_type>
33 struct alignment_access_helper<value_type, aligned>
35 value_type val;
41 template<typename value_type>
42 struct alignment_access_helper<value_type, unaligned>
44 value_type val;
51 template<typename value_type, alignment align>
52 static value_type read_le(const void *memory) {
53 value_type
[all...]
/external/llvm/include/llvm/Support/
H A DEndian.h38 template<typename value_type, endianness endian>
39 inline value_type byte_swap(value_type value) {
46 template<typename value_type,
49 inline value_type read(const void *memory) {
50 value_type ret;
54 (detail::PickAlignment<value_type, alignment>::value)),
55 sizeof(value_type));
56 return byte_swap<value_type, endian>(ret);
61 template<typename value_type, endiannes
[all...]
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
H A DEndian.h37 template<typename value_type, endianness endian>
38 inline value_type byte_swap(value_type value) {
45 template<typename value_type,
48 inline value_type read(const void *memory) {
49 value_type ret;
53 (detail::PickAlignment<value_type, alignment>::value)),
54 sizeof(value_type));
55 return byte_swap<value_type, endian>(ret);
60 template<typename value_type, endiannes
[all...]
/external/tensorflow/tensorflow/core/lib/gtl/
H A Dmap_util.h35 const typename Collection::value_type::second_type* FindOrNull(
37 const typename Collection::value_type::first_type& key) {
47 typename Collection::value_type::second_type* FindOrNull(
49 const typename Collection::value_type::first_type& key) {
64 typename Collection::value_type::second_type FindPtrOrNull(
66 const typename Collection::value_type::first_type& key) {
69 return typename Collection::value_type::second_type();
84 const typename Collection::value_type::second_type& FindWithDefault(
86 const typename Collection::value_type::first_type& key,
87 const typename Collection::value_type
[all...]
/external/libcxx/test/std/experimental/filesystem/class.path/
H A Dsynop.pass.cpp16 // typedef ... value_type;
17 // typedef basic_string<value_type> string_type;
18 // static constexpr value_type preferred_separator = ...;
30 ASSERT_SAME_TYPE(path::value_type, char);
31 ASSERT_SAME_TYPE(path::string_type, std::basic_string<path::value_type>);
33 ASSERT_SAME_TYPE(const path::value_type, decltype(path::preferred_separator));
/external/pdfium/third_party/agg23/
H A Dagg_color_gray.h34 typedef int8u value_type; typedef in struct:agg::gray8
43 value_type v;
44 value_type a;
/external/libcxx/test/std/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.opindex/
H A Ddifference_type.pass.cpp26 typename std::iterator_traits<It>::value_type x)
28 typedef typename std::iterator_traits<It>::value_type value_type; typedef
30 value_type rr = r[n];
/external/libcxx/test/std/iterators/predef.iterators/insert.iterators/back.insert.iter.ops/back.insert.iter.op=/
H A Drv_value.pass.cpp16 // requires CopyConstructible<Cont::value_type>
18 // operator=(Cont::value_type&& value);
31 i = typename C::value_type();
32 assert(c.back() == typename C::value_type());
/external/libcxx/test/std/iterators/predef.iterators/insert.iterators/front.insert.iter.ops/front.insert.iter.op=/
H A Drv_value.pass.cpp17 // operator=(Cont::value_type&& value);
29 i = typename C::value_type();
30 assert(c.front() == typename C::value_type());

Completed in 568 milliseconds

1234567891011>>