/external/smack/src/org/jivesoftware/smack/ |
PrivacyList.java | 33 * {@link PrivacyItem Privacy Items} can handle different kind of blocking communications based on JID, group,
47 private List<PrivacyItem> items;
field in class:PrivacyList 55 this.items = privacyItems;
67 return items;
|
/external/webkit/Source/WebCore/platform/ |
ContextMenu.cpp | 37 static const ContextMenuItem* findItemWithAction(unsigned action, const Vector<ContextMenuItem>& items) 39 for (size_t i = 0; i < items.size(); ++i) { 40 const ContextMenuItem& item = items[i];
|
/external/elfutils/libebl/ |
eblcorenote.c | 65 regs_offset, nregloc, reglocs, nitems, items) 73 const Ebl_Core_Item **items; 76 nitems, items); 86 #define ITEMS(type, table) \ 88 *items = table; \ 100 ITEMS (NT_PLATFORM, platform); 102 #undef ITEMS
|
/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
|
/external/smali/dexlib/src/main/java/org/jf/dexlib/ |
OffsettedSection.java | 40 for (int i = 0; i < items.size(); i++) { 41 assert items.get(i) == null; 47 items.set(i, item); 51 readContext.setItemsForSection(ItemType, items);
|
IndexedSection.java | 47 for (int i = 0; i < items.size(); i++) { 49 items.set(i, item); 75 return items.get(index);
|
/external/smali/dexlib/src/main/java/org/jf/dexlib/Util/ |
ReadOnlyArrayList.java | 49 public static <T> ReadOnlyArrayList<T> of(T... items) { 50 return new ReadOnlyArrayList<T>(items);
|
/dalvik/dexgen/src/com/android/dexgen/dex/file/ |
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...] |
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...] |
/dalvik/dx/src/com/android/dx/dex/file/ |
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...] |
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...] |
/external/dexmaker/src/dx/java/com/android/dx/dex/file/ |
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...] |
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...] |
/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...] |
/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/smack/src/org/jivesoftware/smackx/pubsub/ |
LeafNode.java | 30 * All items are published to a node, and typically subscribed to by other
43 * Get information on the items in the node in standard
53 DiscoverItems items = new DiscoverItems();
local 54 items.setTo(to);
55 items.setNode(getId());
56 return (DiscoverItems)SyncPacketSend.getReply(con, items);
60 * Get the current items stored in the node.
72 ItemsExtension itemsElem = (ItemsExtension)result.getExtension(PubSubElementType.ITEMS);
77 * Get the current items stored in the node based
93 ItemsExtension itemsElem = (ItemsExtension)result.getExtension(PubSubElementType.ITEMS);
203 Collection<T> items = new ArrayList<T>(1); local 274 Collection<T> items = new ArrayList<T>(1); local 328 Collection<String> items = new ArrayList<String>(1); local 343 List<Item> items = new ArrayList<Item>(itemIds.size()); local [all...] |
ItemPublishEvent.java | 27 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/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/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;
|