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

<<11121314151617181920>>

  /packages/apps/Launcher2/src/com/android/launcher2/
FolderIcon.java 68 // The amount of vertical spread between items in the stack [0...1]
116 "INITIAL_ITEM_ANIMATION_DURATION, as sequencing of adding first two items " +
499 ArrayList<View> items = mFolder.getItemsInReadingOrder(false);
507 v = (TextView) items.get(0);
512 int nItemsInPreview = Math.min(items.size(), NUM_ITEMS_IN_PREVIEW);
515 v = (TextView) items.get(i);
  /sdk/monkeyrunner/src/com/android/monkeyrunner/
JythonUtils.java 169 * @return a list of those items
208 PyList items = dict.items(); local
209 for (int x = 0; x < items.__len__(); x++) {
211 PyTuple item = (PyTuple) items.__getitem__(x);
  /external/chromium/chrome/common/extensions/docs/examples/extensions/news/javascript/
feed.js 260 var items = document.getElementsByClassName('item');
261 for (var i = 0, item; item = items[i]; i++) {
  /external/oprofile/libpopt/
popt.c 1127 poptItem * items, item; local
1132 items = &con->execs;
1136 items = &con->aliases;
1144 *items = realloc((*items), ((*nitems) + 1) * sizeof(**items));
1145 if ((*items) == NULL)
1148 item = (*items) + (*nitems);
    [all...]
popthelp.c 468 * @param items alias/exec array
474 /*@null@*/ poptItem items, int nitems, size_t left,
482 if (items != NULL)
483 for (i = 0, item = items; i < nitems; i++, item++) {
  /external/webkit/LayoutTests/dom/html/level2/html/
HTMLUListElement01.js 79 items.
  /external/webkit/LayoutTests/dom/xhtml/level2/html/
HTMLUListElement01.js 79 items.
  /external/webkit/Tools/CodeCoverage/
regenerate-coverage-display 316 for f, covinfo in per_file.items():
318 for f, covinfo in per_dir.items():
  /external/webkit/Tools/Scripts/webkitpy/common/net/bugzilla/
bugzilla_unittest.py 246 for key, expected_value in expected.items():
306 mock_control.items = [self._mock_control_item(name) for name in item_names]
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
LocalSource.java 214 // Find a range of items.
229 MediaItem[] items = LocalAlbum.getMediaItemById( local
233 consumer.consume(pid2.id, items[k - i]);
  /external/chromium/chrome/browser/password_manager/
password_store_mac.cc 44 // Fills |items| with all Keychain items that match the Init'd search.
45 // If the search fails for any reason, |items| will be unchanged.
147 void KeychainSearch::FindMatchingItems(std::vector<SecKeychainItemRef>* items) {
158 // Consumer is responsible for freeing the items.
159 items->push_back(keychain_item);
365 // keychain items with paths probably came from us).
412 // Pull out the database blacklist items, since they are used as-is rather
601 std::vector<SecKeychainItemRef>* items) {
603 for (std::vector<SecKeychainItemRef>::const_iterator i = items->begin()
    [all...]
  /external/libxml2/
xmlschemas.c 354 void **items; /* used for dynamic addition of schemata */ member in struct:_xmlSchemaItemList
4012 xmlSchemaTreeItemPtr *items = (xmlSchemaTreeItemPtr *) list->items; local
20726 xmlSchemaTreeItemPtr item, *items; local
    [all...]
  /external/icu4c/i18n/
dtptngen.cpp 451 UnicodeString field = fp->items[i];
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
ListViewTest.java 314 @ToBeFixed(bug="2031502", explanation="setItemChecked(i,false) always unchecks all items")
991 List<String> items = Lists.newArrayList("hello"); local
992 Adapter<String> adapter = new Adapter<String>(mActivity, 0, items);
1027 List<String> items = Lists.newArrayList("hello"); local
    [all...]
  /external/webkit/Tools/Scripts/
prepare-ChangeLog     [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/
ResourceHelper.java 579 NodeList items = document.getElementsByTagName(TAG_ITEM); local
581 value = findColorValue(items);
607 private static String findColorValue(NodeList items) {
608 for (int i = 0, n = items.getLength(); i < n; i++) {
610 Node item = items.item(i);
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Regress/
regress-111557.js     [all...]
  /bootable/recovery/
ui.c 532 void ui_start_menu(char** headers, char** items, int initial_selection) {
543 if (items[i-menu_top] == NULL) break;
544 strncpy(menu[i], items[i-menu_top], text_cols-1);
  /external/qemu/distrib/libpng-1.2.19/
png.c 154 png_zalloc(voidpf png_ptr, uInt items, uInt size)
162 if (items > PNG_UINT_32_MAX/size)
167 num_bytes = (png_uint_32)items * size;
352 /* free text item num or (if num == -1) all text items */
  /external/qemu/
monitor.c 300 monitor_printf(mon, "Log items (comma separated):\n");
518 static void do_log(Monitor *mon, const char *items)
522 if (!strcmp(items, "none")) {
525 mask = cpu_str_to_log_mask(items);
    [all...]
  /external/quake/quake/src/WinQuake/
cl_parse.cpp 544 if (cl.items != i)
548 if ( (i & (1<<j)) && !(cl.items & (1<<j)))
550 cl.items = i;
  /external/wpa_supplicant/
dbus_dict_helpers.c 567 * @param items The array of strings
574 const char **items,
582 if (!items && (num_items != 0))
592 items[i]))
  /external/wpa_supplicant_6/wpa_supplicant/
dbus_dict_helpers.c 565 * @param items The array of strings
572 const char **items,
580 if (!items && (num_items != 0))
590 items[i]))
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recent/
RecentsPanelView.java 498 final int items = mRecentTaskDescriptions.size(); local
500 mRecentsContainer.setVisibility(items > 0 ? View.VISIBLE : View.GONE);
501 mRecentsGlowView.setVisibility(items > 0 ? View.VISIBLE : View.GONE);
  /packages/apps/Stk/src/com/android/stk/
StkAppService.java 766 for (Item item : menu.items) {
776 if (mCurrentMenu.items.size() == 1 &&
777 mCurrentMenu.items.get(0) == null) {
781 CatLog.d(this, "Unable to get Menu's items size");

Completed in 1675 milliseconds

<<11121314151617181920>>