Searched refs:BASE (Results 26 - 50 of 51) sorted by relevance

123

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/org/objectweb/asm/
H A DFrame.java96 * signed number of array dimensions (from -8 to 7). KIND is either BASE,
97 * LOCAL or STACK. BASE is used for types that are not relative to the input
102 * relatively to the top of input frame stack. For BASE types, it is either
109 * contain BASE types of positive or null dimension. In all cases the type
141 * @see #BASE
165 static final int BASE = 0x1000000; field in class:Frame
171 static final int OBJECT = BASE | 0x700000;
178 static final int UNINITIALIZED = BASE | 0x800000;
194 * The TOP type. This is a BASE type.
196 static final int TOP = BASE |
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/resolver/readers/
H A DExtendedXMLCatalogReader.java83 entryType = Catalog.BASE;
169 entryType = catalog.BASE;
H A DOASISXMLCatalogReader.java150 entryType = Catalog.BASE;
349 entryType = Catalog.BASE;
455 entryType = catalog.BASE;
H A DXCatalogReader.java109 entryType = catalog.BASE;
/openjdk7/jdk/test/sun/security/rsa/
H A DTestKeyFactory.java40 private final static String BASE = System.getProperty("test.src", "."); field in class:TestKeyFactory
45 InputStream in = new FileInputStream(new File(BASE, "rsakeys.ks"));
/openjdk7/jdk/test/sun/security/pkcs11/ec/
H A DReadPKCS12.java74 File dir = new File(BASE, "pkcs12");
78 BufferedReader reader = new BufferedReader(new FileReader((new File(BASE, "p12passwords.txt"))));
H A DReadCertificates.java79 File dir = new File(BASE, "certs");
/openjdk7/jdk/test/sun/security/pkcs11/rsa/
H A DTestKeyFactory.java41 private final static String BASE = System.getProperty("test.src", "."); field in class:TestKeyFactory
46 InputStream in = new FileInputStream(new File(BASE, "rsakeys.ks"));
/openjdk7/jdk/test/com/sun/crypto/provider/TLS/
H A DTestPRF.java51 InputStream in = new FileInputStream(new File(BASE, "prfdata.txt"));
H A DTestMasterSecret.java52 InputStream in = new FileInputStream(new File(BASE, "masterdata.txt"));
H A DTestPRF12.java54 InputStream in = new FileInputStream(new File(BASE, "prf12data.txt"));
H A DTestKeyMaterial.java51 InputStream in = new FileInputStream(new File(BASE, "keymatdata.txt"));
/openjdk7/jdk/test/sun/security/pkcs11/Secmod/
H A DJksSetPrivateKey.java46 String configName = BASE + SEP + "nss.cfg";
H A DAddPrivateKey.java50 String configName = BASE + SEP + "nss.cfg";
67 InputStream in = new FileInputStream(new File(BASE, "keystore.jks"));
/openjdk7/jdk/test/sun/security/pkcs11/tls/
H A DTestMasterSecret.java59 InputStream in = new FileInputStream(new File(BASE, "masterdata.txt"));
H A DTestPRF.java59 InputStream in = new FileInputStream(new File(BASE, "prfdata.txt"));
H A DTestKeyMaterial.java59 InputStream in = new FileInputStream(new File(BASE, "keymatdata.txt"));
/openjdk7/jdk/test/com/sun/crypto/provider/Cipher/RSA/
H A DTestOAEP_KAT.java52 private final static String BASE = System.getProperty("test.src", "."); field in class:TestOAEP_KAT
65 try (InputStream in = new FileInputStream(new File(BASE, "oaep-vect.txt"));
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_Instruction.hpp541 #define BASE(class_name, super_class_name) \ macro
548 BASE(class_name, super_class_name) \
701 BASE(AccessField, Instruction)
796 BASE(AccessArray, Instruction)
841 BASE(AccessIndexed, AccessArray)
948 BASE(Op2, Instruction)
1136 BASE(StateSplit, Instruction)
1237 BASE(NewArray, StateSplit)
1324 BASE(TypeCheck, StateSplit)
1391 BASE(AccessMonito
[all...]
/openjdk7/jdk/test/sun/security/pkcs11/
H A DPKCS11Test.java36 static final String BASE = System.getProperty("test.src", "."); field in class:PKCS11Test
42 // directory corresponding to BASE in the /closed hierarchy
47 String absBase = new File(BASE).getAbsolutePath();
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DHTML.java164 public static final Tag BASE = new Tag("base"); field in class:HTML.Tag
267 A, ADDRESS, APPLET, AREA, B, BASE, BASEFONT, BIG,
583 * BASE, BASEFONT, BIG,
/openjdk7/hotspot/test/compiler/8004867/
H A DTestIntUnsafeCAS.java46 private static final int BASE; field in class:TestIntUnsafeCAS
53 BASE = unsafe.arrayBaseOffset(int[].class);
768 return ((long)i << 2) + BASE;
H A DTestIntUnsafeOrdered.java46 private static final int BASE; field in class:TestIntUnsafeOrdered
53 BASE = unsafe.arrayBaseOffset(int[].class);
768 return ((long)i << 2) + BASE;
H A DTestIntUnsafeVolatile.java46 private static final int BASE; field in class:TestIntUnsafeVolatile
53 BASE = unsafe.arrayBaseOffset(int[].class);
768 return ((long)i << 2) + BASE;
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/resolver/
H A DCatalog.java78 * <li><b>BASE</b>
137 * <p>Note that BASE entries are treated as described by RFC2396. In
138 * particular, this has the counter-intuitive property that after a BASE
176 * <p>Fix bug in calculation of BASE entries: if
177 * a catalog contains multiple BASE entries, each is relative to the preceding
199 /** The BASE Catalog Entry type. */
200 public static final int BASE = CatalogEntry.addEntryType("BASE", 1); field in class:Catalog
259 * This may be changed by BASE entries in the catalog.
845 catalogManager.debug.message(4, "Default BASE", bas
[all...]

Completed in 113 milliseconds

123