HomeSort by relevance Sort by last modified time
    Searched refs:items (Results 26 - 50 of 749) sorted by null

12 3 4 5 6 7 8 91011>>

  /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...]
MemberIdsSection.java 39 for (Object i : items()) {
  /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
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...]
MemberIdsSection.java 48 if (items().size() > MAX_MEMBERS) {
52 for (Object i : items()) {
60 for (Object member : items()) {
73 memberType, items().size(), MAX_MEMBERS);
  /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...]
  /frameworks/base/core/java/com/android/internal/view/menu/
ActionMenu.java 129 final ArrayList<ActionMenuItem> items = mItems; local
130 final int itemCount = items.size();
132 if (items.get(i).getItemId() == id) {
149 final ArrayList<ActionMenuItem> items = mItems; local
150 final int itemCount = items.size();
153 if (items.get(i).isVisible()) {
164 final ArrayList<ActionMenuItem> items = mItems; local
165 final int itemCount = items.size();
168 ActionMenuItem item = items.get(i);
201 final ArrayList<ActionMenuItem> items = mItems local
220 final ArrayList<ActionMenuItem> items = mItems; local
233 final ArrayList<ActionMenuItem> items = mItems; local
245 final ArrayList<ActionMenuItem> items = mItems; local
    [all...]
  /system/core/toolbox/
dynarray.c 9 a->items = NULL;
37 new_items = realloc(a->items, new_cap*sizeof(void*));
41 a->items = new_items;
51 a->items[a->count++] = item;
57 free(a->items);
58 a->items = NULL;
98 qsort(list->items,
  /external/llvm/utils/llvm-build/llvmbuild/
componentinfo.py 22 def parse_items(items, has_dependencies = True):
24 kwargs['name'] = items.get_string('name')
25 kwargs['parent'] = items.get_optional_string('parent')
27 kwargs['dependencies'] = items.get_list('dependencies')
61 this object. Items are of the form (reference-type, component-name).
95 def parse(subpath, items):
96 kwargs = ComponentInfo.parse_items(items, has_dependencies = False)
113 def parse_items(items):
114 kwargs = ComponentInfo.parse_items(items)
115 kwargs['library_name'] = items.get_optional_string('library_name'
    [all...]
  /external/webkit/Source/WebKit2/UIProcess/mac/
WebContextMenuProxyMac.mm 133 static Vector<RetainPtr<NSMenuItem> > nsMenuItemVector(const Vector<WebContextMenuItemData>& items)
137 unsigned size = items.size();
140 switch (items[i].type()) {
143 NSMenuItem* menuItem = [[NSMenuItem alloc] initWithTitle:nsStringFromWebCoreString(items[i].title()) action:@selector(forwardContextMenuAction:) keyEquivalent:@""];
144 [menuItem setTag:items[i].action()];
145 [menuItem setEnabled:items[i].enabled()];
146 [menuItem setState:items[i].checked() ? NSOnState : NSOffState];
148 if (items[i].userData()) {
149 WebUserDataWrapper *wrapper = [[WebUserDataWrapper alloc] initWithUserData:items[i].userData()];
161 NSMenu* menu = [[NSMenu alloc] initWithTitle:nsStringFromWebCoreString(items[i].title())]
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/resourceloader/
InMemoryResourceLoader.java 28 * 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/webkit/Source/WebCore/platform/graphics/pango/
GlyphPageTreeNodePango.cpp 48 GList* items = pango_itemize(context, buffer, 0, length, NULL, NULL); local
50 if (g_list_length(items) == 1) {
51 PangoItem* item = reinterpret_cast<PangoItem*>(items->data);
68 g_list_foreach(items, (GFunc)pango_item_free, NULL);
69 g_list_free(items);
  /external/smali/dexlib/src/main/java/org/jf/dexlib/
IndexedSection.java 47 for (int i = 0; i < items.size(); i++) {
49 items.set(i, item);
75 return items.get(index);
  /external/webkit/Source/WebCore/platform/qt/
ContextMenuQt.cpp 76 Vector<ContextMenuItem> contextMenuItemVector(const QList<ContextMenuItem>* items)
78 int itemCount = items->size();
81 menuItemVector.append(items->at(i));
  /external/webkit/Source/WebKit/chromium/src/
WebSelectElement.cpp 57 WebVector<WebElement> items(sourceItems.size());
59 items[i] = WebElement(static_cast<HTMLElement*>(sourceItems[i]));
61 return items;
  /packages/apps/Settings/src/com/android/settings/
AppWidgetLoader.java 56 void putCustomAppWidgets(List<Item> items, Intent intent) {
105 if (LOGD) Log.d(TAG, "Using " + customInfo.size() + " custom items");
106 putAppWidgetItems(customInfo, customExtras, items, 0, true);
115 List<Bundle> customExtras, List<Item> items, int categoryFilter,
130 items.add(item);
140 * Build and return list of items to be shown in dialog. This will mix both
148 List<Item> items = new ArrayList<Item>(); local
154 putInstalledAppWidgets(items, categoryFilter);
156 // Sort all items together by label
158 putCustomAppWidgets(items, intent)
    [all...]
  /external/webkit/Source/WebKit2/UIProcess/win/
WebContextMenuProxyWin.cpp 42 void WebContextMenuProxyWin::populateMenu(HMENU menu, const Vector<WebContextMenuItemData>& items)
44 for (size_t i = 0; i < items.size(); ++i) {
45 const WebContextMenuItemData& itemData = items[i];
74 void WebContextMenuProxyWin::showContextMenu(const IntPoint& origin, const Vector<WebContextMenuItemData>& items)
76 if (items.isEmpty())
83 populateMenu(m_menu, items);
  /external/clang/test/CodeGenCXX/
typeid-cxx11.cpp 23 constexpr Item items[] = { member in namespace:Test1
28 constexpr auto &x = items[0].ti;
  /external/webkit/Source/WebCore/platform/network/
BlobStorageData.h 49 const BlobDataItemList& items() const { return m_data.items(); } function in class:WebCore::BlobStorageData
  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
WebPopupMenu.cpp 79 Vector<WebPopupItem> items; local
80 items.reserveInitialCapacity(size);
84 items.append(WebPopupItem(WebPopupItem::Separator));
90 items.append(WebPopupItem(WebPopupItem::Item, m_popupClient->itemText(i), itemStyle.textDirection(), itemStyle.hasTextDirectionOverride(), m_popupClient->itemToolTip(i), m_popupClient->itemAccessibilityText(i), m_popupClient->itemIsEnabled(i), m_popupClient->itemIsLabel(i)));
94 return items;
100 Vector<WebPopupItem> items = populateItems(); local
102 if (items.isEmpty() || !m_page) {
115 WebProcess::shared().connection()->send(Messages::WebPageProxy::ShowPopupMenu(pageCoordinates, m_popupClient->menuStyle().textDirection(), items, index, platformData), m_page->pageID());
  /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...]
  /libcore/luni/src/main/java/java/util/concurrent/
ArrayBlockingQueue.java 56 * even for the items array, which is default-serialized, even if
62 /** The queued items */
63 final Object[] items; field in class:ArrayBlockingQueue
65 /** items index for next take, poll, peek or remove */
68 /** items index for next put, offer, or add */
101 return (++i == items.length) ? 0 : i;
108 return ((i == 0) ? items.length : i) - 1;
115 @SuppressWarnings("unchecked") E x = (E) items[i];
135 // assert items[putIndex] == null;
136 items[putIndex] = x
149 final Object[] items = this.items; local
169 final Object[] items = this.items; local
526 final Object[] items = this.items; local
577 final Object[] items = this.items; local
623 final Object[] items = this.items; local
    [all...]
  /external/chromium/chrome/browser/importer/
external_process_importer_host.cc 28 uint16 items,
35 items_ = items;
40 CheckForFirefoxLock(source_profile, items, first_run);
41 CheckForLoadedModels(items);
importer_progress_dialog.h 19 // Shows an UI for importing and begins importing the specified |items| from
25 uint16 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/linux-tools-perf/scripts/perl/Perf-Trace-Util/
Context.c 51 if (items != 1)
74 if (items != 1)
97 if (items != 1)
125 PERL_UNUSED_VAR(items); /* -W */

Completed in 1059 milliseconds

12 3 4 5 6 7 8 91011>>