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

12 3 4 5 6 7 8 91011>>

  /external/oprofile/libutil++/
comma_list.h 3 * 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.end()
    [all...]
  /external/openssl/crypto/pqueue/
pqueue.c 66 pitem *items; member in struct:_pqueue
115 if (pq->items == NULL)
117 pq->items = item;
121 for(curr = NULL, next = pq->items;
133 pq->items = item;
153 return pq->items;
159 pitem *item = pq->items;
161 if (pq->items != NULL)
162 pq->items = pq->items->next
    [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...]
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/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/bluetooth/glib/glib/
gcompletion.h 51 GList* items; member in struct:_GCompletion
61 GList* items);
63 GList* 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;
  /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());
  /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).
80 def parse(subpath, items):
81 kwargs = ComponentInfo.parse_items(items, has_dependencies = False)
98 def parse(subpath, items):
99 kwargs = ComponentInfo.parse_items(items)
100 kwargs['library_name'] = items.get_optional_string('library_name'
    [all...]
  /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...]
  /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.");

Completed in 608 milliseconds

12 3 4 5 6 7 8 91011>>