Searched refs:entries (Results 226 - 250 of 548) sorted by relevance

1234567891011>>

/external/e2fsprogs/intl/
H A Dl10nflist.c183 size_t entries; local
321 entries = 0;
346 retval->successor[entries++]
353 retval->successor[entries++]
359 retval->successor[entries] = NULL;
/external/guava/guava/src/com/google/common/collect/
H A DLinkedHashMultimap.java39 * entries and that returns collections whose iterators follow the ordering in
46 * order they were added. The collections generated by {@code entries} and
79 * Map entries with an iteration order corresponding to the order in which the
111 * multimap has the same {@link Multimap#entries()} iteration order as the
188 // converts a collection of values into a list of key/value map entries
189 Collection<Map.Entry<K, E>> entries
192 entries.add(createEntry(value));
194 return entries;
247 * by entries().iterator().remove()
284 * <p>Generates an iterator across map entries tha
340 @Override public Set<Map.Entry<K, V>> entries() { method in class:LinkedHashMultimap
[all...]
H A DMultimaps.java406 for (Map.Entry<? extends V, ? extends K> entry : source.entries()) {
490 transient Collection<Entry<K, V>> entries; field in class:Multimaps.UnmodifiableMultimap
552 @Override public Collection<Entry<K, V>> entries() { method in class:Multimaps.UnmodifiableMultimap
553 Collection<Entry<K, V>> result = entries;
555 entries = result = unmodifiableEntries(delegate.entries());
693 @Override public Set<Map.Entry<K, V>> entries() { method in class:Multimaps.UnmodifiableSetMultimap
694 return Maps.unmodifiableEntrySet(delegate().entries());
927 * Returns an unmodifiable view of the specified collection of entries. The
932 * @param entries th
935 unmodifiableEntries( Collection<Entry<K, V>> entries) argument
1153 public Set<Entry<K, V>> entries() { method in class:Multimaps.MapMultimap
1456 private transient Collection<Entry<K, V2>> entries; field in class:Multimaps.TransformedEntriesMultimap
1458 @Override public Collection<Entry<K, V2>> entries() { method in class:Multimaps.TransformedEntriesMultimap
2487 Collection<Entry<K, V>> entries; field in class:Multimaps.FilteredMultimap
2489 @Override public Collection<Entry<K, V>> entries() { method in class:Multimaps.FilteredMultimap
[all...]
H A DImmutableSetMultimap.java79 * Returns an immutable multimap containing the given entries, in order.
91 * Returns an immutable multimap containing the given entries, in order.
105 * Returns an immutable multimap containing the given entries, in order.
120 * Returns an immutable multimap containing the given entries, in order.
135 // looking for of() with > 5 entries? Use the builder instead.
387 for (Entry<K, V> entry : entries()) {
414 private transient ImmutableSet<Entry<K, V>> entries; field in class:ImmutableSetMultimap
421 // TODO(kevinb): Fix this so that two copies of the entries are not created.
422 @Override public ImmutableSet<Entry<K, V>> entries() { method in class:ImmutableSetMultimap
423 ImmutableSet<Entry<K, V>> result = entries;
[all...]
/external/jmonkeyengine/engine/src/core-plugins/com/jme3/asset/plugins/
H A DHttpZipLocator.java65 private HashMap<String, ZipEntry2> entries; field in class:HttpZipLocator
237 entries.put(entry.name, entry);
266 entries = new HashMap<String, ZipEntry2>(numEntries);
331 ZipEntry2 entry = entries.get(name);
350 final ZipEntry2 entry = entries.get(key.getName());
/external/linux-tools-perf/util/ui/
H A Dbrowser.c44 struct list_head *head = self->entries;
74 struct rb_root *root = self->entries;
108 self->top = rb_first(self->entries);
315 struct list_head *head = self->entries;
318 if (self->top == NULL || self->top == self->entries)
/external/qemu/target-i386/
H A Dkvm.c50 size = sizeof(*cpuid) + max * sizeof(*cpuid->entries);
87 if (cpuid->entries[i].function == function) {
90 ret = cpuid->entries[i].eax;
93 ret = cpuid->entries[i].ebx;
96 ret = cpuid->entries[i].ecx;
99 ret = cpuid->entries[i].edx;
134 struct kvm_cpuid_entry2 entries[100]; member in struct:__anon11133
146 struct kvm_cpuid_entry2 *c = &cpuid_data.entries[cpuid_i++];
160 c = &cpuid_data.entries[cpuid_i++];
183 c = &cpuid_data.entries[cpuid_
450 struct kvm_msr_entry entries[100]; member in struct:__anon11134
582 struct kvm_msr_entry entries[100]; member in struct:__anon11135
[all...]
/external/chromium/chrome/browser/history/
H A Dstarred_url_database.cc108 std::vector<StarredEntry>* entries) {
109 DCHECK(entries);
128 entries->push_back(entry);
346 // bookmarks/folders. In addition populate the empty_url_ids with all entries
464 // Nuke any entries with no url.
537 std::vector<history::StarredEntry> entries; local
538 if (!GetAllStarredEntries(&entries))
557 // Iterate through the entries building a mapping between folder_id and id.
558 for (std::vector<history::StarredEntry>::const_iterator i = entries.begin();
559 i != entries
107 GetAllStarredEntries( std::vector<StarredEntry>* entries) argument
[all...]
/external/linux-tools-perf/util/
H A Dhist.c134 struct rb_node **p = &self->entries.rb_node;
174 rb_insert_color(&he->rb_node, &self->entries);
271 next = rb_first(&self->entries);
279 rb_erase(&n->rb_node, &self->entries);
284 self->entries = tmp;
291 static void __hists__insert_output_entry(struct rb_root *entries, argument
295 struct rb_node **p = &entries->rb_node;
314 rb_insert_color(&he->rb_node, entries);
327 next = rb_first(&self->entries);
336 rb_erase(&n->rb_node, &self->entries);
[all...]
/external/linux-tools-perf/util/ui/browsers/
H A Dhists.c278 for (nd = rb_first(&self->entries); nd; nd = rb_next(nd)) {
289 /* Go to the start, we may be way after valid entries after a collapse */
300 self->b.entries = &self->hists->entries;
595 self->top = rb_first(&hb->hists->entries);
649 nd = hists__filter_entries(rb_first(self->entries));
655 nd = hists__filter_prev_entries(rb_last(self->entries));
1069 if (pos->node.next == &evlist->entries)
1070 pos = list_entry(evlist->entries.next, struct perf_evsel, node);
1075 if (pos->node.prev == &evlist->entries)
[all...]
H A Dmap.c131 .entries = &self->dso->symbols[self->type],
142 for (nd = rb_first(mb.b.entries); nd; nd = rb_next(nd)) {
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DMultimaps.java317 for (Map.Entry<? extends V, ? extends K> entry : source.entries()) {
401 transient Collection<Entry<K, V>> entries; field in class:Multimaps.UnmodifiableMultimap
463 @Override public Collection<Entry<K, V>> entries() { method in class:Multimaps.UnmodifiableMultimap
464 Collection<Entry<K, V>> result = entries;
466 entries = result = unmodifiableEntries(delegate.entries());
604 @Override public Set<Map.Entry<K, V>> entries() { method in class:Multimaps.UnmodifiableSetMultimap
605 return Maps.unmodifiableEntrySet(delegate().entries());
838 * Returns an unmodifiable view of the specified collection of entries. The
843 * @param entries th
846 unmodifiableEntries( Collection<Entry<K, V>> entries) argument
1064 public Set<Entry<K, V>> entries() { method in class:Multimaps.MapMultimap
1367 private transient Collection<Entry<K, V2>> entries; field in class:Multimaps.TransformedEntriesMultimap
1369 @Override public Collection<Entry<K, V2>> entries() { method in class:Multimaps.TransformedEntriesMultimap
2270 Collection<Entry<K, V>> entries; field in class:Multimaps.FilteredMultimap
2272 @Override public Collection<Entry<K, V>> entries() { method in class:Multimaps.FilteredMultimap
[all...]
H A DImmutableSetMultimap.java74 * Returns an immutable multimap containing the given entries, in order.
86 * Returns an immutable multimap containing the given entries, in order.
100 * Returns an immutable multimap containing the given entries, in order.
115 * Returns an immutable multimap containing the given entries, in order.
130 // looking for of() with > 5 entries? Use the builder instead.
382 for (Entry<K, V> entry : entries()) {
409 private transient ImmutableSet<Entry<K, V>> entries; field in class:ImmutableSetMultimap
416 // TODO(kevinb): Fix this so that two copies of the entries are not created.
417 @Override public ImmutableSet<Entry<K, V>> entries() { method in class:ImmutableSetMultimap
418 ImmutableSet<Entry<K, V>> result = entries;
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.ant.core_3.2.200.v20100427.jar ... .eclipse.core.runtime.Preferences prefs String entries private void restoreAdditionalEntries (org.eclipse.core.runtime ...
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DMapTestSuiteBuilder.java244 // Start with a suitably shaped collection of entries
249 Collection<Map.Entry<K, V>> entries =
253 entries.add(Helpers.mapEntry(keysArray[i++], entry.getValue()));
256 return mapGenerator.create(entries.toArray()).keySet();
305 // Start with a suitably shaped collection of entries
310 Collection<Map.Entry<K, V>> entries =
314 entries.add(Helpers.mapEntry(entry.getKey(), valuesArray[i++]));
317 return mapGenerator.create(entries.toArray()).values();
/external/webkit/Source/WebCore/inspector/front-end/
H A DExtensionAPI.js122 var entries = (result && result.entries) || [];
123 for (var i = 0; i < entries.length; ++i) {
124 entries[i].__proto__ = new Resource(entries[i]._resourceId);
125 delete entries[i]._resourceId;
/external/e2fsprogs/lib/ext2fs/
H A Dextent.c41 int entries; member in struct:extent_path
75 printf("header: magic=%x entries=%u max=%u depth=%u generation=%u\n",
256 handle->path[0].left = handle->path[0].entries =
339 } else if (path->left < path->entries-1)
347 if (path->left < path->entries-1)
383 path->left = path->entries;
401 path->left+1 >= path->entries)
461 newpath->left = newpath->entries =
475 path->left = path->entries - 1;
740 (path->left == path->entries
[all...]
/external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/javax/security/auth/login/
H A DLoginContextTest.java876 private ArrayList<AppConfigurationEntry> entries; field in class:LoginContextTest.MyConfig
879 entries = new ArrayList<AppConfigurationEntry>();
885 if (entries != null) {
886 if (entries.size() == 0) {
889 AppConfigurationEntry[] appEntries = new AppConfigurationEntry[entries.size()];
890 entries.toArray(appEntries);
917 ((MyConfig) Configuration.getConfiguration()).entries = null;
924 ArrayList<AppConfigurationEntry> list = ((MyConfig) Configuration.getConfiguration()).entries;
/external/chromium/chrome/browser/sync/glue/
H A Dautofill_model_associator.cc70 const std::vector<AutofillEntry>& entries = all_entries_from_db; local
71 for (std::vector<AutofillEntry>::const_iterator ix = entries.begin();
72 ix != entries.end(); ++ix) {
120 std::vector<AutofillEntry>* entries,
124 if (!web_database_->GetAutofillTable()->GetAllAutofillEntries(entries))
144 std::vector<AutofillEntry> entries; local
147 if (!LoadAutofillData(&entries, &profiles.get())) {
164 entries, &bundle.current_entries, &bundle.new_entries)) {
183 LOG(ERROR) << "Failed to update autofill entries.";
119 LoadAutofillData( std::vector<AutofillEntry>* entries, std::vector<AutofillProfile*>* profiles) argument
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant-jmf.jar ... getSource () java.io.File f int i String[] entries java.util.Vector files int numfiles java. ...
/external/guava/guava-testlib/src/com/google/common/collect/testing/google/
H A DMapGenerators.java39 * keys, entries and values.
107 Entry<String, String>[] entries) {
109 for (Entry<String, String> entry : entries) {
106 createFromEntries( Entry<String, String>[] entries) argument
/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
H A DMapPutAllTester.java172 private void putAll(Iterable<Entry<K, V>> entries) { argument
174 for (Entry<K, V> entry : entries) {
/external/guava/guava-tests/test/com/google/common/collect/
H A DHashBiMapTest.java83 Set<Entry<Integer, Integer>> entries = bimap.entrySet();
84 for (Entry<Integer, Integer> entry : entries) {
92 // The next two tests verify that map entries are not accessed after they're
/external/openssl/crypto/x509/
H A Dx509_obj.c103 for (i=0; i<sk_X509_NAME_ENTRY_num(a->entries); i++)
105 ne=sk_X509_NAME_ENTRY_value(a->entries,i);
/external/qemu/audio/
H A Daudio.h74 QLIST_ENTRY (CaptureState) entries; member in struct:CaptureState
83 QLIST_ENTRY (QEMUSoundCard) entries; member in struct:QEMUSoundCard

Completed in 483 milliseconds

1234567891011>>