Searched defs:items (Results 26 - 50 of 366) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/libjingle/source/talk/xmpp/
H A Ddiscoitemsquerytask.cc52 std::vector<DiscoItem> items; local
58 items.push_back(item);
61 SignalResult(items);
/external/chromium_org/ui/base/models/
H A Dsimple_combobox_model.cc10 const std::vector<base::string16>& items)
11 : items_(items) {
9 SimpleComboboxModel( const std::vector<base::string16>& items) argument
/external/clang/test/CodeGenCXX/
H A Dtypeid-cxx11.cpp22 constexpr Item items[] = { member in namespace:Test1
27 constexpr auto &x = items[0].ti;
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DHeaderSection.java54 public Collection<? extends Item> items() { method in class:HeaderSection
H A DFieldIdsSection.java50 public Collection<? extends Item> items() { method in class:FieldIdsSection
H A DMethodIdsSection.java50 public Collection<? extends Item> items() { method in class:MethodIdsSection
H A DProtoIdsSection.java50 public Collection<? extends Item> items() { method in class:ProtoIdsSection
135 for (Object i : items()) {
H A DStringIdsSection.java52 public Collection<? extends Item> items() { method in class:StringIdsSection
H A DTypeIdsSection.java50 public Collection<? extends Item> items() { method in class:TypeIdsSection
187 for (Object i : items()) {
/external/guava/guava-testlib/src/com/google/common/testing/
H A DEquivalenceTester.java66 private final List<T> items = Lists.newArrayList(); field in class:EquivalenceTester
102 items.addAll(ImmutableList.copyOf(group));
116 for (T item : items) {
/external/jsilver/src/com/google/clearsilver/jsilver/resourceloader/
H A DInMemoryResourceLoader.java28 * ResourceLoader that pulls all items from memory. This is particularly useful for small templates
37 private ConcurrentMap<String, String> items = new ConcurrentHashMap<String, String>(); field in class:InMemoryResourceLoader
41 String content = items.get(name);
56 items.put(name, contents);
60 items.remove(name);
64 return items;
/external/oprofile/libutil++/
H A Dcomma_list.h3 * Container holding items from a list of comma separated items
31 * setup items array according to str parameters. Implement PP:3.17
45 * return true if value match one the stored value in items
54 container_type items; member in class:comma_list
68 items.clear();
76 items.clear();
79 items.push_back(op_lexical_cast<T>(result[i]));
90 const_iterator cit = items.begin();
91 const_iterator const end = items
[all...]
/external/smack/src/org/jivesoftware/smack/
H A DPrivacyList.java47 private List<PrivacyItem> items; field in class:PrivacyList
55 this.items = privacyItems;
67 return items;
/external/smack/src/org/jivesoftware/smackx/pubsub/
H A DEventElementType.java34 items, enum constant in enum:EventElementType
36 /** All items have been purged from a node */
H A DItemPublishEvent.java27 private List<T> items; field in class:ItemPublishEvent
40 items = eventItems;
56 items = eventItems;
74 items = eventItems;
87 return Collections.unmodifiableList(items);
91 * Indicates whether this event was delayed. That is, the items
98 * @return true if the items are delayed, false otherwise.
106 * Gets the original date the items were published. This is only
109 * @return Date items were published if {@link #isDelayed()} is true, null otherwise.
/external/chromium_org/chrome/browser/download/
H A Dall_download_item_notifier_unittest.cc84 content::DownloadManager::DownloadVector items; local
85 items.push_back(&item());
87 .WillOnce(SetArgPointee<0>(items));
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/input/
H A DSelectPopupAdapter.java19 * OPTION_GROUP items.
22 // Holds the items of the select popup alert dialog list.
25 // True if all items have type PopupItemType.ENABLED.
32 * @param items SelectPopupItem array list.
35 List<SelectPopupItem> items) {
36 super(context, layoutResource, items);
37 mItems = new ArrayList<SelectPopupItem>(items);
34 SelectPopupAdapter(Context context, int layoutResource, List<SelectPopupItem> items) argument
H A DSelectPopupDropdown.java33 public SelectPopupDropdown(ContentViewCore contentViewCore, List<SelectPopupItem> items, argument
49 DropdownItem[] dropdownItems = items.toArray(new DropdownItem[items.size()]);
/external/chromium_org/net/third_party/nss/ssl/bodge/
H A Dsecitem_array.c22 SECItem *items; member in struct:SECItemArrayStr
47 PORT_Assert(array->items == NULL);
54 result->items = PORT_ArenaZNewArray(arena, SECItem, len);
56 result->items = PORT_ZNewArray(SECItem, len);
58 if (result->items == NULL) {
62 result->items = NULL;
76 array->items = NULL;
96 if (!array || !array->len || !array->items)
100 SECItem *item = &array->items[i];
110 PORT_Free(array->items);
[all...]
/external/chromium_org/ppapi/c/
H A Dppb_gamepad.h76 * Number of valid elements in the |items| array.
84 struct PP_GamepadSampleData items[4]; member in struct:PP_GamepadsSampleData
/external/chromium_org/third_party/cython/src/Cython/Plex/
H A DTransitions.py112 items = iteritems variable in class:TransitionMap
/external/chromium_org/third_party/icu/source/test/depstest/
H A Ddependencies.py17 items: Map from library or group names to item maps.
28 # TODO: Support binary items.
36 items = {} variable
94 global items, _line_number, _groups_to_be_defined
103 dep_item = items.get(dep)
109 items[dep] = {"type": "group"}
110 if library_name: items[dep]["library"] = library_name
139 global items, libraries, _line_number, _groups_to_be_defined
151 if name in items:
154 item = items[nam
[all...]
/external/chromium_org/ui/android/java/src/org/chromium/ui/
H A DDropdownAdapter.java31 public DropdownAdapter(Context context, List<DropdownItem> items, Set<Integer> separators) { argument
32 super(context, R.layout.dropdown_item, items);
38 public DropdownAdapter(Context context, DropdownItem[] items, Set<Integer> separators) { argument
39 super(context, R.layout.dropdown_item, items);
/external/cmockery/cmockery_0_1_2/src/example/
H A Dkey_value_test.c42 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/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/
H A DStringComboPropertyEditor.java30 public StringComboPropertyEditor(String... items) { argument
31 m_items = items;

Completed in 8004 milliseconds

1234567891011>>