HomeSort by relevance Sort by last modified time
    Searched refs:items (Results 101 - 125 of 302) sorted by null

1 2 3 45 6 7 8 91011>>

  /frameworks/base/core/java/android/app/
AlertDialog.java 462 * Set a list of items to be displayed in the dialog as the content, you will be notified of the
474 * Set a list of items to be displayed in the dialog as the content, you will be notified of the
479 public Builder setItems(CharSequence[] items, final OnClickListener listener) {
480 P.mItems = items;
486 * Set a list of items, which are supplied by the given {@link ListAdapter}, to be
490 * @param adapter The {@link ListAdapter} to supply the list of items
502 * Set a list of items, which are supplied by the given {@link Cursor}, to be
506 * @param cursor The {@link Cursor} to supply the list of items
522 * Set a list of items to be displayed in the dialog as the content,
530 * @param checkedItems specifies which items are checked. It should be null in which case n
    [all...]
  /frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/
FileList.java 126 final CharSequence[] items = {"Open", "Run"}; local
129 builder.setSingleChoiceItems(items, -1,
  /dalvik/dx/src/com/android/dx/dex/file/
FieldIdsSection.java 50 public Collection<? extends Item> items() { method in class:FieldIdsSection
MethodIdsSection.java 50 public Collection<? extends Item> items() { method in class:MethodIdsSection
Section.java 25 * of items of some sort or other.
219 * Gets the collection of all the items in this section.
222 * @return {@code non-null;} the items
224 public abstract Collection<? extends Item> items(); method in class:Section
  /external/chromium/googleurl/
PRESUBMIT.py 107 items=cr_files))
  /external/chromium/third_party/icu/source/tools/toolutil/
package.h 58 * but the items are left unswapped.
62 * Write a .dat package file with the items in this object.
66 * Also, the items themselves are swapped in-place
75 // find the item in items[], return the non-negative index if found, else the binary-not of the insertion point
80 * indexes for items whose names match the pattern.
148 Item items[MAX_FILE_COUNT]; member in class:Package
  /external/icu4c/tools/toolutil/
package.h 58 * but the items are left unswapped.
62 * Write a .dat package file with the items in this object.
66 * Also, the items themselves are swapped in-place
75 // find the item in items[], return the non-negative index if found, else the binary-not of the insertion point
80 * indexes for items whose names match the pattern.
148 Item items[MAX_FILE_COUNT]; member in class:Package
  /external/webkit/SunSpider/resources/
sunspider-analyze-results.js 124 function standardDeviation(mean, items)
127 for (var i = 0; i < items.length; i++) {
128 var delta = items[i] - mean;
131 variance = deltaSquaredSum / (items.length - 1);
  /frameworks/base/tools/aidl/
aidl_language.h 132 void (*document)(document_item_type* items);
  /frameworks/base/tools/localize/
ValuesFile.cpp 227 const set<StringResource>& items = it->second; local
228 XMLNode* arrayNode = XMLNode::NewElement(items.begin()->pos, "", "array", arrayAttrs,
233 for (set<StringResource>::const_iterator item = items.begin();
234 item != items.end(); item++) {
  /packages/apps/Gallery3D/src/com/cooliris/media/
PicasaDataSource.java 90 // Return a list of items within an album.
205 ArrayList<MediaItem> items = bucket.mediaItems; local
206 if (items == null) {
212 for (int j = 0, numItems = items.size(); j != numItems; ++j) {
213 MediaItem item = items.get(j);
HudLayer.java 243 ArrayList<MediaItem> items = bucket.mediaItems; local
244 int numItems = items.size();
245 mediaType = items.get(0).getMediaType();
250 if (items.get(0).getMediaType() != mediaType) {
413 String items = " " + ((numItems == 1) ? mContext.getString(Res.string.item) : mContext.getString(Res.string.items)); local
414 Menu menu = new MenuBar.Menu.Builder(numItems + items).config(MenuBar.MENU_TITLE_STYLE_TEXT).build();
654 * the items return true;
697 ArrayList<MediaItem> items = null; local
700 items = bucket.mediaItems
    [all...]
  /development/scripts/app_engine_server/gae_shell/
shell.py 249 for name, val in session.globals_dict().items():
276 for name, val in statement_module.__dict__.items():
290 for name, val in new_globals.items():
  /external/chromium/net/disk_cache/
stats.cc 258 void Stats::GetItems(StatsItems* items) {
263 items->push_back(item);
269 items->push_back(item);
  /external/chromium/third_party/zlib/
zutil.h 261 voidpf zcalloc OF((voidpf opaque, unsigned items, unsigned size));
264 #define ZALLOC(strm, items, size) \
265 (*((strm)->zalloc))((strm)->opaque, (items), (size))
  /external/qemu/distrib/zlib-1.2.3/
zutil.h 261 voidpf zcalloc OF((voidpf opaque, unsigned items, unsigned size));
264 #define ZALLOC(strm, items, size) \
265 (*((strm)->zalloc))((strm)->opaque, (items), (size))
  /external/webkit/WebKit/chromium/src/
WebHistoryItem.cpp 263 void WebHistoryItem::setChildren(const WebVector<WebHistoryItem>& items)
267 for (size_t i = 0; i < items.size(); ++i)
268 m_private->addChildItem(items[i]);
  /external/zlib/
zutil.h 265 voidpf ZLIB_INTERNAL zcalloc OF((voidpf opaque, unsigned items,
269 #define ZALLOC(strm, items, size) \
270 (*((strm)->zalloc))((strm)->opaque, (items), (size))
  /frameworks/base/core/java/com/android/internal/view/menu/
MenuBuilder.java 122 /** Contains all of the items for this menu */
125 /** Contains only the items that are currently visible. This will be created/refreshed from
129 * Whether or not the items (or any one item's shown state) has changed since it was last
137 * should be set on all items added to this menu.
267 * Called by menu items to execute their associated action
301 * Gets a menu View that contains this menu's items.
311 // The expanded menu depends on the number if items shown in the icon menu (which
536 // We handle the notification of items being changed ourselves, so we use setVisibleInt rather
537 // than setVisible and at the end notify of items being changed
647 * Returns the ordering across all items. This will grab the category fro
773 Vector<MenuItemImpl> items = new Vector(); local
810 List<MenuItemImpl> items = findItemsWithShortcutForKey(keyCode, event); local
    [all...]
  /external/webkit/WebKit/win/
WebHistory.cpp 332 // Test against date limit. Since the items are ordered newest to oldest, we can stop comparing
412 /* [in] */ IWebHistoryItem** items)
422 hr = addItem(items[i], false, 0);
432 /* [in] */ IWebHistoryItem** items)
436 hr = removeItem(items[i]);
494 /* [in] */ IWebHistoryItem** items,
511 if (!items) {
525 items[i] = item;
533 /* [out][retval] */ IWebHistoryItem** items)
537 if (!items) {
    [all...]
  /external/chromium/third_party/icu/source/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/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/base/
base_main.scons 132 for key, val in kw.items():
310 def columnar_text(items, width=78, indent=2, sep=2):
312 colwidth = max(map(len, items)) + sep
316 rows = (len(items) + cols - 1) / cols
321 for i in xrange(row, len(items), rows):
322 result.append('%-*s' % (colwidth, items[i]))
  /external/chromium/net/
net_main.scons 150 for key, val in kw.items():
328 def columnar_text(items, width=78, indent=2, sep=2):
330 colwidth = max(map(len, items)) + sep
334 rows = (len(items) + cols - 1) / cols
339 for i in xrange(row, len(items), rows):
340 result.append('%-*s' % (colwidth, items[i]))

Completed in 638 milliseconds

1 2 3 45 6 7 8 91011>>