/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/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
|
D | file.c | 451 set_intermediate (const void *item) in set_intermediate() argument 453 struct file *f = (struct file *) item; in set_intermediate() 873 print_file (const void *item) in print_file() argument 875 struct file *f = (struct file *) item; in print_file()
|
D | variable.c | 561 free_variable_name_and_value (const void *item) in free_variable_name_and_value() argument 563 struct variable *v = (struct variable *) item; in free_variable_name_and_value() 1360 print_variable (const void *item, void *arg) in print_variable() argument 1362 const struct variable *v = (struct variable *) item; in print_variable()
|
/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/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/third_party/googletest/googletest/test/ |
D | gtest_xml_test_utils.py | 87 expected_attr = expected_attributes.item(i)
|
/ndk/sources/android/cpufeatures/ |
D | cpu-features.c | 259 has_list_item(const char* list, const char* item) in has_list_item() argument 262 int itemlen = strlen(item); in has_list_item() 279 if (itemlen == q-p && !memcmp(p, item, itemlen)) in has_list_item()
|
/ndk/build/tools/ |
D | build-ndk-sysroot.sh | 221 for item in `echo $2 | tr '/' ' '`; do
|
D | prebuilt-common.sh | 149 local path cur item 153 for item in $(echo "$path" | tr '/' ' '); do
|