Home
last modified time | relevance | path

Searched refs:item (Results 1 – 25 of 34) sorted by relevance

12

/ndk/sources/cxx-stl/stlport/src/
Dlock_free_slist.h39 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/
Dlanginfo.c29 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()
Dnl_langinfo_l.c4 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/
Ddefault.pass.cpp49 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
Dalloc.pass.cpp61 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/
Dhash.c128 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 …]
Dhash.h40 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
Dfile.c451 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()
Dvariable.c561 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/
Dprinters.py156 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/
Dcxxabi.cc134 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/
Didentity.hpp21 # define BOOST_PP_IDENTITY(item) item BOOST_PP_EMPTY argument
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/dynarray/dynarray.mutate/
Ddefault.pass.cpp36 [&val]( const T &item ){ return item == val; } )); in test() argument
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/list/aux_/
Diterator.hpp39 typedef typename Node::item type;
55 typedef typename Node::item type;
Dfront.hpp27 typedef typename List::item type;
Ditem.hpp39 typedef T item; typedef
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/
Dfor_each.hpp69 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/
Dfdl.texi17 @item
41 @item
130 @item
146 @item
184 @item
195 @item
202 @item
209 @item
213 @item
216 @item
[all …]
Dmake-stds.texi314 @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 …]
Dmake.texi959 @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/
Dprebuilt-library.mk28 …AKEFILE):$(LOCAL_MODULE): The LOCAL_SRC_FILES for a prebuilt library should only contain one item))
/ndk/sources/third_party/googletest/googletest/test/
Dgtest_xml_test_utils.py87 expected_attr = expected_attributes.item(i)
/ndk/sources/android/cpufeatures/
Dcpu-features.c259 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/
Dbuild-ndk-sysroot.sh221 for item in `echo $2 | tr '/' ' '`; do
Dprebuilt-common.sh149 local path cur item
153 for item in $(echo "$path" | tr '/' ' '); do

12