Searched refs:entries (Results 126 - 150 of 316) sorted by relevance

1234567891011>>

/openjdk10/jdk/test/sun/security/provider/certpath/DisabledAlgorithms/
H A DCPBuilderWithMD5.java348 Collection entries = new HashSet();
358 entries.add(cert);
362 new CollectionCertStoreParameters(entries));
/openjdk10/jdk/src/java.base/share/classes/sun/nio/fs/
H A DPollingWatchService.java140 // attributes of the entries in the directory.
243 * WatchKey implementation that encapsulates a map of the entries of the
244 * entries in the directory. Polling the key causes it to re-scan the
245 * directory and queue keys when entries are added, modified, or deleted.
262 // map of entries in directory
263 private Map<Path,CacheEntry> entries; field in class:PollingWatchService.PollingWatchKey
272 this.entries = new HashMap<Path,CacheEntry>();
274 // get the initial entries in the directory
280 entries.put(entry.getFileName(), new CacheEntry(lastModified, tickCount));
353 // iterate over all entries i
[all...]
/openjdk10/jdk/src/java.desktop/share/native/libfontmanager/
H A Dhb-jdk-font.cc296 if (tag == jdkFontInfo->layoutTables->entries[cacheIdx].tag) break;
300 if (jdkFontInfo->layoutTables->entries[cacheIdx].len != -1) {
301 length = jdkFontInfo->layoutTables->entries[cacheIdx].len;
302 buffer = (void*)jdkFontInfo->layoutTables->entries[cacheIdx].ptr;
321 jdkFontInfo->layoutTables->entries[cacheIdx].len = length;
322 jdkFontInfo->layoutTables->entries[cacheIdx].ptr = buffer;
/openjdk10/jdk/src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/
H A DAuthenticationFilter.java278 final LinkedList<CacheEntry> entries = new LinkedList<>(); field in class:AuthenticationFilter.Cache
281 for (CacheEntry entry : entries) {
290 for (CacheEntry entry : entries) {
292 entries.remove(entry);
298 entries.remove(entry);
306 entries.add(new CacheEntry(authscheme, domain, proxy, value));
/openjdk10/jdk/src/java.prefs/share/classes/java/util/prefs/
H A DXmlSupport.java326 NodeList entries = map.getChildNodes();
327 for (int i=0, numEntries = entries.getLength(); i < numEntries; i++) {
328 Element entry = (Element) entries.item(i);
385 NodeList entries = xmlMap.getChildNodes();
386 for (int i=0, numEntries=entries.getLength(); i<numEntries; i++) {
387 Element entry = (Element) entries.item(i);
/openjdk10/jdk/test/tools/jimage/
H A DJImageListTest.java93 Set<String> entries = Stream.of(lines)
98 assertEquals(entries, new HashSet<>() {{ add("jimage: " + getImagePath()); }},
99 "All entries should be in format: Offset Size Compressed Entry");
126 Set<String> entries = Stream.of(listNotMatching.output.split("["+ System.lineSeparator() + "]+"))
130 assertEquals(entries, Collections.emptySet(), "No java.util classes are listed");
165 Set<String> entries = Stream.of(listNotMatching.output.split("[" + System.lineSeparator() + "]+"))
169 assertEquals(entries, Collections.emptySet(), "No classes are listed");
H A DVerifyJimage.java93 int entries = reader.entries();
94 System.out.format("%d entries %d files verified: %d ms %d errors%n",
95 entries, verify.count.get(),
234 int entries() { method in class:VerifyJimage.JImageReader
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.virtual/src/org/graalvm/compiler/virtual/phases/ea/
H A DPartialEscapeBlockState.java184 * entries.
244 ValueNode[] entries = obj.getEntries();
245 ValueNode representation = virtual.getMaterializedRepresentation(fixed, entries, obj.getLocks());
254 while (values.size() < pos + entries.length) {
257 for (int i = 0; i < entries.length; i++) {
258 if (entries[i] instanceof VirtualObjectNode) {
259 VirtualObjectNode entryVirtual = (VirtualObjectNode) entries[i];
267 values.set(pos + i, entries[i]);
270 objectMaterialized(virtual, (AllocatedObjectNode) representation, values.subList(pos, pos + entries.length));
/openjdk10/corba/src/java.corba/share/classes/com/sun/corba/se/spi/orb/
H A DParserImplBase.java104 Set entries = map.entrySet() ;
105 Iterator iter = entries.iterator() ;
/openjdk10/jdk/src/java.base/share/native/libjli/
H A Dparse_manifest.c150 jlong censiz, jlong cenoff, jlong entries) {
170 * Values censiz, cenoff, and entries are the corresponding values
176 jlong censiz, jlong cenoff, jlong entries) {
183 && (entries64 == entries || entries == ZIP64_MAGICCOUNT)
201 jlong entries = ENDTOT(endhdr); local
209 && (is_zip64_endhdr(fd, buf, end64pos, censiz, cenoff, entries)
213 && is_zip64_endhdr(fd, buf, end64pos, censiz, cenoff, entries)))
218 if (!is_valid_end_header(fd, endpos, censiz, cenoff, entries))
324 * In most cases, all that needs to be read are the first two entries i
149 is_valid_end_header(int fd, jlong endpos, jlong censiz, jlong cenoff, jlong entries) argument
175 is_zip64_endhdr(int fd, const Byte *p, jlong end64pos, jlong censiz, jlong cenoff, jlong entries) argument
[all...]
/openjdk10/jdk/src/jdk.internal.le/share/classes/jdk/internal/jline/console/completer/
H A DFileNameCompleter.java88 File[] entries = dir == null ? new File[0] : dir.listFiles();
90 return matchFiles(buffer, translated, entries, candidates);
/openjdk10/jdk/src/java.xml.crypto/share/classes/org/jcp/xml/dsig/internal/dom/
H A DDOMXPathTransform.java102 Set<Map.Entry<String, String>> entries =
104 for (Map.Entry<String, String> entry : entries) {
/openjdk10/langtools/src/jdk.jdeps/share/classes/com/sun/tools/jdeprscan/scan/
H A DScan.java431 * Checks Class_info entries in the constant pool.
434 * @param entries constant pool entries collected from this class
437 void checkClasses(ClassFile cf, CPEntries entries) throws ConstantPoolException { argument
438 for (ConstantPool.CONSTANT_Class_info ci : entries.classes) {
567 CPEntries entries = CPEntries.loadFrom(cf);
571 checkClasses(cf, entries);
573 for (ConstantPool.CONSTANT_Methodref_info mri : entries.methodRefs) {
579 for (ConstantPool.CONSTANT_InterfaceMethodref_info imri : entries.intfMethodRefs) {
585 for (ConstantPool.CONSTANT_Fieldref_info fri : entries
[all...]
/openjdk10/langtools/src/jdk.jdeps/share/classes/com/sun/tools/javap/
H A DAttributeWriter.java466 Module_attribute.RequiresEntry[] entries = attr.requires;
467 print(entries.length);
471 for (Module_attribute.RequiresEntry e: entries) {
495 Module_attribute.ExportsEntry[] entries = attr.exports;
496 print(entries.length);
500 for (Module_attribute.ExportsEntry e: entries) {
507 Module_attribute.OpensEntry[] entries = attr.opens;
508 print(entries.length);
512 for (Module_attribute.OpensEntry e: entries) {
542 int[] entries
[all...]
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/util/
H A DSymbolHash.java114 // Rehash the table if the number of entries
174 * Return key/value pairs of all entries in the map
177 Object[] entries = new Object[fNum << 1];
180 entries[j] = entry.key;
181 entries[++j] = entry.value;
185 return entries;
248 * SymbolHash, in order to accommodate and access its entries more
258 * in order to more evenly distribute its entries across the table. This
/openjdk10/jaxws/src/java.xml.ws/share/classes/com/oracle/webservices/internal/api/message/
H A DBaseDistributedPropertySet.java258 Set<Entry<String, Object>> entries = new HashSet<Entry<String, Object>>();
261 // the code below is here to avoid entries.addAll(child.asMap().entrySet()); which works differently on JDK6/7
263 entries.add(new SimpleImmutableEntry<String, Object>(entry.getKey(), entry.getValue()));
267 // the code below is here to avoid entries.addAll(child.asMap().entrySet()); which works differently on JDK6/7
269 entries.add(new SimpleImmutableEntry<String, Object>(entry.getKey(), entry.getValue()));
272 return entries;
/openjdk10/jdk/src/java.base/unix/classes/sun/nio/fs/
H A DUnixFileSystem.java170 * Returns object to iterate over entries in mounttab or equivalent
184 private final Iterator<UnixMountEntry> entries; field in class:UnixFileSystem.FileStoreIterator
188 this.entries = getMountEntries().iterator();
194 if (!entries.hasNext())
196 UnixMountEntry entry = entries.next();
198 // skip entries with the "ignore" option
/openjdk10/jdk/src/java.base/share/classes/jdk/internal/util/jar/
H A DJarIndex.java217 Enumeration<? extends ZipEntry> entries = zrf.entries();
218 while(entries.hasMoreElements()) {
219 ZipEntry entry = entries.nextElement();
/openjdk10/jdk/src/java.desktop/share/native/common/font/
H A Dfontscalerdefs.h136 TTLayoutTableCacheEntry entries[LAYOUTCACHE_ENTRIES]; member in struct:TTLayoutTableCache
/openjdk10/jdk/src/jdk.jlink/share/classes/jdk/tools/jlink/internal/
H A DArchive.java123 * The stream of entries needs to be closed after use
127 Stream<Entry> entries(); method in interface:Archive
/openjdk10/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/file/
H A DJRTIndex.java98 * A lazily evaluated set of entries about the contents of the jrt: file system.
100 private final Map<RelativeDirectory, SoftReference<Entry>> entries; field in class:JRTIndex
181 entries = new HashMap<>();
189 SoftReference<Entry> ref = entries.get(rd);
226 entries.put(rd, new SoftReference<>(e));
/openjdk10/langtools/test/tools/javac/T8011181/
H A DEmptyUTF8ForInnerClassNameTest.java60 for (CPInfo cpInfo : classFile.constant_pool.entries()) {
/openjdk10/langtools/test/tools/javac/4241573/
H A DT4241573.java123 File createDir(File dir, String... entries) throws Exception { argument
126 for (String e: entries) {
132 /** Create a jar file containing one or more entries. */
133 File createJar(File jar, String... entries) throws IOException { argument
137 for (String e: entries) {
/openjdk10/jdk/test/tools/pack200/pack200-verifier/src/sun/tools/pack/verify/
H A DJarFileCompare.java38 for (JarEntry je : Collections.list((Enumeration<JarEntry>) j.entries())) {
53 for (JarEntry je : Collections.list((Enumeration<JarEntry>) j.entries())) {
70 Globals.log("Left has the following entries that right does not have");
75 Globals.log("Right has the following entries that left does not have");
142 * entries. The property ignoreJarDirectories is set to true by default
143 * which means that Directory entries in a jar may be ignore.
157 for (JarEntry je : Collections.list((Enumeration<JarEntry>) jf1.entries())) {
165 for (JarEntry je : Collections.list((Enumeration<JarEntry>) jf1.entries())) {
190 Globals.println("Class entries checked (byte wise)/Total Class entries
[all...]
/openjdk10/jdk/test/java/util/zip/ZipFile/
H A DTestZipFile.java123 zip1.name, zip1.lastModified, zip1.entries.size(),
126 zip2.name, zip2.lastModified, zip2.entries.size(),
152 // just check the entries and contents. since the file has been either overwritten
156 List<ZipEntry> zlist = new ArrayList(zip.entries.keySet());
161 //System.out.printf("++++++ LIST NG [%s] entries.len=%d, expected=%d+++++++%n",
166 byte[] zdata = zip.entries.get(ze);
227 List<ZipEntry> list = new ArrayList(zip.entries.keySet());
237 byte[] data = zip.entries.get(ze);
266 // meta-inf entries
281 Map<ZipEntry, byte[]> entries; field in class:TestZipFile.Zip
[all...]

Completed in 376 milliseconds

1234567891011>>