HomeSort by relevance Sort by last modified time
    Searched refs:item (Results 1 - 25 of 3763) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /system/core/toolbox/upstream-netbsd/usr.bin/grep/
queue.c 62 struct qentry *item; local
64 item = grep_malloc(sizeof(struct qentry));
65 item->data.dat = grep_malloc(sizeof(char) * x->len);
66 item->data.len = x->len;
67 item->data.line_no = x->line_no;
68 item->data.off = x->off;
69 memcpy(item->data.dat, x->dat, x->len);
70 item->data.file = x->file;
72 STAILQ_INSERT_TAIL(&queue, item, list);
75 item = dequeue()
84 struct qentry *item; local
98 struct qentry *item; local
110 struct qentry *item; local
    [all...]
  /external/clang/test/CodeGen/
2003-11-19-AddressOfRegister.c 3 struct item { struct
8 register struct item *aa;
  /frameworks/support/v4/honeycomb/android/support/v4/view/
MenuItemCompatHoneycomb.java 26 public static void setShowAsAction(MenuItem item, int actionEnum) {
27 item.setShowAsAction(actionEnum);
30 public static MenuItem setActionView(MenuItem item, View view) {
31 return item.setActionView(view);
34 public static MenuItem setActionView(MenuItem item, int resId) {
35 return item.setActionView(resId);
38 public static View getActionView(MenuItem item) {
39 return item.getActionView();
  /external/webrtc/src/system_wrappers/source/
map_no_stl.cc 17 MapNoStlItem::MapNoStlItem(int id, void* item)
21 item_ptr_(item)
79 MapNoStlItem* item = first_; local
81 if (!item)
87 while(item->next_)
90 // 1. Item should be inserted first.
91 // 2. Item should be inserted between two items
92 // 3. Item should be inserted last
93 if (item->GetId() > id)
95 new_item->next_ = item;
148 MapNoStlItem* item = Locate(id); local
165 MapNoStlItem* item = Locate(id); local
175 MapNoStlItem* item = first_; local
    [all...]
list_no_stl.cc 17 ListItem::ListItem(const void* item)
20 item_ptr_(item),
25 ListItem::ListItem(const unsigned int item)
29 item_(item)
81 ListItem* item = new ListItem(ptr); local
83 PushBackImpl(item);
89 ListItem* item = new ListItem(item_id); local
91 PushBackImpl(item);
97 ListItem* item = new ListItem(item_id); local
99 PushFrontImpl(item);
105 ListItem* item = new ListItem(ptr); local
    [all...]
  /frameworks/support/v4/ics/android/support/v4/view/
MenuItemCompatIcs.java 23 public static boolean expandActionView(MenuItem item) {
24 return item.expandActionView();
27 public static boolean collapseActionView(MenuItem item) {
28 return item.collapseActionView();
31 public static boolean isActionViewExpanded(MenuItem item) {
32 return item.isActionViewExpanded();
35 public static MenuItem setOnActionExpandListener(MenuItem item,
37 return item.setOnActionExpandListener(new OnActionExpandListenerWrapper(listener));
46 boolean onMenuItemActionExpand(MenuItem item);
47 boolean onMenuItemActionCollapse(MenuItem item);
    [all...]
  /frameworks/support/v4/java/android/support/v4/view/
MenuItemCompat.java 36 * Never show this item as a button in an Action Bar.
41 * Show this item as a button in an Action Bar if the system
47 * Always show this item as a button in an Action Bar. Use sparingly!
56 * When this item is in the action bar, always show it with a
62 * This item's action view collapses to a normal menu item.
72 void setShowAsAction(MenuItem item, int actionEnum);
73 MenuItem setActionView(MenuItem item, View view);
74 MenuItem setActionView(MenuItem item, int resId);
75 View getActionView(MenuItem item);
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Misc/
ListStack`1.cs 47 T item;
48 if (!TryPeek(depth, out item))
51 return item;
54 public bool TryPeek(out T item)
56 return TryPeek(0, out item);
59 public bool TryPeek(int depth, out T item)
63 item = default(T);
67 item = this[Count - depth - 1];
80 public bool TryPop(out T item)
84 item = default(T)
    [all...]
  /external/wpa_supplicant_8/src/utils/
list.h 28 static inline void dl_list_add(struct dl_list *list, struct dl_list *item)
30 item->next = list->next;
31 item->prev = list;
32 list->next->prev = item;
33 list->next = item;
36 static inline void dl_list_add_tail(struct dl_list *list, struct dl_list *item)
38 dl_list_add(list->prev, item);
41 static inline void dl_list_del(struct dl_list *item)
43 item->next->prev = item->prev
56 struct dl_list *item; local
    [all...]
  /external/google-breakpad/src/processor/
simple_serializer.h 51 // Calculate and return the size of the 'item'.
52 static size_t SizeOf(const Type &item) { return sizeof(item); }
53 // Write 'item' to memory location 'dest', and return to the "end" address of
55 static char *Write(const Type &item, char *dest) {
56 new (dest) Type(item);
57 return dest + SizeOf(item);
  /external/boringssl/src/ssl/pqueue/
pqueue.c 72 pitem *item = (pitem *)OPENSSL_malloc(sizeof(pitem)); local
73 if (item == NULL) {
77 memcpy(item->priority, prio64be, sizeof(item->priority));
79 item->data = data;
80 item->next = NULL;
82 return item;
85 void pitem_free(pitem *item) {
86 if (item == NULL) {
90 OPENSSL_free(item);
128 pitem *item = pq->items; local
190 pitem *item = pq->items; local
    [all...]
pqueue_test.c 24 pitem *item = pqueue_pop(q); local
25 if (item == NULL) {
28 pitem_free(item);
40 pitem *item = pitem_new(priority, &data); local
41 if (item == NULL ||
42 pqueue_insert(q, item) != item ||
44 pqueue_peek(q) != item ||
45 pqueue_pop(q) != item ||
50 pitem_free(item);
65 pitem *curr, *item; local
    [all...]
  /ndk/sources/android/support/src/musl-locale/
nl_langinfo_l.c 4 char *nl_langinfo_l(nl_item item, locale_t l)
6 return nl_langinfo(item);
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/preprocessor/facilities/
identity.hpp 21 # define BOOST_PP_IDENTITY(item) item BOOST_PP_EMPTY
  /packages/apps/Browser/src/com/android/browser/
WebBackForwardListClient.java 28 * Notify the client that <var>item</var> has been added to the
30 * @param item The newly created WebHistoryItem
32 public void onNewHistoryItem(WebHistoryItem item) { }
35 * Notify the client that the <var>item</var> at <var>index</var> is now
36 * the current history item.
37 * @param item A WebHistoryItem
40 public void onIndexChanged(WebHistoryItem item, int index) { }
  /libcore/luni/src/main/java/org/w3c/dom/
DOMImplementationList.java 26 * Returns the <code>index</code>th item in the collection. If
35 public DOMImplementation item(int index); method in interface:DOMImplementationList
NodeList.java 25 * Returns the <code>index</code>th item in the collection. If
33 public Node item(int index); method in interface:NodeList
  /external/emma/core/java12/com/vladium/emma/report/
AbstractItemVisitor.java 20 public Object visit (final AllItem item, final Object ctx)
25 public Object visit (final PackageItem item, final Object ctx)
30 public Object visit (final SrcFileItem item, final Object ctx)
35 public Object visit (final ClassItem item, final Object ctx)
40 public Object visit (final MethodItem item, final Object ctx)
IItemVisitor.java 19 Object visit (AllItem item, Object ctx);
20 Object visit (PackageItem item, Object ctx);
21 Object visit (SrcFileItem item, Object ctx);
22 Object visit (ClassItem item, Object ctx);
23 Object visit (MethodItem item, Object ctx);
  /external/openfst/src/include/fst/
union-find.h 43 // Finds the representative of the set 'item' belongs to.
45 T FindSet(T item) {
46 if (item >= parent_.size()
47 || item == fail_
48 || parent_[item] == fail_) return fail_;
50 T *p = &parent_[item];
51 for (; *p != item; item = *p, p = &parent_[item]) {
66 // 'item'. The range [0;max) is reset if item >= max
    [all...]
  /external/selinux/libsepol/cil/src/
cil_list.c 62 struct cil_list_item *item = (*list)->head; local
64 while (item != NULL)
66 next = item->next;
67 if (item->flavor == CIL_LIST) {
68 cil_list_destroy((struct cil_list**)&(item->data), destroy_data);
69 free(item);
71 cil_list_item_destroy(&item, destroy_data);
73 item = next;
79 void cil_list_item_init(struct cil_list_item **item)
86 *item = new_item
100 struct cil_list_item *item; local
122 struct cil_list_item *item; local
144 struct cil_list_item *item; local
226 struct cil_list_item *item; local
    [all...]
cil_list.h 47 #define cil_list_for_each(item, list) \
48 for (item = (list)->head; item != NULL; item = item->next)
53 void cil_list_item_init(struct cil_list_item **item);
54 void cil_list_item_destroy(struct cil_list_item **item, unsigned destroy_data);
59 void cil_list_append_item(struct cil_list *list, struct cil_list_item *item);
60 void cil_list_prepend_item(struct cil_list *list, struct cil_list_item *item);
  /external/mesa3d/src/gallium/drivers/r600/
compute_memory_pool.c 129 struct compute_memory_item *item; local
136 for (item = pool->item_list; item; item = item->next) {
137 if (item->start_in_dw > -1) {
138 if (item->start_in_dw-last_end > size_in_dw) {
142 last_end = item->start_in_dw + item->size_in_dw;
161 struct compute_memory_item* item; local
251 struct compute_memory_item *item, *next; local
353 struct compute_memory_item *item, *next; local
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_hash_table.c 107 struct util_hash_table_item *item; local
111 item = (struct util_hash_table_item *)cso_hash_iter_data(iter);
112 if (!ht->compare(item->key, key))
127 struct util_hash_table_item *item; local
131 item = (struct util_hash_table_item *)cso_hash_iter_data(iter);
132 if (!ht->compare(item->key, key))
133 return item;
147 struct util_hash_table_item *item; local
156 item = util_hash_table_find_item(ht, key, key_hash);
157 if(item) {
185 struct util_hash_table_item *item; local
207 struct util_hash_table_item *item; local
231 struct util_hash_table_item *item; local
253 struct util_hash_table_item *item; local
277 struct util_hash_table_item *item; local
    [all...]
  /external/esd/include/
aupvlist.h 50 int AUpvsetparam (AUpvlist, int item, int param);
51 int AUpvsetvaltype (AUpvlist, int item, int type);
52 int AUpvsetval (AUpvlist, int item, void *val);
53 int AUpvgetparam (AUpvlist, int item, int *param);
54 int AUpvgetvaltype (AUpvlist, int item, int *type);
55 int AUpvgetval (AUpvlist, int item, void *val);

Completed in 268 milliseconds

1 2 3 4 5 6 7 8 91011>>