HomeSort by relevance Sort by last modified time
    Searched refs:allocator (Results 326 - 350 of 1382) sorted by null

<<11121314151617181920>>

  /external/libcxx/test/std/input.output/string.streams/istringstream/
types.pass.cpp 12 // template <class charT, class traits = char_traits<charT>, class Allocator = allocator<charT> >
22 // typedef Allocator allocator_type;
35 static_assert((std::is_same<std::basic_istringstream<char>::allocator_type, std::allocator<char> >::value), "");
  /external/libcxx/test/std/input.output/string.streams/ostringstream/
types.pass.cpp 12 // template <class charT, class traits = char_traits<charT>, class Allocator = allocator<charT> >
22 // typedef Allocator allocator_type;
35 static_assert((std::is_same<std::basic_ostringstream<char>::allocator_type, std::allocator<char> >::value), "");
  /external/libcxx/test/std/input.output/string.streams/stringbuf/
types.pass.cpp 12 // template <class charT, class traits = char_traits<charT>, class Allocator = allocator<charT> >
22 // typedef Allocator allocator_type;
35 static_assert((std::is_same<std::basic_stringbuf<char>::allocator_type, std::allocator<char> >::value), "");
  /external/libcxx/test/std/input.output/string.streams/stringstream/
types.pass.cpp 12 // template <class charT, class traits = char_traits<charT>, class Allocator = allocator<charT> >
22 // typedef Allocator allocator_type;
35 static_assert((std::is_same<std::basic_stringstream<char>::allocator_type, std::allocator<char> >::value), "");
  /external/libcxx/test/std/strings/basic.string/string.modifiers/string_assign/
string.pass.cpp 12 // basic_string<charT,traits,Allocator>&
66 testAlloc(S(), S(), std::allocator<char>());
67 testAlloc(S(), S("12345"), std::allocator<char>());
68 testAlloc(S(), S("1234567890"), std::allocator<char>());
69 testAlloc(S(), S("12345678901234567890"), std::allocator<char>());
string_view.pass.cpp 12 // basic_string<charT,traits,Allocator>&
68 testAlloc(S(), SV(), std::allocator<char>());
69 testAlloc(S(), SV("12345"), std::allocator<char>());
70 testAlloc(S(), SV("1234567890"), std::allocator<char>());
71 testAlloc(S(), SV("12345678901234567890"), std::allocator<char>());
  /external/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/
alloc_F.pass.cpp 123 static_assert(std::is_constructible<Fn, std::allocator_arg_t, std::allocator<int>, LValueCallable&>::value, "");
124 static_assert(std::is_constructible<Fn, std::allocator_arg_t, std::allocator<int>, LValueCallable>::value, "");
125 static_assert(!std::is_constructible<Fn, std::allocator_arg_t, std::allocator<int>, RValueCallable&>::value, "");
126 static_assert(!std::is_constructible<Fn, std::allocator_arg_t, std::allocator<int>, RValueCallable>::value, "");
  /external/libcxx/test/std/utilities/memory/default.allocator/allocator.members/
allocate.pass.cpp 12 // allocator:
13 // pointer allocate(size_type n, allocator<void>::const_pointer hint=0);
32 std::allocator<A> a;
  /external/libcxx/test/std/utilities/optional/optional.specalg/
make_optional_explicit_initializer_list.pass.cpp 50 auto opt = make_optional<std::string>({'a', 'b', 'c'}, std::allocator<char>{});
  /external/skia/include/android/
SkBitmapRegionDecoder.h 47 * @param allocator Allocator for the pixels. If this is NULL, the default
48 * allocator (HeapAllocator) will be used.
62 virtual bool decodeRegion(SkBitmap* bitmap, SkBRDAllocator* allocator,
  /external/skia/src/android/
SkBitmapRegionCodec.cpp 19 bool SkBitmapRegionCodec::decodeRegion(SkBitmap* bitmap, SkBRDAllocator* allocator,
93 if (!bitmap->tryAllocPixels(allocator, colorTable.get())) {
102 SkCodec::ZeroInitialized zeroInit = allocator ? allocator->zeroInit() :
SkBitmapRegionCodec.h 26 bool decodeRegion(SkBitmap* bitmap, SkBRDAllocator* allocator,
  /external/v8/src/crankshaft/
compilation-phase.cc 14 : name_(name), info_(info), zone_(info->isolate()->allocator(), ZONE_NAME) {
  /frameworks/base/libs/hwui/utils/
LinearAllocator.h 157 typedef T value_type; // needed to implement std::allocator
158 typedef T* pointer; // needed to implement std::allocator
160 explicit LinearStdAllocator(LinearAllocator& allocator)
161 : linearAllocator(allocator) {}
198 explicit LsaVector(const LinearStdAllocator<T>& allocator)
199 : std::vector<T, LinearStdAllocator<T>>(allocator) {}
  /frameworks/native/libs/vr/libpdx/private/pdx/rpc/
default_initialization_allocator.h 10 // Allocator adaptor that interposes construct() calls to convert value
13 // argument or when grown by a call to resize. This allocator avoids potentially
18 template <typename T, typename Allocator = std::allocator<T>>
19 class DefaultInitializationAllocator : public Allocator {
20 typedef std::allocator_traits<Allocator> AllocatorTraits;
29 using Allocator::Allocator;
38 AllocatorTraits::construct(static_cast<Allocator&>(*this), pointer,
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/
extptr_allocator.h 31 * An example allocator which uses an alternative pointer type from
48 * @brief An example allocator which uses a non-standard pointer type.
51 * This allocator specifies that containers use a 'relative pointer' as it's
53 * is still performed using std::allocator.
155 const std::allocator<_Tp>&
160 std::allocator<_Tp> _M_real_alloc;
182 std::allocator<void> _M_real_alloc;
189 std::allocator<_Tp> __tmp( __rarg._M_real_alloc );
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/
extptr_allocator.h 31 * An example allocator which uses an alternative pointer type from
48 * @brief An example allocator which uses a non-standard pointer type.
51 * This allocator specifies that containers use a 'relative pointer' as it's
53 * is still performed using std::allocator.
155 const std::allocator<_Tp>&
160 std::allocator<_Tp> _M_real_alloc;
182 std::allocator<void> _M_real_alloc;
189 std::allocator<_Tp> __tmp( __rarg._M_real_alloc );
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/
extptr_allocator.h 31 * An example allocator which uses an alternative pointer type from
48 * @brief An example allocator which uses a non-standard pointer type.
51 * This allocator specifies that containers use a 'relative pointer' as it's
53 * is still performed using std::allocator.
155 const std::allocator<_Tp>&
160 std::allocator<_Tp> _M_real_alloc;
182 std::allocator<void> _M_real_alloc;
189 std::allocator<_Tp> __tmp( __rarg._M_real_alloc );
  /prebuilts/ndk/r10/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/
extptr_allocator.h 31 * An example allocator which uses an alternative pointer type from
48 * @brief An example allocator which uses a non-standard pointer type.
51 * This allocator specifies that containers use a 'relative pointer' as it's
53 * is still performed using std::allocator.
155 const std::allocator<_Tp>&
160 std::allocator<_Tp> _M_real_alloc;
182 std::allocator<void> _M_real_alloc;
189 std::allocator<_Tp> __tmp( __rarg._M_real_alloc );
  /prebuilts/ndk/r11/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/
extptr_allocator.h 31 * An example allocator which uses an alternative pointer type from
48 * @brief An example allocator which uses a non-standard pointer type.
51 * This allocator specifies that containers use a 'relative pointer' as it's
53 * is still performed using std::allocator.
155 const std::allocator<_Tp>&
160 std::allocator<_Tp> _M_real_alloc;
182 std::allocator<void> _M_real_alloc;
189 std::allocator<_Tp> __tmp( __rarg._M_real_alloc );
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/list/list.cons/
default_stack_alloc.pass.cpp 27 std::list<int> l((std::allocator<int>()));
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector/vector.cons/
construct_size_value_alloc.pass.cpp 35 test<std::vector<int> >(50, 3, std::allocator<int>());
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector.bool/
construct_size_value_alloc.pass.cpp 35 test<std::vector<bool> >(50, 3, std::allocator<bool>());
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/string.streams/istringstream/
types.pass.cpp 12 // template <class charT, class traits = char_traits<charT>, class Allocator = allocator<charT> >
22 // typedef Allocator allocator_type;
35 static_assert((std::is_same<std::basic_istringstream<char>::allocator_type, std::allocator<char> >::value), "");
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/string.streams/ostringstream/
types.pass.cpp 12 // template <class charT, class traits = char_traits<charT>, class Allocator = allocator<charT> >
22 // typedef Allocator allocator_type;
35 static_assert((std::is_same<std::basic_ostringstream<char>::allocator_type, std::allocator<char> >::value), "");

Completed in 999 milliseconds

<<11121314151617181920>>