Searched refs:entries (Results 251 - 275 of 606) sorted by relevance

<<11121314151617181920>>

/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DURLHandler.java222 Enumeration<JarEntry> entries = jarFile.entries();
224 while (entries.hasMoreElements()) {
225 JarEntry entry = entries.nextElement();
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/serializable/
H A DCompatibilityTest.java237 Enumeration entries = jarFile.entries();
239 while (entries.hasMoreElements()) {
240 JarEntry entry = (JarEntry) entries.nextElement();
/external/jetty/src/java/org/eclipse/jetty/util/
H A DIPAddressMap.java138 * Retrieve a lazy list of map entries associated with specified
142 * @return lazy list of map entries
149 Object entries = null;
154 entries = LazyList.add(entries,entry);
157 return entries;
/external/kernel-headers/original/uapi/linux/
H A Dvirtio_net.h141 * two out scatterlists. Each contains a 4 byte count of entries followed
152 __u32 entries; member in struct:virtio_net_ctrl_mac
/external/libexif/libexif/
H A Dexif-content.h42 ExifEntry **entries; member in struct:_ExifContent
86 * each entry in this IFD to fix existing entries, create any new entries
88 * entries that are not allowed in this IFD.
/external/libvorbis/vq/
H A Ddistribution.c75 bins=c->entries*c->dim;
103 for(i=0;i<b->entries;i++)
107 for(j=0;j<b->entries;j++){
124 for(j=0;j<b->entries;j++){
/external/linux-tools-perf/src/tools/perf/util/
H A Dintlist.h45 struct rb_node *rn = rb_first(&ilist->rblist.entries);
/external/llvm/test/tools/llvm-readobj/Inputs/
H A Drelocs.py72 def entries(self): member in class:EnumType
82 for e in self.entries():
180 entries = self.sh_size // self.sh_entsize
182 for index in range(entries):
1096 craftElf("relocs.obj.elf-x86_64", "x86_64-pc-linux-gnu", Relocs_Elf_X86_64.entries(), "leaq sym@GOTTPOFF(%rip), %rax")
1097 craftElf("relocs.obj.elf-i386", "i386-pc-linux-gnu", Relocs_Elf_i386.entries(), "mov sym@GOTOFF(%ebx), %eax")
1098 #craftElf("relocs-elf-ppc32", "powerpc-unknown-linux-gnu", Relocs_Elf_PPC32.entries(), ...)
1099 craftElf("relocs.obj.elf-ppc64", "powerpc64-unknown-linux-gnu", Relocs_Elf_PPC64.entries(),
1101 craftElf("relocs.obj.elf-aarch64", "aarch64", Relocs_Elf_AArch64.entries(), "movz x0, #:abs_g0:sym")
1102 craftElf("relocs.obj.elf-arm", "arm-unknown-unknown", Relocs_Elf_ARM.entries(), "
[all...]
/external/v8/src/third_party/vtune/
H A Dvtune-jit.cc136 static JitInfoMap* entries; local
137 if (entries == NULL) {
138 entries = new JitInfoMap();
140 return entries;
/external/vboot_reference/firmware/lib/cgptlib/include/
H A Dcgptlib_internal.h15 * 1. an initial value before scanning GPT entries,
63 * entries.
98 * Check entries.
100 * Returns 0 if entries are valid, 1 if invalid.
102 int CheckEntries(GptEntry *entries, GptHeader *h);
115 * Check GptData, headers, entries.
125 * Repair GPT data by copying from one set of valid headers/entries to the
127 * and/or entries are already valid.
132 * Called when the primary entries are modified and the CRCs need to be
133 * recalculated and propagated to the secondary entries
[all...]
/external/zlib/src/contrib/minizip/
H A Dmztools.c42 int entries = 0; local
214 entries++;
223 int entriesZip = entries;
278 /* Number of recovered entries */
281 *nRecovered = entries;
/external/guava/guava/src/com/google/common/collect/
H A DImmutableSortedMultiset.java291 Comparator<? super E> comparator, Collection<Entry<E>> entries) {
292 if (entries.isEmpty()) {
295 ImmutableList.Builder<E> elementsBuilder = new ImmutableList.Builder<E>(entries.size());
296 int[] counts = new int[entries.size()];
297 long[] cumulativeCounts = new long[entries.size() + 1];
299 for (Entry<E> entry : entries) {
307 counts, cumulativeCounts, 0, entries.size());
290 copyOfSortedEntries( Comparator<? super E> comparator, Collection<Entry<E>> entries) argument
/external/mesa3d/src/gallium/drivers/svga/
H A Dsvga_screen_cache.c159 * Free the least recently used entries in the surface cache until the
160 * cache size is <= the target size OR there are no unused entries left
231 * Try to discard least recently used entries until we hit the
346 if (cache->entries[i].handle) {
348 "unref sid %p (shutdown)\n", cache->entries[i].handle);
349 sws->surface_reference(sws, &cache->entries[i].handle, NULL);
351 cache->total_size -= surface_size(&cache->entries[i].key);
354 if (cache->entries[i].fence)
356 &cache->entries[i].fence, NULL);
382 LIST_ADDTAIL(&cache->entries[
[all...]
/external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/filesystem/
H A DAbstractFakeFileSystem.java66 private Map entries = new HashMap(); field in class:AbstractFakeFileSystem
89 * Add each of the entries in the specified List to this filesystem. Note that this does not affect
90 * entries already existing within this filesystem.
92 * @param entriesToAdd - the List of FileSystemEntry entries to add
127 entries.put(getFileSystemEntryKey(path), entry);
300 return this.getClass().getName() + entries;
386 return (FileSystemEntry) entries.get(getFileSystemEntryKey(path));
577 * @return true if the path has child entries
584 Iterator iter = entries.keySet().iterator();
606 Iterator iter = entries
[all...]
/external/mockftpserver/tags/2.0/src/main/java/org/mockftpserver/fake/filesystem/
H A DAbstractFakeFileSystem.java65 private Map entries = new HashMap(); field in class:AbstractFakeFileSystem
88 * Add each of the entries in the specified List to this filesystem. Note that this does not affect
89 * entries already existing within this filesystem.
91 * @param entriesToAdd - the List of FileSystemEntry entries to add
126 entries.put(getFileSystemEntryKey(path), entry);
291 return this.getClass().getName() + entries;
377 return (FileSystemEntry) entries.get(getFileSystemEntryKey(path));
567 * @return true if the path has child entries
574 Iterator iter = entries.keySet().iterator();
596 Iterator iter = entries
[all...]
/external/mockftpserver/tags/2.0-rc1/MockFtpServer/src/main/java/org/mockftpserver/fake/filesystem/
H A DAbstractFakeFileSystem.java65 private Map entries = new HashMap(); field in class:AbstractFakeFileSystem
88 * Add each of the entries in the specified List to this filesystem. Note that this does not affect
89 * entries already existing within this filesystem.
91 * @param entriesToAdd - the List of FileSystemEntry entries to add
126 entries.put(getFileSystemEntryKey(path), entry);
291 return this.getClass().getName() + entries;
377 return (FileSystemEntry) entries.get(getFileSystemEntryKey(path));
567 * @return true if the path has child entries
574 Iterator iter = entries.keySet().iterator();
596 Iterator iter = entries
[all...]
/external/mockftpserver/tags/2.0-rc1/src/main/java/org/mockftpserver/fake/filesystem/
H A DAbstractFakeFileSystem.java65 private Map entries = new HashMap(); field in class:AbstractFakeFileSystem
88 * Add each of the entries in the specified List to this filesystem. Note that this does not affect
89 * entries already existing within this filesystem.
91 * @param entriesToAdd - the List of FileSystemEntry entries to add
126 entries.put(getFileSystemEntryKey(path), entry);
291 return this.getClass().getName() + entries;
376 return (FileSystemEntry) entries.get(getFileSystemEntryKey(path));
618 * @return true if the path has child entries
625 Iterator iter = entries.keySet().iterator();
647 Iterator iter = entries
[all...]
/external/mockftpserver/tags/2.0-rc3/MockFtpServer/src/main/java/org/mockftpserver/fake/filesystem/
H A DAbstractFakeFileSystem.java65 private Map entries = new HashMap(); field in class:AbstractFakeFileSystem
88 * Add each of the entries in the specified List to this filesystem. Note that this does not affect
89 * entries already existing within this filesystem.
91 * @param entriesToAdd - the List of FileSystemEntry entries to add
126 entries.put(getFileSystemEntryKey(path), entry);
291 return this.getClass().getName() + entries;
377 return (FileSystemEntry) entries.get(getFileSystemEntryKey(path));
567 * @return true if the path has child entries
574 Iterator iter = entries.keySet().iterator();
596 Iterator iter = entries
[all...]
/external/mockftpserver/tags/2.0.1/src/main/java/org/mockftpserver/fake/filesystem/
H A DAbstractFakeFileSystem.java65 private Map entries = new HashMap(); field in class:AbstractFakeFileSystem
88 * Add each of the entries in the specified List to this filesystem. Note that this does not affect
89 * entries already existing within this filesystem.
91 * @param entriesToAdd - the List of FileSystemEntry entries to add
126 entries.put(getFileSystemEntryKey(path), entry);
291 return this.getClass().getName() + entries;
377 return (FileSystemEntry) entries.get(getFileSystemEntryKey(path));
568 * @return true if the path has child entries
575 Iterator iter = entries.keySet().iterator();
597 Iterator iter = entries
[all...]
/external/mockftpserver/tags/2.0.2/src/main/java/org/mockftpserver/fake/filesystem/
H A DAbstractFakeFileSystem.java65 private Map entries = new HashMap(); field in class:AbstractFakeFileSystem
88 * Add each of the entries in the specified List to this filesystem. Note that this does not affect
89 * entries already existing within this filesystem.
91 * @param entriesToAdd - the List of FileSystemEntry entries to add
126 entries.put(getFileSystemEntryKey(path), entry);
291 return this.getClass().getName() + entries;
377 return (FileSystemEntry) entries.get(getFileSystemEntryKey(path));
568 * @return true if the path has child entries
575 Iterator iter = entries.keySet().iterator();
597 Iterator iter = entries
[all...]
/external/mockftpserver/tags/2.1/src/main/java/org/mockftpserver/fake/filesystem/
H A DAbstractFakeFileSystem.java65 private Map entries = new HashMap(); field in class:AbstractFakeFileSystem
88 * Add each of the entries in the specified List to this filesystem. Note that this does not affect
89 * entries already existing within this filesystem.
91 * @param entriesToAdd - the List of FileSystemEntry entries to add
126 entries.put(getFileSystemEntryKey(path), entry);
291 return this.getClass().getName() + entries;
377 return (FileSystemEntry) entries.get(getFileSystemEntryKey(path));
568 * @return true if the path has child entries
575 Iterator iter = entries.keySet().iterator();
597 Iterator iter = entries
[all...]
/external/mockftpserver/tags/2.2/src/main/java/org/mockftpserver/fake/filesystem/
H A DAbstractFakeFileSystem.java65 private Map entries = new HashMap(); field in class:AbstractFakeFileSystem
88 * Add each of the entries in the specified List to this filesystem. Note that this does not affect
89 * entries already existing within this filesystem.
91 * @param entriesToAdd - the List of FileSystemEntry entries to add
126 entries.put(getFileSystemEntryKey(path), entry);
299 return this.getClass().getName() + entries;
385 return (FileSystemEntry) entries.get(getFileSystemEntryKey(path));
576 * @return true if the path has child entries
583 Iterator iter = entries.keySet().iterator();
605 Iterator iter = entries
[all...]
/external/mockftpserver/tags/2.3/src/main/java/org/mockftpserver/fake/filesystem/
H A DAbstractFakeFileSystem.java65 private Map entries = new HashMap(); field in class:AbstractFakeFileSystem
88 * Add each of the entries in the specified List to this filesystem. Note that this does not affect
89 * entries already existing within this filesystem.
91 * @param entriesToAdd - the List of FileSystemEntry entries to add
126 entries.put(getFileSystemEntryKey(path), entry);
299 return this.getClass().getName() + entries;
385 return (FileSystemEntry) entries.get(getFileSystemEntryKey(path));
576 * @return true if the path has child entries
583 Iterator iter = entries.keySet().iterator();
605 Iterator iter = entries
[all...]
/external/mockftpserver/tags/2.4/src/main/java/org/mockftpserver/fake/filesystem/
H A DAbstractFakeFileSystem.java66 private Map entries = new HashMap(); field in class:AbstractFakeFileSystem
89 * Add each of the entries in the specified List to this filesystem. Note that this does not affect
90 * entries already existing within this filesystem.
92 * @param entriesToAdd - the List of FileSystemEntry entries to add
127 entries.put(getFileSystemEntryKey(path), entry);
300 return this.getClass().getName() + entries;
386 return (FileSystemEntry) entries.get(getFileSystemEntryKey(path));
577 * @return true if the path has child entries
584 Iterator iter = entries.keySet().iterator();
606 Iterator iter = entries
[all...]
/external/mockftpserver/tags/2.5/src/main/java/org/mockftpserver/fake/filesystem/
H A DAbstractFakeFileSystem.java66 private Map entries = new HashMap(); field in class:AbstractFakeFileSystem
89 * Add each of the entries in the specified List to this filesystem. Note that this does not affect
90 * entries already existing within this filesystem.
92 * @param entriesToAdd - the List of FileSystemEntry entries to add
127 entries.put(getFileSystemEntryKey(path), entry);
300 return this.getClass().getName() + entries;
386 return (FileSystemEntry) entries.get(getFileSystemEntryKey(path));
577 * @return true if the path has child entries
584 Iterator iter = entries.keySet().iterator();
606 Iterator iter = entries
[all...]

Completed in 1239 milliseconds

<<11121314151617181920>>