/packages/apps/Gallery2/src/com/android/gallery3d/data/ |
ComboAlbum.java | 23 // ComboAlbum combines multiple media sets into one. It lists all media items 43 ArrayList<MediaItem> items = new ArrayList<MediaItem>(); local 50 items.addAll(fetchItems); 57 return items;
|
/dalvik/dexgen/src/com/android/dexgen/dex/file/ |
HeaderSection.java | 54 public Collection<? extends Item> items() { method in class:HeaderSection
|
/dalvik/dx/src/com/android/dx/dex/file/ |
HeaderSection.java | 54 public Collection<? extends Item> items() { method in class:HeaderSection
|
/external/chromium/chrome/browser/importer/ |
external_process_importer_host.h | 35 uint16 items, 47 // Bitmask of items to be imported (see importer::ImportItem enum).
|
importer.h | 28 uint16 items,
|
profile_import_process_host.h | 41 // |source_profile|, |items|, and |import_to_bookmark_bar| are all needed by 44 uint16 items,
|
/external/chromium/webkit/glue/ |
webmenurunner_mac.h | 41 // Initializes the MenuDelegate with a list of items sent from WebKit. 42 - (id)initWithItems:(const std::vector<WebMenuItem>&)items
|
/external/dexmaker/src/dx/java/com/android/dx/dex/file/ |
HeaderSection.java | 54 public Collection<? extends Item> items() { method in class:HeaderSection
|
/external/smack/src/org/jivesoftware/smackx/pubsub/provider/ |
ItemsProvider.java | 24 * Parses the <b>items</b> element out of the message event stanza from
25 * the server as specified in the <a href="http://xmpp.org/extensions/xep-0060.html#schemas-event">items schema</a>.
35 return new ItemsExtension(ItemsExtension.ItemsElementType.items, attributeMap.get("node"), content);
|
/external/srec/srec/crec/ |
astar_pphash.c | 39 hash->items[i] = FSH_NULL; 100 p_return = hash->items[hkey_index]; 122 p_insert = &hash->items[hkey_index]; 157 p_insert = &hash->items[hkey_index];
|
astar_pphash.h | 42 partial_path* items[FSH_HASHSIZE]; member in struct:__anon15413
|
/external/webkit/Source/WebCore/bindings/js/ |
JSInspectorFrontendHostCustom.cpp | 91 Vector<ContextMenuItem*> items; local 105 items.append(new ContextMenuItem(SeparatorType, 115 items.append(menuItem); 119 impl()->showContextMenu(event, items);
|
/external/webkit/Source/WebCore/bindings/v8/custom/ |
V8InspectorFrontendHostCustom.cpp | 79 Vector<ContextMenuItem*> items; local 92 items.append(new ContextMenuItem(SeparatorType, 102 items.append(menuItem); 107 frontendHost->showContextMenu(event, items);
|
/external/webkit/Source/WebCore/dom/ |
OptionElement.cpp | 56 const Vector<Element*>& items = selectElement->listItems(); local 57 int length = items.size(); 60 if (!isOptionElement(items[i])) 62 if (items[i] == element)
|
/frameworks/base/core/tests/coretests/src/android/database/ |
DatabaseLocaleTest.java | 69 ArrayList<String> items = new ArrayList<String>(); local 71 items.add(c.getString(0)); 74 String[] result = items.toArray(new String[items.size()]);
|
/external/markdown/ |
regression-tests.py | 150 """ Test output of OrderedDict.items(). """ 151 self.assertEqual(self.odict.items(), 158 self.assertEqual(self.odict.items(), 165 self.assertEqual(self.odict.items(), 172 self.assertEqual(self.odict.items(), 179 self.assertEqual(self.odict.items(), 186 self.assertEqual(self.odict.items(), 198 self.assertEqual(self.odict.items(), 204 self.assertEqual(self.odict.items(), 211 self.assertEqual(self.odict.items(), [all...] |
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/ |
ItemLocationBox.java | 65 public List<Item> items = new LinkedList<Item>(); field in class:ItemLocationBox 76 for (Item item : items) { 92 IsoTypeWriter.writeUInt16(byteBuffer, items.size()); 93 for (Item item : items) { 112 items.add(new Item(content)); 150 return items; 153 public void setItems(List<Item> items) { 154 this.items = items;
|
/external/webkit/Source/WebKit2/UIProcess/cf/ |
WebPageProxyCF.cpp | 194 RetainPtr<CFMutableArrayRef> items; local 197 items.adoptCF(CFArrayCreateMutable(0, size, &kCFTypeArrayCallBacks)); 200 CFArrayAppendValue(items.get(), item.get()); 204 CFPreferencesSetAppValue(autosaveKey(name).get(), items.get(), kCFPreferencesCurrentApplication); 214 RetainPtr<CFArrayRef> items(AdoptCF, reinterpret_cast<CFArrayRef>(CFPreferencesCopyAppValue(autosaveKey(name).get(), kCFPreferencesCurrentApplication))); 216 if (!items || CFGetTypeID(items.get()) != CFArrayGetTypeID()) 219 size_t size = CFArrayGetCount(items.get()); 221 CFStringRef item = (CFStringRef)CFArrayGetValueAtIndex(items.get(), i);
|
/external/bison/src/ |
state.c | 125 | Create a new state with ACCESSING_SYMBOL, for those items. Store | 138 res = xmalloc (offsetof (state, items) + items_size); 150 memcpy (res->items, core, items_size); 161 size_t items_size = s->nitems * sizeof *s->items; 165 res = xmalloc (offsetof (state, items) + items_size); 178 memcpy (res->items, s->items, items_size); 308 /* Two states are equal if they have the same core items. */ 318 if (s1->items[i] != s2->items[i] [all...] |
/external/webkit/Source/WebKit/gtk/webkit/ |
webkitwebbackforwardlist.cpp | 73 WebCore::HistoryItemVector items = backForwardList->entries(); local 75 for (unsigned i = 0; i < items.size(); i++) 76 g_hash_table_remove(table, items[i].get()); 199 * @limit: the number of items to retrieve 201 * Returns a list of items that succeed the current item, limited by @limit 203 * Return value: (element-type WebKit.WebHistoryItem) (transfer container): a #GList of items succeeding the current item, limited by @limit 213 WebCore::HistoryItemVector items; 216 backForwardList->forwardListWithLimit(limit, items); 218 for (unsigned i = 0; i < items.size(); i++) { 219 WebKitWebHistoryItem* webHistoryItem = kit(items[i]) [all...] |
/external/chromium/chrome/browser/extensions/ |
extension_menu_manager_unittest.cc | 70 // Tests adding, getting, and removing items. 79 const ExtensionMenuItem::List* items = local 81 ASSERT_EQ(1u, items->size()); 82 ASSERT_EQ(item1, items->at(0)); 88 items = manager_.MenuItems(item2->extension_id()); 89 ASSERT_EQ(2u, items->size()); 90 ASSERT_EQ(item1, items->at(0)); 91 ASSERT_EQ(item2, items->at(1)); 109 // Test adding/removing child items. 124 // Add in the first two items 240 const ExtensionMenuItem::List* items = local [all...] |
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/ |
SetExtensions.cs | 51 public static void addAll<T>( this HashSet<T> set, IEnumerable<T> items ) 53 foreach ( T item in items )
|
/external/chromium/chrome/browser/ui/gtk/importer/ |
import_progress_dialog_gtk.cc | 37 uint16 items, 45 items, 57 source_profile, profile, items, new ProfileWriter(profile), first_run); 62 uint16 items, 68 items_(items), 221 uint16 items, 227 DCHECK_NE(0, items); 229 parent, items, importer_host, importer_observer, source_profile, profile,
|
import_progress_dialog_gtk.h | 27 uint16 items, 36 uint16 items, 73 // Items to import from the other browser.
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/ |
StringArrayPropertyEditor.java | 45 String[] items = getItems(property); local 46 return "[" + Joiner.on(", ").join(items) + "]"; 50 * @return the items specified in value of given {@link Property}. 57 // no items
|