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

1 2 34 5 6 7 8 91011>>

  /external/chromium_org/tools/json_schema_compiler/test/
forbidden.json 17 {"type": "array", "items": {"type": "integer"}}
29 {"type": "array", "items": {"type": "integer"}}
  /external/chromium_org/ui/base/models/
simple_combobox_model.cc 10 const std::vector<base::string16>& items)
11 : items_(items) {
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/bars/
OverflowMenuAdapter.java 49 ArrayList<MenuItemImpl> items = mMenu.getNonActionItems(); local
51 return items.size();
53 return items.size() - 1;
58 ArrayList<MenuItemImpl> items = mMenu.getNonActionItems(); local
62 return items.get(position);
88 final ArrayList<MenuItemImpl> items = mMenu.getNonActionItems(); local
89 final int count = items.size();
91 final MenuItemImpl item = items.get(i);
  /external/chromium_org/chrome/browser/ui/cocoa/location_bar/
autocomplete_text_field_editor_unittest.mm 149 NSArray* items = [contextMenu itemArray];
150 ASSERT_GT([items count], 0U);
151 EXPECT_EQ(@selector(cut:), [[items objectAtIndex:0] action])
152 << "action is: " << sel_getName([[items objectAtIndex:0] action]);
259 NSArray* items = [menu itemArray];
260 ASSERT_EQ([items count], 7U);
263 EXPECT_EQ([[items objectAtIndex:i++] action], @selector(cut:));
264 EXPECT_EQ([[items objectAtIndex:i++] action], @selector(copy:));
265 EXPECT_EQ([[items objectAtIndex:i++] action], @selector(paste:));
266 EXPECT_EQ([[items objectAtIndex:i++] action], @selector(pasteAndGo:))
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
AnnotationSetItem.java 38 * {@code non-null;} set of annotations as individual items in an array.
42 private final AnnotationItem[] items; field in class:AnnotationSetItem
53 this.items = new AnnotationItem[annotations.size()];
57 items[at] = new AnnotationItem(a);
117 int size = items.length;
120 items[i] = byteData.intern(items[i]);
128 AnnotationItem.sortByTypeIdIndex(items);
135 int size = items.length;
145 AnnotationItem item = items[i]
    [all...]
UniformItemSection.java 26 * {@link Item} objects. Each of the items must have the same size in
46 Collection<? extends Item> items = items(); local
47 int sz = items.size();
54 return sz * items.iterator().next().writeSize();
75 for (Item one : items()) {
86 for (Item one : items()) {
96 * Since all items must be the same size, we can use the size
106 * Alters or picks the order for items in this instance if desired,
107 * so that subsequent calls to {@link #items} will yield
    [all...]
  /dalvik/dx/src/com/android/dx/dex/file/
AnnotationSetItem.java 38 * {@code non-null;} set of annotations as individual items in an array.
42 private final AnnotationItem[] items; field in class:AnnotationSetItem
54 this.items = new AnnotationItem[annotations.size()];
58 items[at] = new AnnotationItem(a, dexFile);
118 int size = items.length;
121 items[i] = byteData.intern(items[i]);
129 AnnotationItem.sortByTypeIdIndex(items);
136 int size = items.length;
146 AnnotationItem item = items[i]
    [all...]
UniformItemSection.java 25 * {@link Item} objects. Each of the items must have the same size in
45 Collection<? extends Item> items = items(); local
46 int sz = items.size();
53 return sz * items.iterator().next().writeSize();
74 for (Item one : items()) {
85 for (Item one : items()) {
95 * Since all items must be the same size, we can use the size
105 * Alters or picks the order for items in this instance if desired,
106 * so that subsequent calls to {@link #items} will yield
    [all...]
  /external/chromium_org/third_party/jstemplate/
jstemplate_example.html 47 { title: "title1", items: [
48 { title: "title2", items: [
49 { title: "title2", items: [
50 { title: "title3", items: []},
51 { title: "title4", items: []}
53 { title: "title5", items: []}
55 { title: "title3", items: []},
56 { title: "title4", items: []},
57 { title: "title5", items: []}
99 <ul jsdisplay="items.length"
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
AnnotationSetItem.java 38 * {@code non-null;} set of annotations as individual items in an array.
42 private final AnnotationItem[] items; field in class:AnnotationSetItem
53 this.items = new AnnotationItem[annotations.size()];
57 items[at] = new AnnotationItem(a);
117 int size = items.length;
120 items[i] = byteData.intern(items[i]);
128 AnnotationItem.sortByTypeIdIndex(items);
135 int size = items.length;
145 AnnotationItem item = items[i]
    [all...]
UniformItemSection.java 26 * {@link Item} objects. Each of the items must have the same size in
46 Collection<? extends Item> items = items(); local
47 int sz = items.size();
54 return sz * items.iterator().next().writeSize();
75 for (Item one : items()) {
86 for (Item one : items()) {
96 * Since all items must be the same size, we can use the size
106 * Alters or picks the order for items in this instance if desired,
107 * so that subsequent calls to {@link #items} will yield
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/xmpp/
pubsubtasks.cc 64 // Creates <pubsub node="node"><items></pubsub>
109 std::vector<PubSubItem>* items) {
113 items->push_back(item);
116 // Right now, <retract>s are treated the same as items with empty
120 std::vector<PubSubItem>* items) {
121 ParseItem(retract_elem, items);
125 std::vector<PubSubItem>* items) {
135 ParseItem(item_elem, items);
141 ParseRetract(retract_elem, items);
148 std::vector<PubSubItem>* items) {
171 std::vector<PubSubItem> items; local
189 std::vector<PubSubItem> items; local
    [all...]
  /packages/apps/Camera2/src/com/android/camera/widget/
Preloader.java 15 * @param <T> The type of items this class preload.
16 * @param <Y> The type of load tokens that can be used to cancel loads for the items this class
23 * Implemented by the source for items that should be preloaded.
32 * Returns the total number of items in the source.
38 * Responsible for the loading of items.
42 * Initiates a load for the specified items and returns a list of 0 or more load tokens that
43 * can be used to cancel the loads for the given items. Should preload the items in the list
46 public List<Y> preloadItems(List<T> items);
58 * we don't preload the same items repeatedly. Without this var, scrolling down we preloa
108 final List<T> items = mItemSource.getItemsInRange(start, end); local
    [all...]
  /external/chromium_org/chrome/browser/extensions/
context_menu_matcher.cc 65 MenuItem::List items; local
68 extension_key, &extension, &can_cross_incognito, &items))
71 if (items.empty())
75 // items in the menu, and the last item is not a separator add a separator.
83 // items from one extension, so they are not placed within a submenu.
87 RecursivelyAppendExtensionItems(items,
99 if (items.size() > 1 || items[0]->type() != MenuItem::NORMAL) {
101 submenu_items = items;
103 MenuItem* item = items[0]
139 MenuItem::List items; local
    [all...]
  /external/harfbuzz_ng/src/
gen-arabic-table.py 69 for value,short in short_value.items():
121 print "}; /* Table items: %d; occupancy: %d%% */" % (offset, occupancy)
146 for value,short in short_value.items():
161 items = fields[5].split (' ')
162 shape, items = items[0][1:-1], tuple (int (x, 16) for x in items[1:])
168 if len (items) != 1:
170 if len (items) != 2 or items[0] != 0x0644 or items[1] not in [0x0622, 0x0623, 0x0625, 0x0627]
    [all...]
  /developers/build/prebuilts/gradle/ActionBarCompat-Basic/Application/src/main/res/values/
base-strings.xml 24 displays action items. It covers inflating items from a menu resource, as well as adding
25 an item in code. Items that are not shown as action items on the Action Bar are
  /development/samples/browseable/ActionBarCompat-Basic/res/values/
base-strings.xml 24 displays action items. It covers inflating items from a menu resource, as well as adding
25 an item in code. Items that are not shown as action items on the Action Bar are
  /external/chromium_org/chrome/common/extensions/docs/examples/api/storage/stylizr/
popup.js 13 storage.get('css', function(items) {
14 console.log(items);
16 if (items.css) {
17 chrome.tabs.insertCSS({code: items.css}, function() {
  /external/chromium_org/chrome/common/extensions/docs/templates/private/
sidenav_items.html 3 {{#i:items +partials.sidenav_item0 item:i/}}
  /external/chromium_org/components/test/data/json_schema/
complex_schema.json 3 "items": [
  /external/clang/test/SemaCXX/
attr-selectany.cpp 4 __declspec(selectany) void foo() { } // expected-error{{'selectany' can only be applied to data items with external linkage}}
8 const __declspec(selectany) int x2 = 2; // expected-error{{'selectany' can only be applied to data items with external linkage}}
18 static __declspec(selectany) int x6 = 2; // expected-error{{'selectany' can only be applied to data items with external linkage}}
36 __declspec(selectany) auto x8 = Internal(); // expected-error {{'selectany' can only be applied to data items with external linkage}}
  /external/smack/src/org/jivesoftware/smackx/pubsub/listener/
ItemDeleteListener.java 29 * Called when items are deleted from a node the listener is
32 * @param items The event with item deletion details
34 void handleDeletedItems(ItemDeleteEvent items);
37 * Called when <b>all</b> items are deleted from a node the listener is
  /frameworks/base/docs/html/shareables/
README.txt 6 This directory was originally created for downloadable items such as ZIP files,
  /packages/apps/Launcher2/res/values-sw600dp-land/
config.xml 3 <!-- Folder max bounds and max number of items. Note: folder_max_count_x * folder_max_count_y
  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
CalendarDebug.java 81 // items is the list of items to display in the list.
82 List<Map<String, String>> items = new ArrayList<Map<String, String>>(); local
89 addItem(items, mActivity.getString(R.string.calendar_info_error), "");
131 addItem(items, displayName, text);
137 addItem(items, mActivity.getString(R.string.calendar_info_error), e.toString());
144 if (items.size() == 0) {
145 addItem(items, mActivity.getString(R.string.calendar_info_no_calendars), "");
147 return items;
153 * @param items The info items to display
    [all...]

Completed in 1515 milliseconds

1 2 34 5 6 7 8 91011>>