HomeSort by relevance Sort by last modified time
    Searched refs:allocator (Results 251 - 275 of 1067) sorted by null

<<11121314151617181920>>

  /external/clang/test/SemaCXX/
crashes.cpp 4 template<typename _Alloc> class allocator;
7 typename _Alloc = allocator<_CharT> >
  /external/stlport/test/unit/
allocator_test.cpp 40 typedef allocator<char> CharAllocator;
58 typedef allocator<BigStruct> BigStructAllocType;
bitset_test.cpp 67 string representation = b2.to_string<char, char_traits<char>, allocator<char> >();
70 wstring wrepresentation = b2.to_string<wchar_t, char_traits<wchar_t>, allocator<wchar_t> >();
  /frameworks/base/libs/hwui/
DeferredDisplayList.h 52 static void* operator new(size_t size, LinearAllocator& allocator) {
53 return allocator.alloc(size);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector/
types.pass.cpp 14 // template <class T, class Allocator = allocator<T> >
19 // typedef Allocator allocator_type;
40 template <class T, class Allocator>
44 typedef std::vector<T, Allocator> C;
47 static_assert((std::is_same<typename C::value_type, typename Allocator::value_type>::value), "");
48 static_assert((std::is_same<typename C::allocator_type, Allocator>::value), "");
49 static_assert((std::is_same<typename C::size_type, typename Allocator::size_type>::value), "");
50 static_assert((std::is_same<typename C::difference_type, typename Allocator::difference_type>::value), "");
51 static_assert((std::is_same<typename C::reference, typename Allocator::reference>::value), "")
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/
types.pass.cpp 15 // class Allocator = allocator<charT> >
21 // typedef Allocator allocator_type;
22 // typedef typename Allocator::size_type size_type;
23 // typedef typename Allocator::difference_type difference_type;
24 // typedef typename Allocator::reference reference;
25 // typedef typename Allocator::const_reference const_reference;
26 // typedef typename Allocator::pointer pointer;
27 // typedef typename Allocator::const_pointer const_pointer;
43 template <class Traits, class Allocator>
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/default.allocator/allocator.members/
construct.pass.cpp 12 // allocator:
80 std::allocator<A> a;
125 std::allocator<move_only> a;
  /ndk/tests/device/test-gnustl-full/unit/
allocator_test.cpp 40 typedef allocator<char> CharAllocator;
58 typedef allocator<BigStruct> BigStructAllocType;
bitset_test.cpp 67 string representation = b2.to_string<char, char_traits<char>, allocator<char> >();
70 wstring wrepresentation = b2.to_string<wchar_t, char_traits<wchar_t>, allocator<wchar_t> >();
  /ndk/tests/device/test-stlport/unit/
allocator_test.cpp 40 typedef allocator<char> CharAllocator;
58 typedef allocator<BigStruct> BigStructAllocType;
bitset_test.cpp 67 string representation = b2.to_string<char, char_traits<char>, allocator<char> >();
70 wstring wrepresentation = b2.to_string<wchar_t, char_traits<wchar_t>, allocator<wchar_t> >();
  /external/chromium/third_party/libjingle/source/talk/p2p/client/
basicportallocator.cc 220 BasicPortAllocator *allocator,
223 : PortAllocatorSession(allocator->flags()), allocator_(allocator),
418 LOG_J(LS_INFO, port) << "Added port to allocator";
482 LOG_J(LS_INFO, port) << "Removed port from allocator ("
540 talk_base::_max(0, session->allocator()->best_writable_phase());
667 session_->allocator()->socket_factory(),
669 session_->allocator()->min_port(),
670 session_->allocator()->max_port());
682 session_->allocator()->socket_factory()
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/p2p/client/
portallocator_unittest.cc 202 cricket::BasicPortAllocator& allocator() { function in class:PortAllocatorTest
249 // Tests that we can init the port allocator and create a session.
251 EXPECT_EQ(&network_manager_, allocator().network_manager());
252 EXPECT_EQ(kStunAddr, allocator().stun_address());
253 ASSERT_EQ(1u, allocator().relays().size());
254 EXPECT_EQ(cricket::RELAY_GTURN, allocator().relays()[0].type);
256 EXPECT_TRUE(allocator().relays()[0].credentials.username.empty());
257 EXPECT_TRUE(allocator().relays()[0].credentials.password.empty());
550 allocator().set_flags(cricket::PORTALLOCATOR_ENABLE_BUNDLE);
577 allocator().set_flags(cricket::PORTALLOCATOR_ENABLE_BUNDLE)
    [all...]
  /external/chromium/third_party/libjingle/source/talk/p2p/base/
rawtransportchannel.h 63 PortAllocator *allocator);
74 // Creates an allocator session to start figuring out which type of
103 // Called when the allocator creates another port.
  /external/chromium_org/third_party/WebKit/Source/core/tests/
PODRedBlackTreeTest.cpp 46 RefPtr<TrackedAllocator> allocator = TrackedAllocator::create(); local
49 RefPtr<PODIntegerArena> arena = PODIntegerArena::create(allocator);
54 EXPECT_GT(allocator->numRegions(), 1);
56 EXPECT_EQ(allocator->numRegions(), 0);
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
p2ptransport.h 42 PortAllocator* allocator);
  /external/chromium_org/third_party/skia/src/core/
SkBitmapScaler.cpp 242 SkBitmap::Allocator* allocator) {
291 result.allocPixels(allocator, NULL);
314 SkBitmap::Allocator* allocator) {
317 convolveProcs, allocator);
  /external/chromium_org/v8/src/
list-inl.h 149 void List<T, P>::Allocate(int length, P allocator) {
151 Initialize(length, allocator);
231 void List<T, P>::Initialize(int capacity, P allocator) {
233 data_ = (capacity > 0) ? NewData(capacity, allocator) : NULL;
  /external/clang/test/SemaTemplate/
default-expr-arguments.cpp 153 struct allocator { struct in namespace:PR5810
154 allocator() { int a[sizeof(T) ? -1 : -1]; } // expected-error2 {{array with a negative size}} function in struct:PR5810::allocator
159 vector(const allocator<T>& = allocator<T>()) {} // expected-note2 {{instantiation of}}
  /external/qemu/elff/
elf_alloc.cc 61 return elf->allocator()->alloc(size);
  /external/skia/src/core/
SkBitmapScaler.cpp 242 SkBitmap::Allocator* allocator) {
291 result.allocPixels(allocator, NULL);
314 SkBitmap::Allocator* allocator) {
317 convolveProcs, allocator);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/deque/deque.cons/
size_value_alloc.pass.cpp 19 template <class T, class Allocator>
21 test(unsigned n, const T& x, const Allocator& a)
23 typedef std::deque<T, Allocator> C;
36 std::allocator<int> a;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/list/list.cons/
default.pass.cpp 32 std::list<int> l((std::allocator<int>()));
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector/vector.cons/
copy_alloc.pass.cpp 35 test(std::vector<int>(a, an), std::allocator<int>());
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector.bool/
copy_alloc.pass.cpp 35 test(std::vector<bool>(a, an), std::allocator<bool>());

Completed in 1369 milliseconds

<<11121314151617181920>>