/dalvik/dx/src/com/android/dx/dex/file/ |
MethodIdsSection.java | 50 public Collection<? extends Item> items() { method in class:MethodIdsSection
|
/external/chromium/chrome/browser/importer/ |
importer_list.cc | 40 uint16 items = importer::NONE; local 41 if (!SafariImporter::CanImport(base::mac::GetUserLibraryPath(), &items)) 49 safari->services_supported = items;
|
/external/chromium_org/chrome/browser/download/ |
all_download_item_notifier_unittest.cc | 84 content::DownloadManager::DownloadVector items; local 85 items.push_back(&item()); 87 .WillOnce(SetArgPointee<0>(items));
|
download_status_updater.cc | 69 content::DownloadManager::DownloadVector items; local 70 (*it)->GetManager()->GetAllDownloads(&items); 72 items.begin(); it != items.end(); ++it) { 94 content::DownloadManager::DownloadVector items; local 95 manager->GetAllDownloads(&items); 97 it = items.begin(); it != items.end(); ++it) {
|
/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
|
/external/chromium_org/ppapi/shared_impl/ |
ppb_gamepad_shared.h | 55 // Number of valid entries in the items array. 59 WebKitGamepad items[kItemsLengthCap]; member in struct:ppapi::WebKitGamepads
|
/external/chromium_org/third_party/WebKit/Source/core/html/ |
FormDataList.cpp | 72 const Vector<FormDataList::Item>& items = this->items(); local 73 size_t formDataListSize = items.size(); 76 const FormDataList::Item& key = items[i]; 77 const FormDataList::Item& value = items[i + 1];
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/ |
ordered_dict.py | 63 items = [[k, self[k]] for k in self] 66 return (self.__class__, (items,), inst_dict) 75 items = MutableMapping.items variable in class:OrderedDict 78 pairs = ', '.join(map('%r: %r'.__mod__, self.items()))
|
/external/chromium_org/tools/json_schema_compiler/test/ |
arrays_unittest.cc | 205 std::vector<linked_ptr<Item> > items; local 206 items.push_back(linked_ptr<Item>(new Item())); 207 items.push_back(linked_ptr<Item>(new Item())); 208 items[0]->val = 1; 209 items[1]->val = 2; 210 scoped_ptr<ListValue> results = ReturnRefArray::Results::Create(items);
|
/external/chromium_org/webkit/common/blob/ |
blob_data.h | 48 const std::vector<Item>& items() const { return items_; } function in class:webkit_blob::BlobData 82 if (a.items().size() != b.items().size()) 84 for (size_t i = 0; i < a.items().size(); ++i) { 85 if (a.items()[i] != b.items()[i])
|
/external/compiler-rt/lib/sanitizer_common/tests/ |
sanitizer_list_test.cc | 64 ListItem items[6]; local 70 ListItem *x = &items[0]; 71 ListItem *y = &items[1]; 72 ListItem *z = &items[2]; 73 ListItem *a = &items[3]; 74 ListItem *b = &items[4]; 75 ListItem *c = &items[5];
|
/external/dexmaker/src/dx/java/com/android/dx/dex/file/ |
FieldIdsSection.java | 50 public Collection<? extends Item> items() { method in class:FieldIdsSection
|
MethodIdsSection.java | 50 public Collection<? extends Item> items() { method in class:MethodIdsSection
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/ |
EnumerationValuesPropertyEditor.java | 42 int items = enumElements.length / 3; local 43 m_names = new String[items]; 44 m_values = new Object[items]; 45 m_sources = new String[items]; 46 for (int i = 0; i < items; i++) {
|
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
|
/external/guava/guava-testlib/src/com/google/common/testing/ |
EquivalenceTester.java | 66 private final List<T> items = Lists.newArrayList(); field in class:EquivalenceTester 102 items.addAll(ImmutableList.copyOf(group)); 116 for (T item : items) {
|
/external/icu4c/test/depstest/ |
dependencies.py | 17 items: Map from library or group names to item maps. 28 # TODO: Support binary items. 36 items = {} variable 94 global items, _line_number, _groups_to_be_defined 103 dep_item = items.get(dep) 109 items[dep] = {"type": "group"} 110 if library_name: items[dep]["library"] = library_name 139 global items, libraries, _line_number, _groups_to_be_defined 151 if name in items: 154 item = items[name] = {"type": "library" [all...] |
/external/libexif/libexif/pentax/ |
mnote-pentax-entry.c | 74 } items[] = { variable in typeref:struct:__anon20358 347 for (i = 0; (items[i].tag && items[i].tag != entry->tag); i++); 348 if (!items[i].tag) { 355 for (j = 0; items[i].elem[j].string && 356 (items[i].elem[j].index < vs); j++); 357 if (items[i].elem[j].index != vs) { 362 strncpy (val, _(items[i].elem[j].string), maxlen);
|
/external/smack/src/org/jivesoftware/smackx/search/ |
UserSearchManager.java | 99 DiscoverItems items = discoManager.discoverItems(con.getServiceName()); local 100 Iterator<DiscoverItems.Item> iter = items.getItems();
|
/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...] |
ClassDefsSection.java | 57 public Collection<? extends Item> items() { method in class:ClassDefsSection
|
ProtoIdsSection.java | 50 public Collection<? extends Item> items() { method in class:ProtoIdsSection 135 for (Object i : items()) {
|
TypeIdsSection.java | 50 public Collection<? extends Item> items() { method in class:TypeIdsSection 187 for (Object i : items()) {
|
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...] |
UniformListItem.java | 26 * Class that represents a contiguous list of uniform items. Each 30 * <p>This class inherits its alignment from its items, bumped up to 31 * {@code 4} if the items have a looser alignment requirement. If 46 private final List<T> items; field in class:UniformListItem 53 * @param items {@code non-null and non-empty;} list of items to represent 55 public UniformListItem(ItemType itemType, List<T> items) { 56 super(getAlignment(items), writeSize(items)); 62 this.items = items [all...] |