HomeSort by relevance Sort by last modified time
    Searched refs:items (Results 401 - 425 of 692) sorted by null

<<11121314151617181920>>

  /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/guava/guava-tests/lib/
libtruth.jar 
  /frameworks/base/services/java/com/android/server/usb/
UsbDeviceManager.java 764 String[] items = config.split(":"); local
765 if (items.length == 3) {
    [all...]
  /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...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/properties/
PropertyFactory.java 105 * Get the properties for the given list of selection items.
107 * @param items the {@link CanvasViewInfo} instances to get an intersected
109 * @return the properties for the given items
111 public Property[] getProperties(List<CanvasViewInfo> items) {
114 if (items == null || items.size() == 0) {
116 } else if (items.size() == 1) {
117 CanvasViewInfo item = items.get(0);
124 for (CanvasViewInfo node : items) {
  /external/libxml2/
xmlschemas.c 354 void **items; /* used for dynamic addition of schemata */ member in struct:_xmlSchemaItemList
4012 xmlSchemaTreeItemPtr *items = (xmlSchemaTreeItemPtr *) list->items; local
20796 xmlSchemaTreeItemPtr item, *items; local
    [all...]
  /packages/apps/Exchange/exchange2/src/com/android/exchange/adapter/
EmailSyncAdapter.java 295 // If we're using an auto lookback, check how many items in the past week
297 int items = getEstimate(Eas.FILTER_1_WEEK); local
299 if (items > 1050) {
302 } else if (items > 350 || (items == -1)) {
305 } else if (items > 150) {
308 } else if (items > 75) {
311 } else if (items < 5) {
313 items = getEstimate(Eas.FILTER_ALL);
314 if (items >= 0 && items < 100)
    [all...]
  /external/icu4c/i18n/
dtptngen.cpp 452 UnicodeString field = fp->items[i];
    [all...]
  /external/webkit/Tools/Scripts/
prepare-ChangeLog     [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
Folder.java 306 // When the folder gets focus, we don't want to announce the list of items.
331 private void placeInReadingOrder(ArrayList<ShortcutInfo> items) {
333 int count = items.size();
335 ShortcutInfo item = items.get(i);
342 Collections.sort(items, gridComparator);
347 ShortcutInfo item = items.get(i);
369 // We rearrange the items in case there are any empty gaps
372 // If our folder has too many items we prune them from the list. This is an issue
374 // number of items.
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
DynamicContextMenu.java 71 * Helper class that is responsible for adding and managing the dynamic menu items
93 * Creates a new helper responsible for adding and managing the dynamic menu items
127 // default static items.
130 IContributionItem[] items = mMenuManager.getItems();
132 mMenuManager.remove(items[i]);
181 * @return a list of contribution items applicable for all the nodes
193 List<IContributionItem> items = new ArrayList<IContributionItem>(availableIds.size() + 10); local
196 // are multiple items selected, we'll use the first action, but pass
205 // This action isn't supported by all selected items.
209 items.add(createContributionItem(action, nodes))
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/
ResourceHelper.java 577 NodeList items = document.getElementsByTagName(TAG_ITEM); local
579 value = findColorValue(items);
605 private static String findColorValue(NodeList items) {
606 for (int i = 0, n = items.getLength(); i < n; i++) {
608 Node item = items.item(i);
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Regress/
regress-111557.js     [all...]
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/
CComboBox.java 398 // Items
528 TableItem[] items = m_table.getTable().getItems();
529 for (int i = 0; i < items.length; i++) {
530 TableItem item = items[i];
579 tableBounds.height = Math.min(tableBounds.height, table.getItemHeight() * 15);// max 15 items without scrolling
  /external/oprofile/libpopt/
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/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/skia/bench/
bench_graph_svg.py 136 for key, value in settings.items():
464 for key, value in label.settings.items():
689 for label, line in lines.items():
  /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]))
  /gdk/samples/quake/jni/
cl_parse.cpp 544 if (cl.items != i)
548 if ( (i & (1<<j)) && !(cl.items & (1<<j)))
550 cl.items = i;
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
AdditionalSubtypeSettings.java 92 final TreeSet<SubtypeLocaleItem> items = new TreeSet<SubtypeLocaleItem>(); local
98 items.add(createItem(context, subtype.getLocale()));
102 addAll(items);
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/
DevicePanel.java 796 TreeItem[] items = mTree.getSelection(); local
801 if (items.length == 1) {
802 Object object = items[0].getData();
  /external/webkit/Tools/QtTestBrowser/
launcherwindow.cpp 851 QStringList items; local
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/app/
AlertDialogSamples.java 178 String[] items = getResources().getStringArray(R.array.select_dialog_items);
180 .setMessage("You selected: " + which + " , " + items[which])
342 /* Display a list of items */

Completed in 574 milliseconds

<<11121314151617181920>>