HomeSort by relevance Sort by last modified time
    Searched refs:items (Results 251 - 275 of 541) sorted by null

<<11121314151617181920>>

  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
AlbumSetView.java 112 DisplayItem[] items = entry.covers; local
120 // Put the cover items in reverse order, so that the first item is on
125 for (int i = 0, n = items.length; i < n; ++i) {
126 DisplayItem item = items[i];
210 // If the layout parameters are changed, we need reput all items.
213 // 1.) flush all visible items
SelectionManager.java 61 // selected items is down to zero.
146 private static void expandMediaSet(ArrayList<Path> items, MediaSet set) {
149 expandMediaSet(items, set.getSubMediaSet(i));
161 items.add(item.getPath());
  /system/core/libcutils/
str_parms.c 96 int items = 0; local
134 items++;
139 if (!items)
140 LOGV("%s: no items found in string\n", __func__);
  /external/webkit/Source/WebCore/platform/network/
FormData.cpp 190 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];
  /packages/apps/Launcher2/src/com/android/launcher2/
AppsCustomizePagedView.java 84 items = l;
94 items = l;
122 ArrayList<Object> items; field in class:AsyncTaskPageData
698 // ensure that we have the right number of items on the pages
705 ArrayList<Object> items = new ArrayList<Object>(); local
721 items.add(info);
729 prepareGenerateHoloOutlinesTask(page, items, images);
1027 ArrayList<Object> items = new ArrayList<Object>(); local
1101 ArrayList<Object> items = data.items; local
1132 ArrayList<Object> items = data.items; local
    [all...]
  /system/media/wilhelm/tests/sandbox/
xaplay.c 168 const XAAndroidBufferItem *items; local
178 items = &eos;
183 items = &discontinuity;
186 // pure data with no items
188 items = NULL;
192 // enqueue the optional data and optional items; there is always at least one or the other
195 sizeof(MPEG2TS_Packet) * packetsThisBuffer, items, itemSize);
  /external/javassist/src/main/javassist/bytecode/
ConstPool.java 34 LongVector items; field in class:ConstPool
126 items = new LongVector();
147 /* read() initializes items and numOfItems, and do addItem(null).
186 return items.elementAt(n);
667 items.addElement(info);
981 LongVector v = items;
998 LongVector v = items;
1015 LongVector v = items;
    [all...]
  /external/webkit/Source/WebKit/win/
WebHistory.cpp 330 // Test against date limit. Since the items are ordered newest to oldest, we can stop comparing
410 /* [in] */ IWebHistoryItem** items)
420 hr = addItem(items[i], false, 0);
430 /* [in] */ IWebHistoryItem** items)
434 hr = removeItem(items[i]);
492 /* [in] */ IWebHistoryItem** items,
509 if (!items) {
523 items[i] = item;
531 /* [out][retval] */ IWebHistoryItem** items)
535 if (!items) {
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/dbus/
dbus_dict_helpers.c 615 * @param items The array of strings
622 const char **items,
630 if (!items && (num_items != 0))
640 items[i]))
658 * @param items The array of wpabuf structures
665 const struct wpabuf **items,
673 if (!items && (num_items != 0))
685 wpabuf_head(items[i]),
686 wpabuf_len(items[i])))
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/heap/
NativeHeapPanel.java 271 * Get the string representation for a collection of items.
272 * If there are more items than {@link #MAX_DISPLAYED_ERROR_ITEMS}, then only the first
273 * {@link #MAX_DISPLAYED_ERROR_ITEMS} items are taken into account,
276 private String getSampleForDisplay(Collection<?> items) {
280 Iterator<?> it = items.iterator();
445 List<String> items = new ArrayList<String>(); local
450 items.add("Snapshot " + (i + 1));
453 mSnapshotIndexCombo.setItems(items.toArray(new String[0]));
955 TreeItem []items = mDetailsTreeViewer.getTree().getSelection(); local
    [all...]
  /external/icu4c/test/intltest/
wbnf.cpp 689 int s = items.content_size();
691 const char * t = items[i]->next();
699 items.append(node);
703 int s = items.content_size();
707 delete items[i]; // TOFIX: point alias/recursion problem
708 items[i] = NULL;
712 Buffer_pPick items; member in class:Sequence
756 const char * t = items[i]->next();
761 int s = items.content_size();
763 delete items[i]; // TOFIX: point alias/recursion proble
774 Buffer_pPick items; member in class:Alternation
    [all...]
  /external/chromium/chrome/browser/importer/
firefox2_importer.cc 51 uint16 items,
62 if ((items & importer::HOME_PAGE) && !cancelled())
68 if ((items & importer::HISTORY) && !cancelled()) {
74 if ((items & importer::FAVORITES) && !cancelled()) {
79 if ((items & importer::SEARCH_ENGINES) && !cancelled()) {
84 if ((items & importer::PASSWORDS) && !cancelled()) {
217 // Flatten the items in toolbar.
firefox3_importer.cc 67 uint16 items,
78 if ((items & importer::HOME_PAGE) && !cancelled())
84 if ((items & importer::HISTORY) && !cancelled()) {
90 if ((items & importer::FAVORITES) && !cancelled()) {
95 if ((items & importer::SEARCH_ENGINES) && !cancelled()) {
100 if ((items & importer::PASSWORDS) && !cancelled()) {
544 // Appends all items to the list.
ie_importer.cc 84 uint16 items,
94 if ((items & importer::HOME_PAGE) && !cancelled())
97 if ((items & importer::HISTORY) && !cancelled()) {
102 if ((items & importer::FAVORITES) && !cancelled()) {
107 if ((items & importer::SEARCH_ENGINES) && !cancelled()) {
112 if ((items & importer::PASSWORDS) && !cancelled()) {
235 // Enumerates AutoComplete items in the protected database.
toolbar_importer.h 38 // This method is called to begin the import process. |items| should only
40 // items this importer supports.
42 uint16 items,
  /external/llvm/utils/lit/lit/
TestRunner.py 441 items = ln[ln.index('XFAIL:') + 6:].split(',')
442 xfails.extend([s.strip() for s in items])
444 items = ln[ln.index('XTARGET:') + 8:].split(',')
445 xtargets.extend([s.strip() for s in items])
447 items = ln[ln.index('REQUIRES:') + 9:].split(',')
448 requires.extend([s.strip() for s in items])
  /external/chromium/third_party/libjingle/source/talk/site_scons/
talk.py 451 for field, var in appends.items():
455 for field, var in prepends.items():
468 for field, value in params.items():
  /external/dbus/tools/
dbus-launch-x11.c 299 unsigned long items; local
314 XA_STRING, &type, &format, &items, &after,
327 XA_CARDINAL, &type, &format, &items, &after,
  /external/quake/quake/src/WinQuake/
host_cmd.cpp 1559 sv_player->u.v.items = (int)sv_player->u.v.items | HIT_PROXIMITY_GUN;
1561 sv_player->u.v.items = (int)sv_player->u.v.items | IT_GRENADE_LAUNCHER;
1564 sv_player->u.v.items = (int)sv_player->u.v.items | HIT_LASER_CANNON;
1566 sv_player->u.v.items = (int)sv_player->u.v.items | HIT_MJOLNIR;
1568 sv_player->u.v.items = (int)sv_player->u.v.items | (IT_SHOTGUN << (t[0] - '2'))
    [all...]
  /external/webkit/Tools/Scripts/webkitpy/thirdparty/simplejson/
encoder.py 120 skipkeys is True, such items are simply skipped.
229 items = [(k, dct[k]) for k in keys]
231 items = dct.iteritems()
235 for key, value in items:
  /frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/ui/
DirListActivity.java 160 public DirListAdapter(Activity context, ListItem[] items) {
161 super(context, R.layout.dirlist_row, items);
164 mItems = items;
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
StringIdsSection.java 53 public Collection<? extends Item> items() { method in class:StringIdsSection
  /dalvik/dx/src/com/android/dx/dex/file/
StringIdsSection.java 52 public Collection<? extends Item> items() { method in class:StringIdsSection
  /external/bison/src/
state.h 29 Each state of the machine is described by a set of items --
32 state. These symbols at these items are the allowable inputs that
46 Each core contains a vector of NITEMS items which are the indices
47 in the RITEMS vector of the items that are selected in this state.
213 /* Its items. Must be last, since ITEMS can be arbitrarily large.
216 item_number items[1]; member in struct:state
222 /* Create a new state with ACCESSING_SYMBOL for those items. */
  /external/chromium/chrome/browser/notifications/
balloon_host.h 92 const std::vector<WebMenuItem>& items,

Completed in 539 milliseconds

<<11121314151617181920>>