Searched refs:entries (Results 276 - 300 of 313) sorted by relevance

<<111213

/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/
H A DCheckGraalInvariants.java97 * Checks that all classes in *graal*.jar and *jvmci*.jar entries on the boot class path comply with
146 for (final Enumeration<? extends ZipEntry> entry = zipFile.entries(); entry.hasMoreElements();) {
/openjdk9/jdk/src/java.desktop/share/native/libsplashscreen/libpng/
H A Dpng.h594 png_sPLT_entryp entries; /* palette entries */ member in struct:png_sPLT_struct
595 png_int_32 nentries; /* number of palette entries */
781 /* Maximum number of entries in PLTE/sPLT/tRNS arrays */
942 * entries, and are removed by pngconf.h.
2149 png_inforp info_ptr, png_sPLT_tpp entries));
2154 png_inforp info_ptr, png_const_sPLT_tp entries, int nentries));
2354 png_inforp info_ptr, png_unknown_chunkpp entries));
2727 /* Number of entries in the color-map */
2792 * by bytes in the image data. In the case of a color-map the color-map entries
[all...]
H A Dpngrutil.c1001 /* If the palette has 256 or fewer entries but is too large for the bit
1003 * libpng versions. We silently truncate the unused extra palette entries
1769 new_palette.entries = (png_sPLT_entryp)png_malloc_warn(png_ptr,
1772 if (new_palette.entries == NULL)
1781 pp = new_palette.entries + i;
1802 pp = new_palette.entries;
1832 png_free(png_ptr, new_palette.entries);
3264 /* display_mask has only three entries for the odd passes, so index by
H A Dpng.c572 /* Free a given sPLT entry, or (if num == -1) all sPLT entries */
579 png_free(png_ptr, info_ptr->splt_palettes[num].entries);
581 info_ptr->splt_palettes[num].entries = NULL;
591 png_free(png_ptr, info_ptr->splt_palettes[i].entries);
933 * necessary because the 'set' routine handles duplicate entries correcty.
4035 * entries are filled with 255). Start i at 128 and fill all 'last'
4036 * table entries <= 'max'
4057 /* And fill in the final entries. */
/openjdk9/jdk/src/jdk.jlink/share/classes/jdk/tools/jlink/internal/plugins/
H A DIncludeLocalesPlugin.java227 available = Stream.concat(module.entries()
H A DStringSharingPlugin.java70 * A Plugin that stores the image classes constant pool UTF_8 entries into the
401 resources.entries().forEach(resource -> {
/openjdk9/jdk/src/jdk.jartool/share/classes/sun/security/tools/jarsigner/
H A DMain.java655 Enumeration<JarEntry> entries = jf.entries();
656 while (entries.hasMoreElements()) {
657 JarEntry je = entries.nextElement();
768 // Print no info for unsigned entries when -verbose:all,
774 .getString(".Signature.related.entries."))
778 .append(rb.getString(".Unsigned.entries."))
787 // entries are grouped separately.
993 rb.getString("This.jar.contains.entries.whose.signer.certificate.s.KeyUsage.extension.doesn.t.allow.code.signing."));
998 rb.getString("This.jar.contains.entries
[all...]
/openjdk9/jdk/src/jdk.pack/share/native/common-unpack/
H A Dunpack.h39 byte ixTag; // type of entries (!= CONSTANT_None), plus 64 if sub-index
60 entry* entries; member in struct:cpool
62 uint maxentries; // total allocated size of entries
/openjdk9/jdk/src/jdk.rmic/share/classes/sun/tools/java/
H A DClassPath.java69 * List of class path entries
84 * adds support for Class-Path manifest entries in JAR files to
378 Enumeration<? extends ZipEntry> e = zip.entries();
/openjdk9/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/file/
H A DLocations.java210 ListBuffer<Path> entries = new ListBuffer<>();
214 entries.add(emptyPathDefault);
218 entries.add(getPath(s));
226 return entries;
269 * Utility class to help evaluate a path option. Duplicate entries are ignored, jar class paths
1040 // use iterator, to be able to remove old entries
/openjdk9/jdk/test/tools/lib/tests/
H A DJImageGenerator.java294 List<Path> entries = Files.find(dir.resolve(file), Integer.MAX_VALUE,
301 for (Path entry : entries) {
/openjdk9/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/impl/xs/traversers/
H A DXSAttributeChecker.java1573 Iterator entries = fNonSchemaAttrs.entrySet().iterator();
1575 while (entries.hasNext()) {
1576 Map.Entry entry = (Map.Entry) entries.next();
/openjdk9/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/impl/xs/
H A DSchemaGrammar.java1539 Object[] entries = table.getEntries();
1540 fComponentsExt[objectType] = new ObjectListImpl(entries, entries.length);
/openjdk9/jdk/src/java.base/share/classes/com/sun/java/util/jar/pack/
H A DPackerImpl.java597 // Collect jar entries, preserving order.
600 for (JarEntry je : Collections.list(jf.entries())) {
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/
H A DGraphEncoder.java216 for (Map.Entry<Node, Integer> entry : nodeOrder.orderIds.entries()) {
/openjdk9/hotspot/src/share/vm/runtime/
H A Drelocator.cpp477 stack_map_frame* frame = sm_table->entries();
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.test/src/org/graalvm/compiler/replacements/test/classfile/
H A DClassfileBytecodeProviderTest.java149 for (final Enumeration<? extends ZipEntry> entry = zipFile.entries(); entry.hasMoreElements();) {
/openjdk9/langtools/src/jdk.jdeps/share/classes/com/sun/tools/classfile/
H A DDependencies.java469 for (CPInfo cpInfo: classfile.constant_pool.entries()) {
/openjdk9/langtools/src/jdk.jdeps/share/classes/com/sun/tools/jdeps/
H A DJdepsConfiguration.java177 archive.reader().entries().stream()
/openjdk9/jdk/test/sun/security/krb5/auto/
H A DKDC.java308 Iterable<String> entries =
310 for (String name : entries) {
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core/src/org/graalvm/compiler/core/gen/
H A DNodeLIRBuilder.java180 for (Entry<Node, Value> entry : nodeOperands.entries()) {
622 throw GraalError.shouldNotReachHere("I thought we no longer have null entries for two-slot types...");
675 // hopefully only a few entries
/openjdk9/jdk/make/src/classes/build/tools/jigsaw/
H A DModuleSummary.java224 for (Enumeration<? extends ZipEntry> e = zf.entries(); e.hasMoreElements(); ) {
/openjdk9/jdk/src/java.base/share/classes/jdk/internal/loader/
H A DURLClassPath.java825 Enumeration<JarEntry> enum_ = jar.entries();
/openjdk9/hotspot/src/share/vm/classfile/
H A DstackMapTableFormat.hpp919 stack_map_frame* entries() const { function in class:stack_map_table
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.printer/src/org/graalvm/compiler/printer/
H A DCFGPrinter.java312 for (Map.Entry<Node, Block> entry : latestScheduling.entries()) {

Completed in 412 milliseconds

<<111213