HomeSort by relevance Sort by last modified time
    Searched full:items (Results 151 - 175 of 6602) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/chromium_org/ui/base/models/
simple_combobox_model.h 14 // A simple data model for a combobox that takes a string16 vector as the items.
18 explicit SimpleComboboxModel(const std::vector<base::string16>& items);
  /external/chromium_org/ui/views/controls/
prefix_delegate.h 12 // An interface used to expose lists of items for selection by text input.
15 // Returns the total number of selectable items.
  /external/clang/test/Preprocessor/
c99-6_10_3_4_p9.c 15 showlist(The first, second, and third items.);
16 // CHECK: puts("The first, second, and third items.");
  /external/qemu/scripts/
ordereddict.py 80 items = [[k, self[k]] for k in self]
86 return (self.__class__, (items,), inst_dict)
87 return self.__class__, (items,)
96 items = DictMixin.items variable in class:OrderedDict
104 return '%s(%r)' % (self.__class__.__name__, self.items())
120 for p, q in zip(self.items(), other.items()):
  /frameworks/base/core/res/res/values-w360dp/
dimens.xml 22 showAsAction="ifRoom" items can fit. "always" items can override this. -->
  /frameworks/base/core/res/res/values-w500dp/
dimens.xml 22 showAsAction="ifRoom" items can fit. "always" items can override this. -->
  /frameworks/base/core/res/res/values-w600dp/
dimens.xml 22 showAsAction="ifRoom" items can fit. "always" items can override this. -->
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
Menu.java 31 public List<Item> items; field in class:Menu
44 items = new ArrayList<Item>();
60 // rebuild items list.
61 items = new ArrayList<Item>();
65 items.add(item);
84 // write items list to the parcel.
85 int size = items.size();
88 dest.writeParcelable(items.get(i), flags);
  /external/chromium_org/ash/
OWNERS 6 # These are for the common case of adding or renaming a few items. If you're
  /external/chromium_org/ash/shelf/
shelf_navigator.cc 26 const ShelfItems& items = model.items(); local
32 const ShelfItem& item = items[i];
58 const ShelfItem& item = items[i];
  /external/chromium_org/chrome/browser/download/
all_download_item_notifier.cc 14 content::DownloadManager::DownloadVector items; local
15 manager_->GetAllDownloads(&items);
17 items.begin();
18 it != items.end(); ++it) {
  /external/chromium_org/chrome/browser/ui/webui/ntp/
suggestions_source.h 33 // The source's weight indicates how many items from this source will be
35 // all the sources is y, then the combiner will select x/y items from it.
38 // Returns the number of items this source can produce.
48 // Requests that the source fetch its items. If the source is already fetching
  /external/chromium_org/third_party/WebKit/Source/build/scripts/templates/
StyleBuilderFunctions.h.tmpl 17 {% for property_id, property in properties.items()
  /external/chromium_org/ui/views/controls/menu/
menu_insertion_delegate_win.h 14 // Returns the index to insert items into the menu at.
  /external/cmockery/cmockery_0_1_2/src/example/
key_value_test.c 42 KeyValue * const items = (KeyValue*)test_malloc(sizeof(key_values)); local
43 memcpy(items, key_values, sizeof(key_values));
44 *state = (void*)items;
45 set_key_values(items, sizeof(key_values) / sizeof(key_values[0]));
  /external/deqp/framework/delibs/decpp/
deRandom.cpp 110 static const int items[] = { 3, 42, 45, 123, 654, -123, -90, 0, 43 };
130 rnd.choose(DE_ARRAY_BEGIN(items), DE_ARRAY_END(items), &itemsDst[0], numItemsPicked);
139 static const int items[] = { 3, 42, 45, 123, 654, -123, -90, 0, 43 };
144 DE_TEST_ASSERT(expected[i] == rnd.choose<int>(DE_ARRAY_BEGIN(items), DE_ARRAY_END(items)));
150 static const int items[] = { 3, 42, 45, 123, 654, -123, -90, 0 };
152 DE_STATIC_ASSERT(DE_LENGTH_OF_ARRAY(items) == DE_LENGTH_OF_ARRAY(weights));
157 DE_TEST_ASSERT(expected[i] == rnd.chooseWeighted<int>(DE_ARRAY_BEGIN(items), DE_ARRAY_END(items), &weights[0]))
    [all...]
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/
StringArrayPropertyEditor.java 45 String[] items = getItems(property); local
46 return "[" + Joiner.on(", ").join(items) + "]";
50 * @return the items specified in value of given {@link Property}.
57 // no items
  /external/robolectric/src/test/resources/res/values/
strings.xml 7 <string-array name="items">
  /external/smack/src/org/jivesoftware/smack/
PrivacyList.java 33 * {@link PrivacyItem Privacy Items} can handle different kind of blocking communications based on JID, group,
47 private List<PrivacyItem> items; field in class:PrivacyList
55 this.items = privacyItems;
67 return items;
  /external/smack/src/org/jivesoftware/smackx/packet/
DiscoverItems.java 33 * A DiscoverItems IQ packet, which is used by XMPP clients to request and receive items
36 * The items could also be queried in order to discover if they contain items inside. Some items
43 public static final String NAMESPACE = "http://jabber.org/protocol/disco#items";
45 private final List<Item> items = new CopyOnWriteArrayList<Item>(); field in class:DiscoverItems
54 synchronized (items) {
55 items.add(item);
60 * Adds a collection of items to the discovered information. Does nothing if itemsToAdd is null
72 * Returns the discovered items of the queried XMPP entity.
    [all...]
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/widget/picker/
PickerColumn.java 29 public PickerColumn(String[] items) {
30 if (items == null) {
31 throw new IllegalArgumentException("items for PickerColumn cannot be null");
33 mItems = items;
  /external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
peers.cpp 518 QStringList items = local
525 for (int i = 0; i < items.size(); i++) {
526 QString str = items.at(i);
552 item->setData(items.join(QString("\n")), peer_role_details);
831 QStringList items = text.split(' '); local
832 QString uuid = items[1];
833 QString addr = items[2];
844 items = text.mid(pos + 1, pos2 - pos - 1).
846 name = items[0];
847 items.append(addr)
866 QStringList items = text.split(' '); local
877 QStringList items = text.split(' '); local
903 QStringList items = local
952 QStringList items = text.split(' '); local
991 QStringList items = text.split(' '); local
1007 QStringList items = text.split(' '); local
1030 QStringList items = text.split(' '); local
1051 QStringList items = text.split(' '); local
1110 QStringList items = text.split(' '); local
1148 QStringList items = text.split(' '); local
1175 QStringList items = text.split(' '); local
1236 QStringList items = text.split(' '); local
1253 QStringList items = text.split(' '); local
1315 QStringList items = text.split(' '); local
1326 QStringList items = text.split(' '); local
    [all...]
  /external/chromium_org/ash/ime/
input_method_menu_manager.h 24 // Called when the list of menu items is changed.
37 // Sets the list of input method menu items. The list could be empty().
41 // Gets the list of input method menu items. The list could be empty().
  /external/chromium_org/cc/resources/
rasterizer.cc 73 items.swap(other->items);
77 items.clear();
  /external/chromium_org/chrome/browser/extensions/api/context_menus/
context_menus_api_helpers.cc 16 "Only items with type \"radio\" or \"checkbox\" can be checked";
26 "Parent items must have type \"normal\"";
28 "All menu items except for separators must have a title";

Completed in 829 milliseconds

1 2 3 4 5 67 8 91011>>