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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/openssl/openssl/crypto/pqueue/
pq_test.c 65 pitem *item; local
70 item = pitem_new(3, NULL);
71 pqueue_insert(pq, item);
73 item = pitem_new(1, NULL);
74 pqueue_insert(pq, item);
76 item = pitem_new(2, NULL);
77 pqueue_insert(pq, item);
79 item = pqueue_find(pq, 1);
80 fprintf(stderr, "found %ld\n", item->priority);
82 item = pqueue_find(pq, 2)
    [all...]
pqueue.c 73 pitem *item = (pitem *) OPENSSL_malloc(sizeof(pitem)); local
74 if (item == NULL) return NULL;
76 memcpy(item->priority,prio64be,sizeof(item->priority));
78 item->data = data;
79 item->next = NULL;
81 return item;
85 pitem_free(pitem *item)
87 if (item == NULL) return;
89 OPENSSL_free(item);
159 pitem *item = pq->items; local
205 pitem *item = pq->items; local
243 pitem *item = pq->items; local
    [all...]
  /external/openssl/crypto/pqueue/
pq_test.c 65 pitem *item; local
70 item = pitem_new(3, NULL);
71 pqueue_insert(pq, item);
73 item = pitem_new(1, NULL);
74 pqueue_insert(pq, item);
76 item = pitem_new(2, NULL);
77 pqueue_insert(pq, item);
79 item = pqueue_find(pq, 1);
80 fprintf(stderr, "found %ld\n", item->priority);
82 item = pqueue_find(pq, 2)
    [all...]
pqueue.c 73 pitem *item = (pitem *) OPENSSL_malloc(sizeof(pitem)); local
74 if (item == NULL) return NULL;
76 memcpy(item->priority,prio64be,sizeof(item->priority));
78 item->data = data;
79 item->next = NULL;
81 return item;
85 pitem_free(pitem *item)
87 if (item == NULL) return;
89 OPENSSL_free(item);
159 pitem *item = pq->items; local
205 pitem *item = pq->items; local
243 pitem *item = pq->items; local
    [all...]
  /external/chromium/webkit/glue/
webmenuitem.cc 16 WebMenuItem::WebMenuItem(const WebKit::WebMenuItemInfo& item)
17 : label(item.label),
18 type(static_cast<Type>(item.type)),
19 action(item.action),
20 rtl(item.textDirection == WebKit::WebTextDirectionRightToLeft),
21 has_directional_override(item.hasTextDirectionOverride),
22 enabled(item.enabled),
23 checked(item.checked) {
26 WebMenuItem::WebMenuItem(const WebMenuItem& item)
27 : label(item.label)
    [all...]
  /system/core/toolbox/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/base/core/java/android/webkit/
WebBackForwardListClient.java 27 * Notify the client that <var>item</var> has been added to the
29 * @param item The newly created WebHistoryItem
31 public void onNewHistoryItem(WebHistoryItem item) { }
34 * Notify the client that the <var>item</var> at <var>index</var> is now
35 * the current history item.
36 * @param item A WebHistoryItem
39 public void onIndexChanged(WebHistoryItem item, int index) { }
  /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/chromium_org/content/public/common/
menu_item.cc 18 MenuItem::MenuItem(const MenuItem& item)
19 : label(item.label),
20 tool_tip(item.tool_tip),
21 type(item.type),
22 action(item.action),
23 rtl(item.rtl),
24 has_directional_override(item.has_directional_override),
25 enabled(item.enabled),
26 checked(item.checked),
27 submenu(item.submenu)
    [all...]
  /system/core/libcutils/
list.c 25 void list_add_tail(struct listnode *head, struct listnode *item)
27 item->next = head;
28 item->prev = head->prev;
29 head->prev->next = item;
30 head->prev = item;
33 void list_remove(struct listnode *item)
35 item->next->prev = item->prev;
36 item->prev->next = item->next
    [all...]
  /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...]
  /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 26 static inline void dl_list_add(struct dl_list *list, struct dl_list *item)
28 item->next = list->next;
29 item->prev = list;
30 list->next->prev = item;
31 list->next = item;
34 static inline void dl_list_add_tail(struct dl_list *list, struct dl_list *item)
36 dl_list_add(list->prev, item);
39 static inline void dl_list_del(struct dl_list *item)
41 item->next->prev = item->prev
54 struct dl_list *item; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
TouchList.cpp 32 Touch* TouchList::item(unsigned index) function in class:WebCore::TouchList
39 const Touch* TouchList::item(unsigned index) const function in class:WebCore::TouchList
41 return const_cast<TouchList*>(this)->item(index);
  /hardware/ti/wlan/lib/
shlist.c 19 SHLIST *item; local
21 for(item=head->next;( item != head );item=item->next)
23 if( func( val, item->data ) ) {
24 return( item );
28 if( item->data == val ) {
29 return( item );
51 SHLIST *item; local
96 SHLIST *item; local
114 SHLIST *item; local
133 SHLIST *item, *iptr; local
158 SHLIST *item; local
170 SHLIST *item; local
    [all...]
  /external/chromium/chrome/browser/importer/
importer_progress_observer.h 20 // Invoked when data for the specified item is about to be collected.
21 virtual void ImportItemStarted(ImportItem item) = 0;
23 // Invoked when data for the specified item has been collected from the
25 virtual void ImportItemEnded(ImportItem item) = 0;
  /external/chromium_org/chrome/browser/importer/
importer_progress_observer.h 19 // Invoked when data for the specified item is about to be collected.
20 virtual void ImportItemStarted(ImportItem item) = 0;
22 // Invoked when data for the specified item has been collected from the
24 virtual void ImportItemEnded(ImportItem item) = 0;
  /external/smack/src/org/jivesoftware/smackx/packet/
PEPEvent.java 35 PEPItem item; field in class:PEPEvent
49 public PEPEvent(PEPItem item) {
52 this.item = item;
55 public void addPEPItem(PEPItem item) {
56 this.item = item;
90 * &lt;item jid="gato1@gato.home"/&gt;
91 * &lt;item jid="gato2@gato.home"/&gt;
100 buf.append(item.toXML())
    [all...]
  /external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
ReferenceFormatter.java 38 public static void writeReference(IndentingWriter writer, Item item) throws IOException {
39 switch (item.getItemType()) {
41 writeMethodReference(writer, (MethodIdItem)item);
44 writeFieldReference(writer, (FieldIdItem)item);
47 writeStringReference(writer, (StringIdItem)item);
50 writeTypeReference(writer, (TypeIdItem)item);
55 public static void writeMethodReference(IndentingWriter writer, MethodIdItem item) throws IOException {
56 writer.write(item.getContainingClass().getTypeDescriptor());
58 writer.write(item.getMethodName().getStringValue())
    [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
  /external/chromium_org/content/renderer/
menu_item_builder.cc 11 MenuItem MenuItemBuilder::Build(const blink::WebMenuItemInfo& item) {
14 result.label = item.label;
15 result.tool_tip = item.toolTip;
16 result.type = static_cast<MenuItem::Type>(item.type);
17 result.action = item.action;
18 result.rtl = (item.textDirection == blink::WebTextDirectionRightToLeft);
19 result.has_directional_override = item.hasTextDirectionOverride;
20 result.enabled = item.enabled;
21 result.checked = item.checked;
22 for (size_t i = 0; i < item.subMenuItems.size(); ++i
    [all...]

Completed in 915 milliseconds

1 2 3 4 5 6 7 8 91011>>