HomeSort by relevance Sort by last modified time
    Searched refs:value_type (Results 1 - 25 of 3324) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/oprofile/libutil++/
cached_value.h 25 typedef T value_type; typedef in class:cached_value
28 value_type const get() const {
38 value_type const reset(value_type const & val) {
46 value_type value;
  /prebuilts/misc/common/swig/include/2.0.11/go/
std_list.i 17 typedef T value_type;
18 typedef value_type* pointer;
19 typedef const value_type* const_pointer;
20 typedef value_type& reference;
21 typedef const value_type& const_reference;
29 void push_front(const value_type& x);
31 void push_back(const value_type& x);
33 void remove(value_type x);
  /external/libcxx/test/numerics/numarray/template.valarray/
types.pass.cpp 16 // 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/utilities/memory/allocator.traits/allocator.traits.members/
allocate_hint.pass.cpp 25 typedef T value_type; typedef in struct:A
27 value_type* allocate(std::size_t n)
30 return (value_type*)0xDEADBEEF;
37 typedef T value_type; typedef in struct:B
39 value_type* allocate(std::size_t n)
42 return (value_type*)0xEEADBEEF;
44 value_type* allocate(std::size_t n, const void* p)
48 return (value_type*)0xFEADBEEF;
allocate.pass.cpp 25 typedef T value_type; typedef in struct:A
27 value_type* allocate(std::size_t n)
30 return (value_type*)0xDEADBEEF;
deallocate.pass.cpp 27 typedef T value_type; typedef in struct:A
29 void deallocate(value_type* p, std::size_t n)
31 assert(p == (value_type*)0xDEADBEEF);
  /external/libcxx/test/utilities/memory/allocator.traits/
value_type.pass.cpp 15 // 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), "");
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/numarray/template.valarray/
types.pass.cpp 16 // 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), "");
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/allocator.traits/allocator.traits.members/
allocate_hint.pass.cpp 25 typedef T value_type; typedef in struct:A
27 value_type* allocate(std::size_t n)
30 return (value_type*)0xDEADBEEF;
37 typedef T value_type; typedef in struct:B
39 value_type* allocate(std::size_t n)
42 return (value_type*)0xEEADBEEF;
44 value_type* allocate(std::size_t n, const void* p)
48 return (value_type*)0xFEADBEEF;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/allocator.traits/
value_type.pass.cpp 15 // 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/lldb/include/lldb/Utility/
CleanUp.h 59 typedef T value_type; typedef in class:lldb_utility::CleanUp
60 typedef R (*CallbackType)(value_type);
67 CleanUp (value_type value, CallbackType callback) :
81 CleanUp (value_type value, value_type invalid, CallbackType callback) :
101 value_type get()
109 const value_type
121 set (const value_type value)
168 value_type
176 value_type m_current_value
190 typedef T value_type; typedef in class:lldb_utility::CleanUp2
    [all...]
RefCounter.h 28 typedef uint32_t value_type; typedef in class:lldb_utility::RefCounter
30 RefCounter(value_type* ctr);
35 value_type* m_counter;
  /external/libcxx/test/numerics/numarray/template.gslice.array/
types.pass.cpp 16 // typedef T value_type;
23 static_assert((std::is_same<std::gslice_array<int>::value_type, int>::value), "");
  /external/libcxx/test/numerics/numarray/template.indirect.array/
types.pass.cpp 16 // typedef T value_type;
23 static_assert((std::is_same<std::indirect_array<int>::value_type, int>::value), "");
  /external/libcxx/test/numerics/numarray/template.mask.array/
types.pass.cpp 16 // typedef T value_type;
23 static_assert((std::is_same<std::mask_array<int>::value_type, int>::value), "");
  /external/libcxx/test/numerics/numarray/template.slice.array/
types.pass.cpp 16 // typedef T value_type;
23 static_assert((std::is_same<std::slice_array<int>::value_type, int>::value), "");
  /external/libcxx/test/utilities/intseq/intseq.intseq/
integer_seq.fail.cpp 31 floatmix::value_type I;
  /external/libcxx/test/utilities/intseq/intseq.make/
make_integer_seq.fail.cpp 23 std::make_integer_sequence<int, -3>::value_type i;
  /external/llvm/include/llvm/Support/
EndianStream.h 29 template <typename value_type> void write(value_type Val) {
30 Val = byte_swap<value_type, endian>(Val);
31 OS.write((const char *)&Val, sizeof(value_type));
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/numarray/template.gslice.array/
types.pass.cpp 16 // typedef T value_type;
23 static_assert((std::is_same<std::gslice_array<int>::value_type, int>::value), "");
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/numarray/template.indirect.array/
types.pass.cpp 16 // typedef T value_type;
23 static_assert((std::is_same<std::indirect_array<int>::value_type, int>::value), "");
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/numarray/template.mask.array/
types.pass.cpp 16 // typedef T value_type;
23 static_assert((std::is_same<std::mask_array<int>::value_type, int>::value), "");
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/numarray/template.slice.array/
types.pass.cpp 16 // typedef T value_type;
23 static_assert((std::is_same<std::slice_array<int>::value_type, int>::value), "");
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/intseq/intseq.intseq/
integer_seq.fail.cpp 31 floatmix::value_type I;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/intseq/intseq.make/
make_integer_seq.fail.cpp 23 std::make_integer_sequence<int, -3>::value_type i;

Completed in 650 milliseconds

1 2 3 4 5 6 7 8 91011>>