/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...] |
/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/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...] |
/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/ui/app_list/ |
app_list_model_observer.h | 19 // Triggered after |item| has been added to the model. 20 virtual void OnAppListItemAdded(AppListItem* item) {} 22 // Triggered just before an item is deleted from the model. 23 virtual void OnAppListItemWillBeDeleted(AppListItem* item) {} 25 // Triggered just after an item is deleted from the model. 28 // Triggered after |item| has moved, changed folders, or changed properties. 29 virtual void OnAppListItemUpdated(AppListItem* item) {}
|
/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 * <item jid="gato1@gato.home"/> 91 * <item jid="gato2@gato.home"/> 100 buf.append(item.toXML()) [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) { }
|
/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...] |
drop_data_builder.cc | 24 const WebVector<WebDragData::Item>& item_list = drag_data.items(); 26 const WebDragData::Item& item = item_list[i]; local 27 switch (item.storageType) { 28 case WebDragData::Item::StorageTypeString: { 29 if (EqualsASCII(item.stringType, ui::Clipboard::kMimeTypeText)) { 30 result.text = base::NullableString16(item.stringData, false); 33 if (EqualsASCII(item.stringType, ui::Clipboard::kMimeTypeURIList)) { 34 result.url = GURL(item.stringData); 35 result.url_title = item.title [all...] |
/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/chromium_org/chrome/browser/component_updater/ |
component_updater_ping_manager.cc | 43 const CrxUpdateItem* item); 51 static std::string BuildPing(const CrxUpdateItem* item); 53 const CrxUpdateItem* item); 54 static std::string BuildUpdateCompleteEventElement(const CrxUpdateItem* item); 74 const CrxUpdateItem* item) { 75 DCHECK(item); 81 ping_url, BuildPing(item), this, url_request_context_getter)); 84 // Builds a ping message for the specified update item. 85 std::string PingSender::BuildPing(const CrxUpdateItem* item) { 93 item->id.c_str(), // "appid [all...] |
/external/smack/src/org/jivesoftware/smackx/muc/ |
Affiliate.java | 42 Affiliate(MUCOwner.Item item) { 44 this.jid = item.getJid(); 45 this.affiliation = item.getAffiliation(); 46 this.role = item.getRole(); 47 this.nick = item.getNick(); 50 Affiliate(MUCAdmin.Item item) { 52 this.jid = item.getJid(); 53 this.affiliation = item.getAffiliation() [all...] |