Searched defs:items (Results 76 - 100 of 199) sorted by relevance

12345678

/external/chromium/chrome/browser/first_run/
H A Dfirst_run.cc523 int items = 0; local
527 items = items | importer::HISTORY;
532 items = items | importer::HOME_PAGE;
535 items = items | importer::HOME_PAGE;
543 items = items | importer::SEARCH_ENGINES;
546 items
[all...]
/external/chromium/chrome/browser/importer/
H A Dexternal_process_importer_client.cc20 uint16 items,
30 items_(items),
17 ExternalProcessImporterClient( ExternalProcessImporterHost* importer_host, const importer::SourceProfile& source_profile, uint16 items, InProcessImporterBridge* bridge, bool import_to_bookmark_bar) argument
/external/chromium/chrome/browser/notifications/
H A Dballoon_host.h92 const std::vector<WebMenuItem>& items,
88 ShowPopupMenu(const gfx::Rect& bounds, int item_height, double item_font_size, int selected_item, const std::vector<WebMenuItem>& items, bool right_aligned) argument
/external/chromium/chrome/browser/tab_contents/
H A Dbackground_contents.h103 const std::vector<WebMenuItem>& items,
99 ShowPopupMenu(const gfx::Rect& bounds, int item_height, double item_font_size, int selected_item, const std::vector<WebMenuItem>& items, bool right_aligned) argument
/external/chromium/net/disk_cache/
H A Dstats.cc192 void Stats::GetItems(StatsItems* items) { argument
197 items->push_back(item);
203 items->push_back(item);
/external/dbus/bus/
H A Dexpirelist.c2 /* expirelist.c List of items that expire
33 DBusList *items; /**< List of BusExpireItem */ member in struct:BusExpireList
95 _dbus_assert (list->items == NULL);
148 link = _dbus_list_get_first_link (&list->items);
151 DBusList *next = _dbus_list_get_next_link (&list->items, link);
204 if (list->items != NULL)
233 _dbus_list_remove_link (&list->items, link);
240 return _dbus_list_remove (&list->items, item);
247 _dbus_list_unlink (&list->items, link);
256 ret = _dbus_list_prepend (&list->items, ite
[all...]
/external/dbus/tools/
H A Ddbus-launch-x11.c299 unsigned long items; local
314 XA_STRING, &type, &format, &items, &after,
327 XA_CARDINAL, &type, &format, &items, &after,
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/utils/
H A DUtil.java529 * @param items The milestones list (e.g. {@link IPerformancesConstants#V35_MILESTONES}).
531 public static void setMilestones(String[] items) { argument
532 MILESTONES = items;
/external/libselinux/src/
H A Dlabel_android_property.c87 int items, len; local
103 items = sscanf(line_buf, "%255s %255s", prop, context);
104 if (items != 2) {
/external/libsepol/src/
H A Davtab.c374 uint32_t buf32[7], items, items2, val; local
403 items = 0;
404 val = le32_to_cpu(buf32[items++]);
410 val = le32_to_cpu(buf32[items++]);
416 val = le32_to_cpu(buf32[items++]);
423 val = le32_to_cpu(buf32[items++]);
439 datum.data = le32_to_cpu(buf32[items++]);
446 if (items != items2) {
447 ERR(fp->handle, "entry only had %d items, "
448 "expected %d", items2, items);
[all...]
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
H A DItemLocationBox.java65 public List<Item> items = new LinkedList<Item>(); field in class:ItemLocationBox
76 for (Item item : items) {
92 IsoTypeWriter.writeUInt16(byteBuffer, items.size());
93 for (Item item : items) {
112 items.add(new Item(content));
150 return items;
153 public void setItems(List<Item> items) { argument
154 this.items = items;
/external/qemu/android/skin/
H A Dkeyset.c333 SkinKeyItem* items; member in struct:SkinKeyset
340 SkinKeyItem* item = kset->items;
367 SkinKeyItem* new_items = realloc( kset->items, new_size*sizeof(SkinKeyItem) );
371 kset->items = new_items;
374 item = kset->items + kset->num_items++;
454 free(kset->items);
455 kset->items = NULL;
470 SkinKeyItem* item = kset->items;
495 SkinKeyItem* item = kset->items;
/external/webkit/Source/WebCore/inspector/
H A DInspectorFrontendHost.cpp61 static PassRefPtr<FrontendMenuProvider> create(InspectorFrontendHost* frontendHost, ScriptObject webInspector, const Vector<ContextMenuItem*>& items) argument
63 return adoptRef(new FrontendMenuProvider(frontendHost, webInspector, items));
73 FrontendMenuProvider(InspectorFrontendHost* frontendHost, ScriptObject webInspector, const Vector<ContextMenuItem*>& items) argument
76 , m_items(items)
244 void InspectorFrontendHost::showContextMenu(Event* event, const Vector<ContextMenuItem*>& items) argument
253 RefPtr<FrontendMenuProvider> menuProvider = FrontendMenuProvider::create(this, webInspectorObj, items);
/external/webkit/Source/WebCore/platform/chromium/
H A DClipboardChromium.cpp347 PassRefPtr<DataTransferItems> ClipboardChromium::items() function in class:WebCore::ClipboardChromium
349 RefPtr<DataTransferItemsChromium> items = DataTransferItemsChromium::create(this, m_frame->document()->scriptExecutionContext()); local
352 return items;
358 items->addPasteboardItem(*it);
360 return items;
/external/webkit/Source/WebCore/platform/network/
H A DFormData.cpp190 const Vector<FormDataList::Item>& items = list.items(); local
191 size_t formDataListSize = items.size();
194 const FormDataList::Item& key = items[i];
195 const FormDataList::Item& value = items[i + 1];
/external/webkit/Source/WebCore/storage/
H A DStorageAreaSync.cpp46 // Instead, queue up a batch of items to sync and actually do the sync at the following interval.
49 // A sane limit on how many items we'll schedule to sync all at once. This makes it
195 // We can't do the fast path of simply clearing all items, so we'll need to manually
280 LOG_ERROR("Unable to select items from ItemTable for local storage");
294 LOG_ERROR("Error reading items from ItemTable for local storage");
318 // optimization (since the order of iteration can change as items are being added). Get can return any
320 // of items the import should not overwrite. Clear can also work, but it'll need to kill the import
336 void StorageAreaSync::sync(bool clearItems, const HashMap<String, String>& items) argument
340 if (items.isEmpty() && !clearItems)
351 // to write new items create
412 HashMap<String, String> items; local
[all...]
/external/webkit/Source/WebKit/chromium/src/
H A DWebHistoryItem.cpp264 void WebHistoryItem::setChildren(const WebVector<WebHistoryItem>& items) argument
268 for (size_t i = 0; i < items.size(); ++i)
269 m_private->addChildItem(items[i]);
/external/webkit/Source/WebKit/efl/ewk/
H A Dewk_history.cpp277 WebCore::HistoryItemVector items; local
279 core->forwardListWithLimit(limit, items);
280 return _ewk_history_item_list_get(items);
287 * @param limit the maximum number of items to return.
301 WebCore::HistoryItemVector items; local
302 core->forwardListWithLimit(limit, items);
303 return _ewk_history_item_list_get(items);
337 WebCore::HistoryItemVector items; local
339 core->backListWithLimit(limit, items);
340 return _ewk_history_item_list_get(items);
361 WebCore::HistoryItemVector items; local
[all...]
/external/webkit/Source/WebKit/gtk/webkit/
H A Dwebkitwebbackforwardlist.cpp73 WebCore::HistoryItemVector items = backForwardList->entries(); local
75 for (unsigned i = 0; i < items.size(); i++)
76 g_hash_table_remove(table, items[i].get());
199 * @limit: the number of items to retrieve
201 * Returns a list of items that succeed the current item, limited by @limit
203 * Return value: (element-type WebKit.WebHistoryItem) (transfer container): a #GList of items succeeding the current item, limited by @limit
213 WebCore::HistoryItemVector items;
216 backForwardList->forwardListWithLimit(limit, items);
218 for (unsigned i = 0; i < items.size(); i++) {
219 WebKitWebHistoryItem* webHistoryItem = kit(items[
[all...]
/external/webkit/Source/WebKit/qt/Api/
H A Dqwebhistory.cpp228 A list of items describing the pages that can be visited by going back can be
229 obtained by calling the backItems() function; similarly, items describing the
231 The total list of items is obtained with the items() function.
234 of a list. Arbitrary items in the history can be obtained with itemAt(), the total
235 number of items is given by count(), and the history can be cleared with the
258 \sa count(), items()
286 Returns a list of all items currently in the history.
290 QList<QWebHistoryItem> QWebHistory::items() const function in class:QWebHistory
292 const WebCore::HistoryItemVector &items local
503 const WebCore::HistoryItemVector &items = d->lst->entries(); local
[all...]
/external/webkit/Source/WebKit/qt/tests/qwebhistory/
H A Dtst_qwebhistory.cpp55 void items();
184 * Check QWebHistory::items() method
186 void tst_QWebHistory::items() function in class:tst_QWebHistory
188 QList<QWebHistoryItem> items = hist->items(); local
190 QCOMPARE(histsize, items.count());
194 QCOMPARE(items.at(i - 1).title(), QString("page") + QString::number(i));
221 QList<QWebHistoryItem> items = hist->items(); local
223 QCOMPARE(items
[all...]
/external/webkit/Source/WebKit/win/
H A DMarshallingHelpers.cpp231 CFStringRef* items = 0; local
233 items = new CFStringRef[len];
237 items[lBound] = BSTRToCFStringRef(str);
241 CFArrayRef result = CFArrayCreate(0, (const void**)items, len, &kCFTypeArrayCallBacks);
242 if (items)
243 delete[] items;
254 CFNumberRef* items = 0; local
256 items = new CFNumberRef[len];
260 items[lBound] = intToCFNumberRef(num);
263 CFArrayRef result = CFArrayCreate(0, (const void**) items, le
276 void* items; local
[all...]
/external/wpa_supplicant_6/wpa_supplicant/
H A Ddbus_dict_helpers.c565 * @param items The array of strings
572 const char **items,
580 if (!items && (num_items != 0))
590 items[i]))
570 wpa_dbus_dict_append_string_array(DBusMessageIter *iter_dict, const char *key, const char **items, const dbus_uint32_t num_items) argument
/external/zlib/src/contrib/iostream2/
H A Dzstream.h115 inline int read(izstream& zs, T* x, Items items) { argument
116 return ::gzread(zs.fp(), x, items*sizeof(T));
264 inline int write(ozstream& zs, const T* x, Items items) { argument
265 return ::gzwrite(zs.fp(), (voidp) x, items*sizeof(T));
/external/chromium/chrome/browser/automation/
H A Dtesting_automation_provider_chromeos.cc281 DictionaryValue* items = new DictionaryValue; local
283 items->Set(ethernet_network->service_path(), item);
284 return_value->Set("ethernet_networks", items);
294 DictionaryValue* items = new DictionaryValue; local
302 items->Set(wifi->service_path(), item);
304 return_value->Set("wifi_networks", items);
313 DictionaryValue* items = new DictionaryValue; local
329 items->Set(cellular_networks[i]->service_path(), item);
331 return_value->Set("cellular_networks", items);

Completed in 1556 milliseconds

12345678