HomeSort by relevance Sort by last modified time
    Searched refs:allocator (Results 201 - 225 of 764) sorted by null

1 2 3 4 5 6 7 891011>>

  /ndk/tests/device/test-gnustl-full/unit/
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/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/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/webkit/Source/WebKit/chromium/tests/
PODRedBlackTreeTest.cpp 46 RefPtr<TrackedAllocator> allocator = TrackedAllocator::create(); local
48 RefPtr<PODArena> arena = PODArena::create(allocator);
53 EXPECT_GT(allocator->numRegions(), 1);
55 EXPECT_EQ(allocator->numRegions(), 0);
  /ndk/sources/cxx-stl/llvm-libc++/test/containers/associative/map/
types.pass.cpp 13 // class Allocator = allocator<pair<const Key, T>>>
22 // typedef Allocator allocator_type;
41 static_assert((std::is_same<std::map<int, double>::allocator_type, std::allocator<std::pair<const int, double> > >::value), "");
  /ndk/sources/cxx-stl/llvm-libc++/test/containers/associative/multimap/
types.pass.cpp 13 // class Allocator = allocator<pair<const Key, T>>>
22 // typedef Allocator allocator_type;
41 static_assert((std::is_same<std::multimap<int, double>::allocator_type, std::allocator<std::pair<const int, double> > >::value), "");
  /ndk/sources/cxx-stl/llvm-libc++/test/containers/associative/multiset/
types.pass.cpp 13 // class Allocator = allocator<Key>>
22 // typedef Allocator allocator_type;
41 static_assert((std::is_same<std::multiset<int>::allocator_type, std::allocator<int> >::value), "");
  /ndk/sources/cxx-stl/llvm-libc++/test/containers/associative/set/
types.pass.cpp 13 // class Allocator = allocator<Key>>
22 // typedef Allocator allocator_type;
41 static_assert((std::is_same<std::set<int>::allocator_type, std::allocator<int> >::value), "");
  /ndk/sources/cxx-stl/llvm-libc++/test/containers/sequences/list/list.cons/
size_value_alloc.pass.cpp 12 // list(size_type n, const T& value, const Allocator& = Allocator());
33 std::list<int> l(3, 2, std::allocator<int>());
  /ndk/sources/cxx-stl/llvm-libc++/test/containers/sequences/vector/vector.cons/
construct_iter_iter_alloc.pass.cpp 36 std::allocator<int> alloc;
  /ndk/sources/cxx-stl/llvm-libc++/test/containers/sequences/vector.bool/
construct_iter_iter_alloc.pass.cpp 36 std::allocator<bool> alloc;
  /ndk/sources/cxx-stl/llvm-libc++/test/containers/unord/unord.map/
types.pass.cpp 13 // class Alloc = allocator<pair<const Key, T>>>
42 static_assert((std::is_same<C::allocator_type, std::allocator<C::value_type> >::value), "");
  /ndk/sources/cxx-stl/llvm-libc++/test/containers/unord/unord.map/unord.map.cnstr/
assign_init.pass.cpp 13 // class Alloc = allocator<pair<const Key, T>>>
30 typedef std::allocator<std::pair<const int, std::string> > A;
  /ndk/sources/cxx-stl/llvm-libc++/test/containers/unord/unord.multimap/
types.pass.cpp 13 // class Alloc = allocator<pair<const Key, T>>>
42 static_assert((std::is_same<C::allocator_type, std::allocator<C::value_type> >::value), "");
  /ndk/sources/cxx-stl/llvm-libc++/test/containers/unord/unord.multiset/
types.pass.cpp 13 // class Alloc = allocator<Value>>
41 static_assert((std::is_same<C::allocator_type, std::allocator<C::value_type> >::value), "");
  /ndk/sources/cxx-stl/llvm-libc++/test/containers/unord/unord.set/
types.pass.cpp 13 // class Alloc = allocator<Value>>
41 static_assert((std::is_same<C::allocator_type, std::allocator<C::value_type> >::value), "");
  /ndk/sources/cxx-stl/llvm-libc++/test/re/re.results/
types.pass.cpp 13 // class Allocator = allocator<sub_match<BidirectionalIterator>>>
23 // typedef typename allocator_traits<Allocator>::size_type size_type;
24 // typedef Allocator allocator_type;
42 static_assert((std::is_same<typename MR::allocator_type, std::allocator<std::sub_match<CharT*> > >::value), "");
  /ndk/sources/host-tools/ndk-stack/elff/
elf_alloc.cc 61 return elf->allocator()->alloc(size);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/tr1/
unordered_set.h 41 class _Alloc = std::allocator<_Value>,
90 class _Alloc = std::allocator<_Value>,
167 * @param Alloc Allocator type, defaults to allocator<Key>.
172 class _Alloc = std::allocator<_Value> >
216 * @param Alloc Allocator type, defaults to allocator<Key>.
221 class _Alloc = std::allocator<_Value> >
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/tr1/
unordered_set.h 41 class _Alloc = std::allocator<_Value>,
90 class _Alloc = std::allocator<_Value>,
167 * @param Alloc Allocator type, defaults to allocator<Key>.
172 class _Alloc = std::allocator<_Value> >
216 * @param Alloc Allocator type, defaults to allocator<Key>.
221 class _Alloc = std::allocator<_Value> >
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/tr1/
unordered_set.h 41 class _Alloc = std::allocator<_Value>,
90 class _Alloc = std::allocator<_Value>,
167 * @param Alloc Allocator type, defaults to allocator<Key>.
172 class _Alloc = std::allocator<_Value> >
216 * @param Alloc Allocator type, defaults to allocator<Key>.
221 class _Alloc = std::allocator<_Value> >

Completed in 2456 milliseconds

1 2 3 4 5 6 7 891011>>