HomeSort by relevance Sort by last modified time
    Searched defs:items (Results 301 - 325 of 525) sorted by null

<<11121314151617181920>>

  /external/chromium/chrome/browser/importer/
importer_unittest.cc 105 int items = importer::HISTORY | importer::PASSWORDS | importer::FAVORITES; local
107 items = items | importer::SEARCH_ENGINES;
110 static_cast<Profile*>(NULL), items, make_scoped_refptr(writer), true));
306 } items[] = { local
319 for (int i = 0; i < arraysize(items); ++i) {
320 HRESULT res = pstore->WriteItem(0, type, subtype, items[i].name,
321 items[i].data_size, reinterpret_cast<BYTE*>(items[i].data),
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/webstore_private/
webstore_private_api.cc 214 BundleInstaller::ItemList items; local
215 if (!ReadBundleInfo(*params, &items))
218 bundle_ = new BundleInstaller(GetCurrentBrowser(), items);
228 BundleInstaller::ItemList* items) {
234 items->push_back(item);
  /external/chromium_org/chrome/browser/extensions/
menu_manager.cc 70 MenuItem::List items; local
74 return items;
84 items.push_back(item);
86 return items;
89 scoped_ptr<base::Value> MenuItemsToValue(const MenuItem::List& items) {
91 for (size_t i = 0; i < items.size(); ++i)
92 list->Append(items[i]->ToValue().release());
197 // string IDs for items.
426 // top-level items.
571 // Iterate backwards from |item| and uncheck any adjacent radio items
    [all...]
  /external/chromium_org/chrome/browser/first_run/
first_run.cc 185 // Sets the |items| bitfield according to whether the import data specified by
192 int* items) {
214 // If an import policy is set, import items according to policy. If no master
225 *items |= import_type;
228 *items |= import_type;
235 // |target_profile| for the items specified in the |items_to_import| bitfield.
284 // Ensure that importers aren't requested to import items that they do not
756 int items = 0; local
763 &items);
769 &items);
    [all...]
  /external/chromium_org/chrome/browser/ui/gtk/extensions/
extension_install_dialog_gtk.cc 238 BundleInstaller::ItemList items = prompt.bundle()->GetItemsWithState( local
240 for (size_t i = 0; i < items.size(); ++i) {
242 items[i].GetNameForDisplay()).c_str());
  /external/chromium_org/chrome/browser/ui/views/extensions/
extension_install_dialog_view.cc 468 BundleInstaller::ItemList items = prompt.bundle()->GetItemsWithState( local
470 for (size_t i = 0; i < items.size(); ++i) {
471 base::string16 extension_name = UTF8ToUTF16(items[i].localized_name);
717 // If the parent is using bullets for its items, then a padding of one unit
812 // bullets for its items, then a padding of one unit will make the child item
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/chromeos/
drive_internals_ui.cc 344 base::ListValue* items = new base::ListValue(); local
345 for (size_t i = 0; i < parsed_app_list->items().size(); ++i) {
346 const google_apis::AppResource* app = parsed_app_list->items()[i];
353 items->Append(app_data);
355 app_list.Set("items", items);
    [all...]
  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-uniscribe.cc 805 SCRIPT_ITEM items[MAX_ITEMS + 1]; local
823 items,
840 unsigned int chars_offset = items[i].iCharPos;
841 unsigned int item_chars_len = items[i + 1].iCharPos - chars_offset;
882 items[i].a.fLogicalOrder = true;
887 &items[i].a,
903 if (unlikely (items[i].a.fNoGlyphIndex))
914 if (items[i].a.eScript == SCRIPT_UNDEFINED)
916 items[i].a.eScript = SCRIPT_UNDEFINED;
929 &items[i].a
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
expr.c 54 /* Bitmap of used items. We should really never need more than 2 at a time,
1070 const yasm_expr__item *items; member in struct:subst_cbd
    [all...]
  /external/chromium_org/ui/message_center/views/
notification_view.cc 356 message_view_->SetVisible(!is_expanded_ || !notification.items().size());
394 std::vector<NotificationItem> items = notification.items(); local
395 for (size_t i = 0; i < items.size() && i < kNotificationMaximumItems; ++i) {
396 ItemView* item_view = new ItemView(items[i]);
402 items[i].title + base::ASCIIToUTF16(" ") + items[i].message);
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/
CTableCombo.java 643 TableItem[] items = m_table.getItems(); local
644 for (int i = start; i < items.length; i++) {
645 TableItem item = items[i];
  /frameworks/base/core/java/com/android/internal/view/menu/
MenuPopupHelper.java 348 ArrayList<MenuItemImpl> items = mOverflowOnly ? local
351 return items.size();
353 return items.size() - 1;
357 ArrayList<MenuItemImpl> items = mOverflowOnly ? local
362 return items.get(position);
387 final ArrayList<MenuItemImpl> items = mMenu.getNonActionItems(); local
388 final int count = items.size();
390 final MenuItemImpl item = items.get(i);
  /frameworks/support/v7/appcompat/src/android/support/v7/internal/view/menu/
MenuPopupHelper.java 310 ArrayList<MenuItemImpl> items = mOverflowOnly ? local
313 return items.size();
315 return items.size() - 1;
319 ArrayList<MenuItemImpl> items = mOverflowOnly ? local
324 return items.get(position);
349 final ArrayList<MenuItemImpl> items = mMenu.getNonActionItems(); local
350 final int count = items.size();
352 final MenuItemImpl item = items.get(i);
  /frameworks/wilhelm/tests/sandbox/
xaplay.c 169 const XAAndroidBufferItem *items; local
183 items = &eos;
190 items = &discontinuity;
196 items = &formatChange;
198 // pure data with no items
200 items = NULL;
204 // enqueue the optional data and optional items; there is always at least one or the other
207 sizeof(MPEG2TS_Packet) * packetsThisBuffer, items, itemSize);
    [all...]
  /packages/apps/Exchange/src/com/android/exchange/adapter/
EmailSyncAdapter.java 276 // If we're using an auto lookback, check how many items in the past week
278 int items = getEstimate(Eas.FILTER_1_WEEK); local
280 if (items > 1050) {
283 } else if (items > 350 || (items == -1)) {
286 } else if (items > 150) {
289 } else if (items > 75) {
292 } else if (items < 5) {
294 items = getEstimate(Eas.FILTER_ALL);
295 if (items >= 0 && items < 100)
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
AlbumDataLoader.java 241 public ArrayList<MediaItem> items; field in class:AlbumDataLoader.UpdateInfo
293 ArrayList<MediaItem> items = info.items; local
296 if ((items == null) || items.isEmpty()) {
304 int end = Math.min(info.reloadStart + items.size(), mContentEnd);
309 MediaItem updateItem = items.get(i - info.reloadStart);
380 info.items = mSource.getMediaItem(info.reloadStart, info.reloadCount);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
menu.h 81 struct tagITEM *left; /* neighbor items */
94 short rows; /* Nr. of items high */
95 short cols; /* Nr. of items wide */
96 short frows; /* Nr. of formatted items high */
97 short fcols; /* Nr. of formatted items wide */
98 short arows; /* Nr. of items high (actual) */
112 ITEM **items; /* array of items */ member in struct:tagMENU
113 short nitems; /* Nr. of items in menu */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
menu.h 81 struct tagITEM *left; /* neighbor items */
94 short rows; /* Nr. of items high */
95 short cols; /* Nr. of items wide */
96 short frows; /* Nr. of formatted items high */
97 short fcols; /* Nr. of formatted items wide */
98 short arows; /* Nr. of items high (actual) */
112 ITEM **items; /* array of items */ member in struct:tagMENU
113 short nitems; /* Nr. of items in menu */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
menu.h 81 struct tagITEM *left; /* neighbor items */
94 short rows; /* Nr. of items high */
95 short cols; /* Nr. of items wide */
96 short frows; /* Nr. of formatted items high */
97 short fcols; /* Nr. of formatted items wide */
98 short arows; /* Nr. of items high (actual) */
112 ITEM **items; /* array of items */ member in struct:tagMENU
113 short nitems; /* Nr. of items in menu */
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/bsddb/
dbobj.py 176 def items(self, *args, **kwargs): member in class:DB
177 return self._cobj.items(*args, **kwargs)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/bsddb/test/
test_all.py 209 for k, v in kwargs.items() :
335 def items(self) : member in class:DB_py3k
336 data = self._db.items()
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
cgi.py 359 The items are either a Python list (if there's multiple values) or
783 form.items() -> [(key, [val, val, ...]), (key, [val, val, ...]), ...]
801 get all of the values. values() and items() are a compromise:
819 def items(self): member in class:SvFormContentDict
821 for key, value in self.dict.items():
846 def items(self): member in class:InterpFormContentDict
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/etree/
ElementTree.py 184 # {@link #Element.items} to access
450 # returned in an arbitrary order. Equivalent to <b>attrib.items()</b>.
455 def items(self): member in class:Element
456 return self.attrib.items()
887 for key, value in elem.items():
915 items = elem.items()
916 if items or namespaces:
918 for v, k in sorted(namespaces.items(),
926 for k, v in sorted(items): # lexical orde
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/bsddb/
dbobj.py 176 def items(self, *args, **kwargs): member in class:DB
177 return self._cobj.items(*args, **kwargs)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/bsddb/test/
test_all.py 209 for k, v in kwargs.items() :
335 def items(self) : member in class:DB_py3k
336 data = self._db.items()

Completed in 1348 milliseconds

<<11121314151617181920>>