/ndk/sources/cxx-stl/stlport/src/ |
D | lock_free_slist.h | 39 struct item { struct 40 item* _M_next; argument 55 void push(item* __item) { in push() 88 item* pop() { in pop() 89 item* __result; in pop() 113 item* clear() { in clear() 114 item* __result; in clear() 135 item* _M_top; // Topmost element in the freelist 186 struct item { struct 187 item* _M_next; argument [all …]
|
/ndk/sources/android/crazy_linker/src/ |
D | crazy_linker_util.h | 156 void PushBack(T item) { InsertAt(static_cast<int>(count_), item); } in PushBack() argument 170 void Remove(T item) { in Remove() argument 171 int index = IndexOf(item); in Remove() 176 void InsertAt(int index, T item); 180 int IndexOf(T item) const; 182 bool Has(T item) const { return IndexOf(item) >= 0; } in Has() argument 197 int Vector<T>::IndexOf(T item) const { in IndexOf() argument 199 if (items_[n] == item) in IndexOf() 206 void Vector<T>::InsertAt(int index, T item) { in InsertAt() argument 218 items_[n] = item; in InsertAt() [all …]
|
D | crazy_linker_search_path_list.cpp | 55 const char* item = p; in FindFile() local 65 full_path_.Assign(item, item_end - item); in FindFile()
|
D | crazy_linker_system_mock.cpp | 51 void PushBack(T* item) { entries_.PushBack(item); } in PushBack() argument
|
/ndk/sources/android/support/src/musl-locale/ |
D | langinfo.c | 29 char *nl_langinfo_l(nl_item item, locale_t loc) in nl_langinfo_l() argument 31 int cat = item >> 16; in nl_langinfo_l() 32 int idx = item & 65535; in nl_langinfo_l() 35 if (item == CODESET) return "UTF-8"; in nl_langinfo_l() 63 char *nl_langinfo(nl_item item) in nl_langinfo() argument 65 return nl_langinfo_l(item, 0); in nl_langinfo()
|
D | nl_langinfo_l.c | 4 char *nl_langinfo_l(nl_item item, locale_t l) in nl_langinfo_l() argument 6 return nl_langinfo(item); in nl_langinfo_l()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/dynarray/dynarray.cons/ |
D | default.pass.cpp | 49 assert ( std::all_of ( d1.begin (), d1.end (), []( const T &item ){ return item == T(); } )); in test() argument 53 … assert ( std::all_of ( d2.begin (), d2.end (), [&val]( const T &item ){ return item == val; } )); in test() argument 57 …assert ( std::all_of ( d3.begin (), d3.end (), [&val]( const T &item ){ return item == val; } )); … in test() argument 88 assert ( std::all_of ( d1.begin (), d1.end (), []( long item ){ return item == 3L; } )); in main() argument
|
D | alloc.pass.cpp | 61 assert ( std::all_of ( d1.begin (), d1.end (), []( const T &item ){ return item == T(); } )); in test() argument 66 … assert ( std::all_of ( d2.begin (), d2.end (), [&val]( const T &item ){ return item == val; } )); in test() argument 71 …assert ( std::all_of ( d3.begin (), d3.end (), [&val]( const T &item ){ return item == val; } )); … in test() argument
|
/ndk/sources/host-tools/make-3.81/ |
D | hash.c | 128 hash_insert (struct hash_table *ht, const void *item) in hash_insert() argument 130 void **slot = hash_find_slot (ht, item); in hash_insert() 132 hash_insert_at (ht, item, slot); in hash_insert() 137 hash_insert_at (struct hash_table *ht, const void *item, const void *slot) in hash_insert_at() argument 145 old_item = item; in hash_insert_at() 147 *(void const **) slot = item; in hash_insert_at() 151 return (void *) hash_find_slot (ht, item); in hash_insert_at() 158 hash_delete (struct hash_table *ht, const void *item) in hash_delete() argument 160 void **slot = hash_find_slot (ht, item); in hash_delete() 167 void *item = *(void **) slot; in hash_delete_at() local [all …]
|
D | hash.h | 40 typedef void (*hash_map_func_t) __P((void const *item)); 41 typedef void (*hash_map_arg_func_t) __P((void const *item, void *arg)); 66 void *hash_insert __P((struct hash_table *ht, const void *item)); 67 void *hash_insert_at __P((struct hash_table *ht, const void *item, void const *slot)); 68 void *hash_delete __P((struct hash_table *ht, void const *item)); 79 #define HASH_VACANT(item) ((item) == 0 || (void *) (item) == hash_deleted_item) argument
|
/ndk/sources/host-tools/gdb-pretty-printers/stlport/gppfs-0.2/stlport/ |
D | printers.py | 156 self.item = start_cur 166 if self.item == self.last: 168 result = ('[%d]' % self.count, self.item.dereference()) 170 self.item += 1 171 if self.item == self.node_last: 173 self.item = self.node[0] 174 self.node_last = self.item + self.buffer_size 225 self.item = head['_M_next'] 232 if self.item == self.sentinel: 234 node = self.item.cast (self.node_type).dereference() [all …]
|
/ndk/sources/cxx-stl/gabi++/src/ |
D | cxxabi.cc | 134 FreeItem* item = free_items_; in Alloc() local 135 free_items_ = item->next; in Alloc() 136 ::memset(item, 0, item_size_); in Alloc() 137 return item; in Alloc() 145 FreeItem* item = reinterpret_cast<FreeItem*>(obj); in Release() local 146 item->next = free_items_; in Release() 147 free_items_ = item; in Release() 166 FreeItem* item = reinterpret_cast<FreeItem*>(new_slab); in AllocateSlab() local 168 *pparent = item; in AllocateSlab() 169 pparent = &item->next; in AllocateSlab() [all …]
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/preprocessor/facilities/ |
D | identity.hpp | 21 # define BOOST_PP_IDENTITY(item) item BOOST_PP_EMPTY argument
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/dynarray/dynarray.mutate/ |
D | default.pass.cpp | 36 [&val]( const T &item ){ return item == val; } )); in test() argument
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/list/aux_/ |
D | iterator.hpp | 39 typedef typename Node::item type; 55 typedef typename Node::item type;
|
D | front.hpp | 27 typedef typename List::item type;
|
D | item.hpp | 39 typedef T item; typedef
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/ |
D | for_each.hpp | 69 typedef typename deref<Iterator>::type item; in execute() typedef 70 typedef typename apply1<TransformFunc,item>::type arg; in execute()
|
/ndk/sources/host-tools/sed-4.2.1/doc/ |
D | sed.texi | 193 @item --version 199 @item --help 206 @item -n 220 @item -e @var{script} 228 @item -f @var{script-file} 236 @item -i[@var{SUFFIX}] 274 @item -l @var{N} 283 @item --posix 298 @item -b 311 @item --follow-symlinks [all …]
|
D | sed-in.texi | 192 @item --version 198 @item --help 205 @item -n 219 @item -e @var{script} 227 @item -f @var{script-file} 235 @item -i[@var{SUFFIX}] 273 @item -l @var{N} 282 @item --posix 297 @item -b 310 @item --follow-symlinks [all …]
|
/ndk/sources/host-tools/make-3.81/doc/ |
D | fdl.texi | 17 @item 41 @item 130 @item 146 @item 184 @item 195 @item 202 @item 209 @item 213 @item 216 @item [all …]
|
D | make-stds.texi | 314 @item prefix 326 @item exec_prefix 345 @item bindir 352 @item sbindir 360 @item libexecdir 379 @item 383 @item 399 @item datarootdir 407 @item datadir 422 @item sysconfdir [all …]
|
D | make.texi | 959 @item 968 @item 975 @item 983 @item 988 @item 991 @item 995 @item 1002 @item 1272 @item .DEFAULT_GOAL 1320 @item MAKE_RESTARTS [all …]
|
/ndk/build/core/ |
D | prebuilt-library.mk | 28 …AKEFILE):$(LOCAL_MODULE): The LOCAL_SRC_FILES for a prebuilt library should only contain one item))
|
/ndk/sources/host-tools/sed-4.2.1/po/ |
D | ko.po | 383 msgstr "%s �� ��(item)�� ����� �� �����ϴ�: %s" 387 msgid "couldn't write %d item to %s: %s" 389 msgstr[0] "%2$s �� %1$d ��(item)�� ����� �� �����ϴ�: %3$s" 390 msgstr[1] "%2$s �� %1$d ��(item)�� ����� �� �����ϴ�: %3$s" 400 msgstr "%s �� ��(item)�� ����� �� �����ϴ�: %s"
|