Searched defs:item (Results 201 - 225 of 799) sorted by relevance

1234567891011>>

/external/wpa_supplicant_8/hostapd/src/utils/
H A Dlist.h26 static inline void dl_list_add(struct dl_list *list, struct dl_list *item) argument
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) argument
36 dl_list_add(list->prev, item);
39 static inline void dl_list_del(struct dl_list *item) argument
41 item->next->prev = item
54 struct dl_list *item; local
[all...]
/external/wpa_supplicant_8/hostapd/src/wps/
H A Dupnp_xml.c190 char * xml_get_first_item(const char *doc, const char *item) argument
192 const char *match = item;
193 int match_len = os_strlen(item);
/external/wpa_supplicant_8/src/utils/
H A Dlist.h26 static inline void dl_list_add(struct dl_list *list, struct dl_list *item) argument
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) argument
36 dl_list_add(list->prev, item);
39 static inline void dl_list_del(struct dl_list *item) argument
41 item->next->prev = item
54 struct dl_list *item; local
[all...]
/external/wpa_supplicant_8/src/wps/
H A Dupnp_xml.c190 char * xml_get_first_item(const char *doc, const char *item) argument
192 const char *match = item;
193 int match_len = os_strlen(item);
/external/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Dlist.h26 static inline void dl_list_add(struct dl_list *list, struct dl_list *item) argument
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) argument
36 dl_list_add(list->prev, item);
39 static inline void dl_list_del(struct dl_list *item) argument
41 item->next->prev = item
54 struct dl_list *item; local
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/wps/
H A Dupnp_xml.c190 char * xml_get_first_item(const char *doc, const char *item) argument
192 const char *match = item;
193 int match_len = os_strlen(item);
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
H A Daddinterface.cpp85 QTreeWidgetItem *item = new QTreeWidgetItem(interfaceWidget); local
86 if (!item)
89 item->setText(0, arg[0]);
90 item->setText(1, arg[1]);
91 item->setText(2, arg[2]);
H A Dscanresults.cpp98 QTreeWidgetItem *item = new QTreeWidgetItem(scanResultsWidget); local
99 if (item) {
100 item->setText(0, ssid);
101 item->setText(1, bssid);
102 item->setText(2, freq);
103 item->setText(3, signal);
104 item->setText(4, flags);
/external/chromium/chrome/browser/resources/ntp/
H A Ddrag_drop_controller.js13 // get / set property containing the item being dragged
16 // get's the item that is under the mouse event |e|
20 // point to a valid place to drop an item
23 // tells the delegate that the dragged item is currently above
27 // tells the delegate that the drag is done. move the item to the
29 // draggedItem was the item being dragged.
99 var item = this.delegate_.getItem(e);
102 // or if the mouse is not above an item. We also bail out if the dragging
105 if (!item || e.button != 0 || this.isDragging())
108 this.startItem_ = item;
[all...]
/external/apache-xml/src/main/java/org/apache/xml/dtm/
H A DDTMIterator.java271 * Returns the <code>node handle</code> of an item in the collection. If
275 * @param index of the item.
280 public int item(int index); method in interface:DTMIterator
/external/apache-xml/src/main/java/org/apache/xpath/jaxp/
H A DXPathImpl.java214 // If item is null, then we will create a a Dummy contextNode
229 * for context item evaluation,
241 * <code>item</code>, an empty document will be used for the
247 * @param item The starting context (node or node list, for example).
256 public Object evaluate(String expression, Object item, QName returnType) argument
281 XObject resultObject = eval( expression, item );
348 * <p>This method calls {@link #evaluate(String expression, Object item, QName returnType)} with a <code>returnType</code> of
352 * for context item evaluation,
356 * <code>item</code>, an empty document will be used for the
361 * @param item Th
369 evaluate(String expression, Object item) argument
[all...]
/external/bison/src/
H A DLR0.c116 appears as an item, which is SYMBOL_COUNT[S].
168 | points to a vector of item numbers activated if that symbol is |
171 | itemset is sorted on item index in ritem, which is sorted on |
279 item_number item = ritem[itemset[i]];
280 if (item_number_is_rule_number (item))
282 rule_number r = item_number_as_rule_number (item);
346 item of this initial rule. */
278 item_number item = ritem[itemset[i]]; local
/external/chromium/chrome/browser/importer/
H A Dexternal_process_importer_bridge.cc76 importer::ImportItem item) {
77 profile_import_thread_->NotifyItemStarted(item);
80 void ExternalProcessImporterBridge::NotifyItemEnded(importer::ImportItem item) { argument
81 profile_import_thread_->NotifyItemEnded(item);
75 NotifyItemStarted( importer::ImportItem item) argument
H A Dimporter_host.cc81 void ImporterHost::NotifyImportItemStarted(importer::ImportItem item) { argument
83 observer_->ImportItemStarted(item);
86 void ImporterHost::NotifyImportItemEnded(importer::ImportItem item) { argument
88 observer_->ImportItemEnded(item);
H A Din_process_importer_bridge.cc91 void InProcessImporterBridge::NotifyItemStarted(importer::ImportItem item) { argument
94 NewRunnableMethod(host_, &ImporterHost::NotifyImportItemStarted, item));
97 void InProcessImporterBridge::NotifyItemEnded(importer::ImportItem item) { argument
100 NewRunnableMethod(host_, &ImporterHost::NotifyImportItemEnded, item));
H A Dprofile_import_process_client.cc29 void ProfileImportProcessClient::OnImportItemStart(int item) { argument
32 void ProfileImportProcessClient::OnImportItemFinished(int item) { argument
/external/chromium/chrome/browser/resources/touch_ntp/standalone/
H A Dstandalone_hack.js435 arrIndexOf = Array[protoProp].indexOf || function(item) {
437 if (i in this && this[i] === item) {
486 classListProto.item = function(i) {
/external/chromium/chrome/browser/sync/engine/
H A Dget_commit_ids_command.cc59 CHECK(parent.good()) << "Bad user-only parent in item path.";
76 bool GetCommitIdsCommand::AddItem(syncable::Entry* item, argument
78 int64 item_handle = item->Get(syncable::META_HANDLE);
83 result->AddCommitItem(item_handle, item->Get(syncable::ID),
84 item->GetModelType());
90 syncable::Entry* item,
93 if (!AddItem(item, result))
95 if (item->Get(syncable::IS_DEL))
98 syncable::Id prev_id = item->Get(syncable::PREV_ID);
113 syncable::Entry* item,
88 AddItemThenPredecessors( syncable::BaseTransaction* trans, syncable::Entry* item, syncable::IndexedBitField inclusion_filter, OrderedCommitSet* result) argument
111 AddPredecessorsThenItem( syncable::BaseTransaction* trans, syncable::Entry* item, syncable::IndexedBitField inclusion_filter, const ModelSafeRoutingInfo& routes) argument
[all...]
/external/chromium/chrome/browser/ui/gtk/
H A Dcustom_drag.cc36 const DownloadItem* item) {
37 OnDragDataGetForDownloadItem(selection_data, target_type, item);
77 DownloadItemDrag::DownloadItemDrag(const DownloadItem* item, argument
80 download_item_(item) {
95 DownloadItem* item,
105 item);
108 G_CALLBACK(OnDragDataGetStandalone), item);
115 void DownloadItemDrag::BeginDrag(const DownloadItem* item, gfx::Image* icon) { argument
116 new DownloadItemDrag(item, icon);
33 OnDragDataGetStandalone(GtkWidget* widget, GdkDragContext* context, GtkSelectionData* selection_data, guint target_type, guint time, const DownloadItem* item) argument
94 SetSource(GtkWidget* widget, DownloadItem* item, gfx::Image* icon) argument
/external/chromium/chrome/browser/ui/gtk/importer/
H A Dimport_progress_dialog_gtk.cc162 void ImportProgressDialogGtk::ImportItemStarted(importer::ImportItem item) { argument
163 DCHECK(items_ & item);
164 switch (item) {
186 void ImportProgressDialogGtk::ImportItemEnded(importer::ImportItem item) { argument
187 DCHECK(items_ & item);
188 switch (item) {
/external/chromium/chrome/browser/ui/views/importer/
H A Dimport_progress_dialog_view.cc222 void ImportProgressDialogView::ImportItemStarted(importer::ImportItem item) { argument
223 DCHECK(items_ & item);
224 switch (item) {
243 void ImportProgressDialogView::ImportItemEnded(importer::ImportItem item) { argument
244 DCHECK(items_ & item);
245 switch (item) {
/external/chromium/chrome/common/
H A Djson_schema_validator_unittest_base.cc100 DictionaryValue* item = NULL; local
101 ASSERT_TRUE(instance->GetDictionary(0, &item));
102 item->SetString("url", "xxxxxxxxxxx");
/external/chromium/crypto/
H A Drsa_private_key_nss.cc27 SECItem item; local
29 rv = PK11_ReadRawAttribute(PK11_TypePrivKey, key, type, &item);
35 output->assign(item.data, item.data + item.len);
36 SECITEM_FreeItem(&item, PR_FALSE);
/external/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/
H A DNavigationHistoryTest.java64 private void checkHistoryItem(NavigationEntry item, String url, String originalUrl, argument
66 assertEquals(url, item.getUrl());
67 assertEquals(originalUrl, item.getOriginalUrl());
68 assertEquals(title, item.getTitle());
70 assertNull(item.getFavicon());
72 assertNotNull(item.getFavicon());
/external/chromium_org/ash/shelf/
H A Dshelf_model.cc20 // TODO(skuhne): If the app list item becomes movable again, this need
69 int ShelfModel::Add(const LauncherItem& item) { argument
70 return AddAt(items_.size(), item);
73 int ShelfModel::AddAt(int index, const LauncherItem& item) { argument
74 index = ValidateInsertionIndex(item.type, index);
75 items_.insert(items_.begin() + index, item);
96 LauncherItem item(items_[index]);
98 items_.insert(items_.begin() + target_index, item);
103 void ShelfModel::Set(int index, const LauncherItem& item) { argument
105 int new_index = item
[all...]

Completed in 657 milliseconds

1234567891011>>