HomeSort by relevance Sort by last modified time
    Searched full:allocator (Results 1 - 25 of 2070) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /dalvik/tests/074-gc-thrash/
info.txt 1 This thrashes the memory allocator and garbage collector for a brief period.
  /external/dbus/dbus/
dbus-dataslot.c 40 * Initializes a data slot allocator object, used to assign
43 * @param allocator the allocator to initialize
46 _dbus_data_slot_allocator_init (DBusDataSlotAllocator *allocator)
48 allocator->allocated_slots = NULL;
49 allocator->n_allocated_slots = 0;
50 allocator->n_used_slots = 0;
51 allocator->lock_loc = NULL;
63 * @param allocator the allocator
382 DBusDataSlotAllocator allocator; local
    [all...]
  /external/stlport/src/
string.cpp 33 template class _STLP_CLASS_DECLSPEC allocator<char>; variable in typeref:class:_STLP_CLASS_DECLSPEC
37 template class _STLP_CLASS_DECLSPEC _STLP_alloc_proxy<char*, char, allocator<char> >;
38 template class _STLP_CLASS_DECLSPEC _String_base<char, allocator<char> >;
43 template class _STLP_CLASS_DECLSPEC basic_string<char, char_traits<char>, allocator<char> >;
44 template class _STLP_CLASS_DECLSPEC __construct_checker<basic_string<char, char_traits<char>, allocator<char> > >;
55 template class _STLP_CLASS_DECLSPEC basic_string<char, char_traits<char>, allocator<char> >;
63 template class _STLP_CLASS_DECLSPEC allocator<wchar_t>; variable in typeref:class:_STLP_CLASS_DECLSPEC
67 template class _STLP_CLASS_DECLSPEC _String_base<wchar_t, allocator<wchar_t> >;
72 template class _STLP_CLASS_DECLSPEC basic_string<wchar_t, char_traits<wchar_t>, allocator<wchar_t> >;
73 template class _STLP_CLASS_DECLSPEC __construct_checker<basic_string<wchar_t, char_traits<wchar_t>, allocator<wchar_t> > >
    [all...]
sstream.cpp 27 template class _STLP_CLASS_DECLSPEC basic_stringbuf<char, char_traits<char>, allocator<char> >;
28 template class _STLP_CLASS_DECLSPEC basic_ostringstream<char, char_traits<char>, allocator<char> >;
29 template class _STLP_CLASS_DECLSPEC basic_istringstream<char, char_traits<char>, allocator<char> >;
30 template class _STLP_CLASS_DECLSPEC basic_stringstream<char, char_traits<char>, allocator<char> >;
33 template class _STLP_CLASS_DECLSPEC basic_stringbuf<wchar_t, char_traits<wchar_t>, allocator<wchar_t> >;
34 template class _STLP_CLASS_DECLSPEC basic_ostringstream<wchar_t, char_traits<wchar_t>, allocator<wchar_t> >;
35 template class _STLP_CLASS_DECLSPEC basic_istringstream<wchar_t, char_traits<wchar_t>, allocator<wchar_t> >;
36 template class _STLP_CLASS_DECLSPEC basic_stringstream<wchar_t, char_traits<wchar_t>, allocator<wchar_t> >;
  /ndk/sources/cxx-stl/stlport/src/
string.cpp 33 template class _STLP_CLASS_DECLSPEC allocator<char>; variable in typeref:class:_STLP_CLASS_DECLSPEC
37 template class _STLP_CLASS_DECLSPEC _STLP_alloc_proxy<char*, char, allocator<char> >;
38 template class _STLP_CLASS_DECLSPEC _String_base<char, allocator<char> >;
43 template class _STLP_CLASS_DECLSPEC basic_string<char, char_traits<char>, allocator<char> >;
44 template class _STLP_CLASS_DECLSPEC __construct_checker<basic_string<char, char_traits<char>, allocator<char> > >;
55 template class _STLP_CLASS_DECLSPEC basic_string<char, char_traits<char>, allocator<char> >;
63 template class _STLP_CLASS_DECLSPEC allocator<wchar_t>; variable in typeref:class:_STLP_CLASS_DECLSPEC
67 template class _STLP_CLASS_DECLSPEC _String_base<wchar_t, allocator<wchar_t> >;
72 template class _STLP_CLASS_DECLSPEC basic_string<wchar_t, char_traits<wchar_t>, allocator<wchar_t> >;
73 template class _STLP_CLASS_DECLSPEC __construct_checker<basic_string<wchar_t, char_traits<wchar_t>, allocator<wchar_t> > >
    [all...]
sstream.cpp 27 template class _STLP_CLASS_DECLSPEC basic_stringbuf<char, char_traits<char>, allocator<char> >;
28 template class _STLP_CLASS_DECLSPEC basic_ostringstream<char, char_traits<char>, allocator<char> >;
29 template class _STLP_CLASS_DECLSPEC basic_istringstream<char, char_traits<char>, allocator<char> >;
30 template class _STLP_CLASS_DECLSPEC basic_stringstream<char, char_traits<char>, allocator<char> >;
33 template class _STLP_CLASS_DECLSPEC basic_stringbuf<wchar_t, char_traits<wchar_t>, allocator<wchar_t> >;
34 template class _STLP_CLASS_DECLSPEC basic_ostringstream<wchar_t, char_traits<wchar_t>, allocator<wchar_t> >;
35 template class _STLP_CLASS_DECLSPEC basic_istringstream<wchar_t, char_traits<wchar_t>, allocator<wchar_t> >;
36 template class _STLP_CLASS_DECLSPEC basic_stringstream<wchar_t, char_traits<wchar_t>, allocator<wchar_t> >;
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/
priority_queue_base_dispatch.hpp 55 template<typename Value_Type, typename Cmp_Fn, typename Tag, typename Allocator>
58 template<typename Value_Type, typename Cmp_Fn, typename Allocator>
59 struct priority_queue_base_dispatch<Value_Type, Cmp_Fn, pairing_heap_tag, Allocator>
61 typedef pairing_heap_< Value_Type, Cmp_Fn, Allocator> type;
64 template<typename Value_Type, typename Cmp_Fn, typename Allocator>
65 struct priority_queue_base_dispatch<Value_Type, Cmp_Fn, binomial_heap_tag, Allocator>
67 typedef binomial_heap_< Value_Type, Cmp_Fn, Allocator> type;
70 template<typename Value_Type, typename Cmp_Fn, typename Allocator>
71 struct priority_queue_base_dispatch<Value_Type, Cmp_Fn, rc_binomial_heap_tag, Allocator>
73 typedef rc_binomial_heap_< Value_Type, Cmp_Fn, Allocator> type
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/ext/pb_ds/detail/
priority_queue_base_dispatch.hpp 55 template<typename Value_Type, typename Cmp_Fn, typename Tag, typename Allocator>
58 template<typename Value_Type, typename Cmp_Fn, typename Allocator>
59 struct priority_queue_base_dispatch<Value_Type, Cmp_Fn, pairing_heap_tag, Allocator>
61 typedef pairing_heap_< Value_Type, Cmp_Fn, Allocator> type;
64 template<typename Value_Type, typename Cmp_Fn, typename Allocator>
65 struct priority_queue_base_dispatch<Value_Type, Cmp_Fn, binomial_heap_tag, Allocator>
67 typedef binomial_heap_< Value_Type, Cmp_Fn, Allocator> type;
70 template<typename Value_Type, typename Cmp_Fn, typename Allocator>
71 struct priority_queue_base_dispatch<Value_Type, Cmp_Fn, rc_binomial_heap_tag, Allocator>
73 typedef rc_binomial_heap_< Value_Type, Cmp_Fn, Allocator> type
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/ext/pb_ds/detail/
priority_queue_base_dispatch.hpp 55 template<typename Value_Type, typename Cmp_Fn, typename Tag, typename Allocator>
58 template<typename Value_Type, typename Cmp_Fn, typename Allocator>
59 struct priority_queue_base_dispatch<Value_Type, Cmp_Fn, pairing_heap_tag, Allocator>
61 typedef pairing_heap_< Value_Type, Cmp_Fn, Allocator> type;
64 template<typename Value_Type, typename Cmp_Fn, typename Allocator>
65 struct priority_queue_base_dispatch<Value_Type, Cmp_Fn, binomial_heap_tag, Allocator>
67 typedef binomial_heap_< Value_Type, Cmp_Fn, Allocator> type;
70 template<typename Value_Type, typename Cmp_Fn, typename Allocator>
71 struct priority_queue_base_dispatch<Value_Type, Cmp_Fn, rc_binomial_heap_tag, Allocator>
73 typedef rc_binomial_heap_< Value_Type, Cmp_Fn, Allocator> type
    [all...]
  /prebuilts/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/
priority_queue_base_dispatch.hpp 55 template<typename Value_Type, typename Cmp_Fn, typename Tag, typename Allocator>
58 template<typename Value_Type, typename Cmp_Fn, typename Allocator>
59 struct priority_queue_base_dispatch<Value_Type, Cmp_Fn, pairing_heap_tag, Allocator>
61 typedef pairing_heap_< Value_Type, Cmp_Fn, Allocator> type;
64 template<typename Value_Type, typename Cmp_Fn, typename Allocator>
65 struct priority_queue_base_dispatch<Value_Type, Cmp_Fn, binomial_heap_tag, Allocator>
67 typedef binomial_heap_< Value_Type, Cmp_Fn, Allocator> type;
70 template<typename Value_Type, typename Cmp_Fn, typename Allocator>
71 struct priority_queue_base_dispatch<Value_Type, Cmp_Fn, rc_binomial_heap_tag, Allocator>
73 typedef rc_binomial_heap_< Value_Type, Cmp_Fn, Allocator> type
    [all...]
  /prebuilts/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/
priority_queue_base_dispatch.hpp 55 template<typename Value_Type, typename Cmp_Fn, typename Tag, typename Allocator>
58 template<typename Value_Type, typename Cmp_Fn, typename Allocator>
59 struct priority_queue_base_dispatch<Value_Type, Cmp_Fn, pairing_heap_tag, Allocator>
61 typedef pairing_heap_< Value_Type, Cmp_Fn, Allocator> type;
64 template<typename Value_Type, typename Cmp_Fn, typename Allocator>
65 struct priority_queue_base_dispatch<Value_Type, Cmp_Fn, binomial_heap_tag, Allocator>
67 typedef binomial_heap_< Value_Type, Cmp_Fn, Allocator> type;
70 template<typename Value_Type, typename Cmp_Fn, typename Allocator>
71 struct priority_queue_base_dispatch<Value_Type, Cmp_Fn, rc_binomial_heap_tag, Allocator>
73 typedef rc_binomial_heap_< Value_Type, Cmp_Fn, Allocator> type
    [all...]
  /prebuilts/ndk/android-ndk-r7/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/
priority_queue_base_dispatch.hpp 55 template<typename Value_Type, typename Cmp_Fn, typename Tag, typename Allocator>
58 template<typename Value_Type, typename Cmp_Fn, typename Allocator>
59 struct priority_queue_base_dispatch<Value_Type, Cmp_Fn, pairing_heap_tag, Allocator>
61 typedef pairing_heap_< Value_Type, Cmp_Fn, Allocator> type;
64 template<typename Value_Type, typename Cmp_Fn, typename Allocator>
65 struct priority_queue_base_dispatch<Value_Type, Cmp_Fn, binomial_heap_tag, Allocator>
67 typedef binomial_heap_< Value_Type, Cmp_Fn, Allocator> type;
70 template<typename Value_Type, typename Cmp_Fn, typename Allocator>
71 struct priority_queue_base_dispatch<Value_Type, Cmp_Fn, rc_binomial_heap_tag, Allocator>
73 typedef rc_binomial_heap_< Value_Type, Cmp_Fn, Allocator> type
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/pat_trie_/
traits.hpp 65 class Allocator>
72 Allocator>
75 typedef types_traits< Key, Mapped, Allocator, false> type_traits;
84 Allocator>::type
101 Allocator>
109 Allocator>
117 Allocator>
125 Allocator>
136 Allocator>
147 Allocator>
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/ext/pb_ds/detail/pat_trie_/
traits.hpp 65 class Allocator>
72 Allocator>
75 typedef types_traits< Key, Mapped, Allocator, false> type_traits;
84 Allocator>::type
101 Allocator>
109 Allocator>
117 Allocator>
125 Allocator>
136 Allocator>
147 Allocator>
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/ext/pb_ds/detail/pat_trie_/
traits.hpp 65 class Allocator>
72 Allocator>
75 typedef types_traits< Key, Mapped, Allocator, false> type_traits;
84 Allocator>::type
101 Allocator>
109 Allocator>
117 Allocator>
125 Allocator>
136 Allocator>
147 Allocator>
    [all...]
  /prebuilts/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/pat_trie_/
traits.hpp 65 class Allocator>
72 Allocator>
75 typedef types_traits< Key, Mapped, Allocator, false> type_traits;
84 Allocator>::type
101 Allocator>
109 Allocator>
117 Allocator>
125 Allocator>
136 Allocator>
147 Allocator>
    [all...]
  /prebuilts/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/pat_trie_/
traits.hpp 65 class Allocator>
72 Allocator>
75 typedef types_traits< Key, Mapped, Allocator, false> type_traits;
84 Allocator>::type
101 Allocator>
109 Allocator>
117 Allocator>
125 Allocator>
136 Allocator>
147 Allocator>
    [all...]
  /prebuilts/ndk/android-ndk-r7/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/pat_trie_/
traits.hpp 65 class Allocator>
72 Allocator>
75 typedef types_traits< Key, Mapped, Allocator, false> type_traits;
84 Allocator>::type
101 Allocator>
109 Allocator>
117 Allocator>
125 Allocator>
136 Allocator>
147 Allocator>
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/bits/
allocator.h 39 /** @file bits/allocator.h
47 // Define the base class to std::allocator.
48 #include <bits/c++allocator.h>
66 class allocator;
68 /// allocator<void> specialization.
70 class allocator<void> class
81 { typedef allocator<_Tp1> other; };
85 * @brief The @a standard allocator, as per [20.4].
92 class allocator: public __glibcxx_base_allocator<_Tp> class in inherits:__glibcxx_base_allocator
105 { typedef allocator<_Tp1> other; }
107 allocator() throw() { } function in class:allocator
109 allocator(const allocator& __a) throw() function in class:allocator
113 allocator(const allocator<_Tp1>&) throw() { } function in class:allocator
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/bits/
allocator.h 39 /** @file bits/allocator.h
47 // Define the base class to std::allocator.
48 #include <bits/c++allocator.h>
66 class allocator;
68 /// allocator<void> specialization.
70 class allocator<void> class
81 { typedef allocator<_Tp1> other; };
85 * @brief The @a standard allocator, as per [20.4].
92 class allocator: public __glibcxx_base_allocator<_Tp> class in inherits:__glibcxx_base_allocator
105 { typedef allocator<_Tp1> other; }
107 allocator() throw() { } function in class:allocator
109 allocator(const allocator& __a) throw() function in class:allocator
113 allocator(const allocator<_Tp1>&) throw() { } function in class:allocator
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/rb_tree_map_/
traits.hpp 58 typename Allocator>
65 Allocator> : public bin_search_tree_traits<
74 Allocator,
81 Allocator>::type,
82 Allocator>,
83 Allocator>
93 class Allocator>
100 Allocator> : public bin_search_tree_traits<
109 Allocator,
116 Allocator>::type
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/splay_tree_/
traits.hpp 59 class Allocator>
66 Allocator> : public bin_search_tree_traits<
75 Allocator,
82 Allocator>::type,
83 Allocator>,
84 Allocator>
94 class Allocator>
96 splay_tree_tag, Allocator>
99 splay_tree_node_<typename types_traits<Key, null_mapped_type, Allocator, false>::value_type,
105 Allocator>::type
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/ext/pb_ds/detail/rb_tree_map_/
traits.hpp 58 typename Allocator>
65 Allocator> : public bin_search_tree_traits<
74 Allocator,
81 Allocator>::type,
82 Allocator>,
83 Allocator>
93 class Allocator>
100 Allocator> : public bin_search_tree_traits<
109 Allocator,
116 Allocator>::type
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/ext/pb_ds/detail/splay_tree_/
traits.hpp 59 class Allocator>
66 Allocator> : public bin_search_tree_traits<
75 Allocator,
82 Allocator>::type,
83 Allocator>,
84 Allocator>
94 class Allocator>
96 splay_tree_tag, Allocator>
99 splay_tree_node_<typename types_traits<Key, null_mapped_type, Allocator, false>::value_type,
105 Allocator>::type
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/ext/pb_ds/detail/rb_tree_map_/
traits.hpp 58 typename Allocator>
65 Allocator> : public bin_search_tree_traits<
74 Allocator,
81 Allocator>::type,
82 Allocator>,
83 Allocator>
93 class Allocator>
100 Allocator> : public bin_search_tree_traits<
109 Allocator,
116 Allocator>::type
    [all...]

Completed in 985 milliseconds

1 2 3 4 5 6 7 8 91011>>