HomeSort by relevance Sort by last modified time
    Searched refs:items (Results 101 - 125 of 1725) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
MixedItemSection.java 63 /** {@code non-null;} the items in this part */
64 private final ArrayList<OffsettedItem> items; field in class:MixedItemSection
66 /** {@code non-null;} items that have been explicitly interned */
69 /** {@code non-null;} how to sort the items */
86 * @param sort how the items should be sorted in the final output
92 this.items = new ArrayList<OffsettedItem>(100);
100 public Collection<? extends Item> items() { method in class:MixedItemSection
101 return items;
119 * Gets the size of this instance, in items.
124 return items.size()
    [all...]
  /external/chromium/chrome/browser/resources/options/
cookies_view.css 52 /* enable animating the height of items */
99 /* styles for the individual items (cookies, etc.) */
100 .cookie-items {
107 /* make the cookie items wrap correctly */
111 .measure-items .cookie-items {
117 .show-items .cookie-items {
121 .cookie-items .cookie-item {
137 .cookie-items .cookie-item:hover
    [all...]
  /development/samples/WiFiDirectServiceDiscovery/src/com/example/android/wifidirect/discovery/
WiFiDirectServicesList.java 56 private List<WiFiP2pService> items; field in class:WiFiDirectServicesList.WiFiDevicesAdapter
59 int textViewResourceId, List<WiFiP2pService> items) {
60 super(context, resource, textViewResourceId, items);
61 this.items = items;
72 WiFiP2pService service = items.get(position);
  /external/chromium_org/chrome/tools/build/win/
sln_deps.py 45 items = line.split('"')
47 project.name = items[3]
48 project.path = items[5]
49 project.guid = items[7]
50 project.type = items[1]
51 projects[items[7]] = project
  /external/chromium_org/third_party/WebKit/Source/build/scripts/templates/
StylePropertyShorthand.cpp.tmpl 31 {%- for property_id, property in properties.items() %}
50 {%- for property_id, property in properties.items() %}
70 {%- for longhand_id, shorthands in longhands_dictionary.items() %}
  /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/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/chrome/browser/ui/ash/launcher/
app_shortcut_launcher_item_controller.cc 45 // items and not the ones from other users through activation.
140 ChromeLauncherAppMenuItems items; local
142 items.push_back(new ChromeLauncherAppMenuItem(GetTitle(), NULL, false));
151 items.push_back(new ChromeLauncherAppMenuItemTab(
154 return items.Pass();
159 std::vector<content::WebContents*> items; local
174 return items;
188 items.push_back(web_contents);
191 return items;
321 std::vector<content::WebContents*> items = GetRunningApplications() local
    [all...]
  /external/chromium_org/ash/shelf/
shelf_window_watcher_unittest.cc 66 EXPECT_EQ(STATUS_RUNNING, model_->items()[index_w1].status);
73 EXPECT_EQ(STATUS_RUNNING, model_->items()[index_w2].status);
96 EXPECT_EQ(STATUS_RUNNING, model_->items()[index_w1].status);
102 EXPECT_EQ(STATUS_RUNNING, model_->items()[index_w1].status);
103 EXPECT_EQ(STATUS_RUNNING, model_->items()[index_w2].status);
107 EXPECT_EQ(STATUS_ACTIVE, model_->items()[index_w1].status);
111 EXPECT_EQ(STATUS_RUNNING, model_->items()[index_w1].status);
112 EXPECT_EQ(STATUS_ACTIVE, model_->items()[index_w2].status);
126 EXPECT_EQ(STATUS_RUNNING, model_->items()[index].status);
137 EXPECT_EQ(id, model_->items()[index].id)
    [all...]
  /developers/build/prebuilts/gradle/ActionBarCompat-ShareActionProvider/ActionBarCompat-ShareActionProviderSample/src/main/java/com/example/android/actionbarcompat/shareactionprovider/
MainActivity.java 51 // The items to be displayed in the ViewPager
70 // Finally set the adapter so the ViewPager can display items
190 ArrayList<ContentItem> items = new ArrayList<ContentItem>(); local
192 items.add(new ContentItem(ContentItem.CONTENT_TYPE_IMAGE, "photo_1.jpg"));
193 items.add(new ContentItem(ContentItem.CONTENT_TYPE_TEXT, R.string.quote_1));
194 items.add(new ContentItem(ContentItem.CONTENT_TYPE_TEXT, R.string.quote_2));
195 items.add(new ContentItem(ContentItem.CONTENT_TYPE_IMAGE, "photo_2.jpg"));
196 items.add(new ContentItem(ContentItem.CONTENT_TYPE_TEXT, R.string.quote_3));
197 items.add(new ContentItem(ContentItem.CONTENT_TYPE_IMAGE, "photo_3.jpg"));
199 return items;
    [all...]
  /developers/samples/android/ui/actionbarcompat/ActionBarCompat-ShareActionProvider/ActionBarCompat-ShareActionProviderSample/src/main/java/com/example/android/actionbarcompat/shareactionprovider/
MainActivity.java 51 // The items to be displayed in the ViewPager
70 // Finally set the adapter so the ViewPager can display items
190 ArrayList<ContentItem> items = new ArrayList<ContentItem>(); local
192 items.add(new ContentItem(ContentItem.CONTENT_TYPE_IMAGE, "photo_1.jpg"));
193 items.add(new ContentItem(ContentItem.CONTENT_TYPE_TEXT, R.string.quote_1));
194 items.add(new ContentItem(ContentItem.CONTENT_TYPE_TEXT, R.string.quote_2));
195 items.add(new ContentItem(ContentItem.CONTENT_TYPE_IMAGE, "photo_2.jpg"));
196 items.add(new ContentItem(ContentItem.CONTENT_TYPE_TEXT, R.string.quote_3));
197 items.add(new ContentItem(ContentItem.CONTENT_TYPE_IMAGE, "photo_3.jpg"));
199 return items;
    [all...]
  /development/samples/browseable/ShareActionProvider/src/com.example.android.actionbarcompat.shareactionprovider/
MainActivity.java 51 // The items to be displayed in the ViewPager
70 // Finally set the adapter so the ViewPager can display items
190 ArrayList<ContentItem> items = new ArrayList<ContentItem>(); local
192 items.add(new ContentItem(ContentItem.CONTENT_TYPE_IMAGE, "photo_1.jpg"));
193 items.add(new ContentItem(ContentItem.CONTENT_TYPE_TEXT, R.string.quote_1));
194 items.add(new ContentItem(ContentItem.CONTENT_TYPE_TEXT, R.string.quote_2));
195 items.add(new ContentItem(ContentItem.CONTENT_TYPE_IMAGE, "photo_2.jpg"));
196 items.add(new ContentItem(ContentItem.CONTENT_TYPE_TEXT, R.string.quote_3));
197 items.add(new ContentItem(ContentItem.CONTENT_TYPE_IMAGE, "photo_3.jpg"));
199 return items;
    [all...]
  /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/renderer/pepper/
pepper_flash_menu_host.cc 50 if (!in_menu->items || in_menu->count > kMaxMenuEntries)
55 PP_Flash_MenuItem_Type type = in_menu->items[i].type;
72 if (in_menu->items[i].name)
73 item.label = UTF8ToUTF16(in_menu->items[i].name);
77 // This sets |(*menu_id_map)[item.action] = in_menu->items[i].id|.
78 menu_id_map->push_back(in_menu->items[i].id);
79 item.enabled = PP_ToBool(in_menu->items[i].enabled);
80 item.checked = PP_ToBool(in_menu->items[i].checked);
82 if (!ConvertMenuData(in_menu->items[i].submenu, depth + 1, &item.submenu,
  /external/chromium_org/third_party/simplejson/
ordered_dict.py 76 items = [[k, self[k]] for k in self]
82 return (self.__class__, (items,), inst_dict)
83 return self.__class__, (items,)
92 items = DictMixin.items variable in class:OrderedDict
100 return '%s(%r)' % (self.__class__.__name__, self.items())
115 all(p==q for p, q in zip(self.items(), other.items()))
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/
StringComboPropertyEditor.java 30 public StringComboPropertyEditor(String... items) {
31 m_items = items;
  /external/llvm/utils/lit/lit/
Util.py 95 def printHistogram(items, title = 'Items'):
98 items.sort(key = lambda item: item[1])
100 maxValue = max([v for _,v in items])
113 for name,v in items:
121 for name,value in items[-20:]:
129 cDigits = int(math.ceil(math.log(len(items), 10)))
135 pct = float(len(row)) / len(items)
139 '*'*w, ' '*(barW-w), cDigits, len(row), cDigits, len(items)))
  /external/smack/src/org/jivesoftware/smackx/packet/
MUCOwner.java 38 private List<Item> items = new ArrayList<Item>(); field in class:MUCOwner
49 synchronized (items) {
50 return Collections.unmodifiableList(new ArrayList<Item>(items)).iterator();
82 synchronized (items) {
83 items.add(item);
90 synchronized (items) {
91 for (int i = 0; i < items.size(); i++) {
92 Item item = (Item) items.get(i);
OfflineMessageRequest.java 40 private List<Item> items = new ArrayList<Item>(); field in class:OfflineMessageRequest
52 synchronized (items) {
53 return Collections.unmodifiableList(new ArrayList<Item>(items)).iterator();
63 synchronized (items) {
64 items.add(item);
107 synchronized (items) {
108 for (int i = 0; i < items.size(); i++) {
109 Item item = items.get(i);
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/editors/
GLCallGroups.java 150 List<GLCallNode> items = new ArrayList<GLCallNode>(); local
164 items.add(group);
177 items.add(new GLLeafNode(c));
184 items.add(leaf);
189 return items;
193 List<GLCallNode> items = new ArrayList<GLCallNode>(); local
197 items.add(new GLLeafNode(calls.get(i)));
200 return items;
  /system/core/toolbox/
dynarray.h 10 void** items; member in struct:__anon60989
30 * remove items from the array during iteration.
36 _item_type _item = (_item_type)(_array)->items[_nn_##__LINE__]; \
58 * This macro is only intended for simple uses. Do not add or remove items
  /external/chromium/chrome/browser/tab_contents/
popup_menu_helper_mac.h 30 const std::vector<WebMenuItem>& items,
  /external/chromium/googleurl/
PRESUBMIT_unittest.py 39 def __init__(self, msg, items=[], long_text=''):
41 self.items = items
77 len(PRESUBMIT.LocalChecks(api, MockOutputApi)[0].items) == 3)
  /external/chromium_org/content/common/
gamepad_user_gesture.cc 15 const blink::WebGamepad& pad = gamepads.items[i];
  /external/chromium_org/ppapi/c/
ppb_gamepad.h 76 * Number of valid elements in the |items| array.
84 struct PP_GamepadSampleData items[4]; member in struct:PP_GamepadsSampleData

Completed in 1156 milliseconds

1 2 3 45 6 7 8 91011>>