Searched refs:cf (Results 76 - 100 of 391) sorted by relevance

1234567891011>>

/openjdk9/jdk/src/jdk.jcmd/share/classes/sun/tools/jstat/
H A DParser.java244 private void scaleStmt(ColumnFormat cf) argument
248 cf.setScale(Scale.toScale(t.sval));
257 private void alignStmt(ColumnFormat cf) argument
261 cf.setAlignment(Alignment.toAlignment(t.sval));
269 private void headerStmt(ColumnFormat cf) argument
274 cf.setHeader(headerString);
281 private void widthStmt(ColumnFormat cf) argument
286 cf.setWidth((int)width);
293 private void formatStmt(ColumnFormat cf) argument
298 cf
440 dataStmt(ColumnFormat cf) argument
456 statementList(ColumnFormat cf) argument
[all...]
/openjdk9/langtools/test/tools/javac/annotations/typeAnnotations/classfile/
H A DTestNewCastArray.java76 void test(String clazz, String ttype, ClassFile cf, Method m, Field f, argument
88 index = m.attributes.getIndex(cf.constant_pool, name);
89 memberName = m.getName(cf.constant_pool);
94 memberName = m.getName(cf.constant_pool);
96 index = m.attributes.getIndex(cf.constant_pool, Attribute.Code);
101 index = cAttr.attributes.getIndex(cf.constant_pool, name);
107 index = f.attributes.getIndex(cf.constant_pool, name);
108 memberName = f.getName(cf.constant_pool);
113 memberName = f.getName(cf.constant_pool);
115 index = cf
[all...]
H A DTestAnonInnerClasses.java149 void test(String ttype, ClassFile cf, Method m, Field f, boolean visible) { argument
171 index = m.attributes.getIndex(cf.constant_pool,
173 memberName = m.getName(cf.constant_pool);
177 index2 = m.attributes.getIndex(cf.constant_pool,
183 index2 = CAttr.attributes.getIndex(cf.constant_pool,
190 index = f.attributes.getIndex(cf.constant_pool,
192 memberName = f.getName(cf.constant_pool);
196 index2 = cf.attributes.getIndex(cf.constant_pool,
199 cattr = cf
[all...]
H A DT8010015.java50 ClassFile cf = getClassFile("T8010015$Test$1innerClass.class");
51 for (Field f : cf.fields) {
52 test(cf, f);
H A DT8008769.java43 ClassFile cf = getClassFile("T8008769$Test.class");
44 for (Method m : cf.methods) {
45 test(cf, m, true);
/openjdk9/jdk/src/java.base/share/classes/java/lang/
H A DNamedPackage.java75 Configuration cf = module.getLayer().configuration();
77 = cf.findModule(module.getName()).get().reference();
/openjdk9/jdk/test/java/net/Socket/asyncClose/
H A DAsyncClose.java56 for (CompletableFuture<AsyncCloseTest> cf : cfs) {
57 AsyncCloseTest test = cf.get();
/openjdk9/jdk/test/java/nio/channels/AsynchronousChannelGroup/
H A Drun_any_task.sh43 $JAR -cf "${TESTCLASSES}/Privileged.jar" \
/openjdk9/jdk/test/java/security/cert/CertificateFactory/
H A DGenerateCertificatesEmptyCollection.java60 CertificateFactory cf = CertificateFactory.getInstance( "X509", "SUN");
61 Collection c = cf.generateCertificates( new ByteArrayInputStream(b));
/openjdk9/jdk/test/java/security/cert/X509Certificate/
H A DX509BadCertificate.java53 CertificateFactory cf = CertificateFactory.getInstance("X509");
55 cf.generateCertificate(fis);
/openjdk9/langtools/test/tools/javac/classfiles/attributes/deprecated/
H A DDeprecatedPackageTest.java81 ClassFile cf = readClassFile(compile(
86 (Deprecated_attribute) cf.getAttribute(Attribute.Deprecated);
/openjdk9/langtools/test/tools/javac/processing/rounds/
H A DClassDependingOnGenerated.java51 } catch (CompletionFailure cf) {
52 cf.printStackTrace();
/openjdk9/langtools/test/tools/javac/lambdaShapes/org/openjdk/tests/separate/
H A DAttributeInjector.java38 public byte[] preprocess(String name, byte[] cf) { argument
39 ClassFile classfile = new ClassFile(cf);
67 byte[] cf = cfp.preprocess(argv[0], buffer);
68 new FileOutputStream(argv[0] + ".mod").write(cf);
/openjdk9/jdk/test/jdk/lambda/separate/
H A DAttributeInjector.java38 public byte[] preprocess(String name, byte[] cf) { argument
39 ClassFile classfile = new ClassFile(cf);
67 byte[] cf = cfp.preprocess(argv[0], buffer);
68 new FileOutputStream(argv[0] + ".mod").write(cf);
/openjdk9/hotspot/test/runtime/modules/AccessCheck/
H A DUmodUPkg.java85 Configuration cf = ModuleLayer.boot()
96 ModuleLayer layer = ModuleLayer.boot().defineModules(cf, map::get);
131 Configuration cf = ModuleLayer.boot()
142 ModuleLayer layer = ModuleLayer.boot().defineModules(cf, map::get);
/openjdk9/jdk/test/java/security/cert/PolicyNode/
H A DGetPolicyQualifiers.java42 CertificateFactory cf = CertificateFactory.getInstance("X.509", "SUN");
45 cf.generateCertificate(new FileInputStream(f));
50 cf.generateCertificate(new FileInputStream(f));
56 CertPath cp = cf.generateCertPath(certList);
/openjdk9/langtools/test/tools/javac/multicatch/7005371/
H A DT7005371.java63 ClassFile cf = ClassFile.read(f);
65 for (Method m : cf.methods) {
66 if (m.getName(cf.constant_pool).equals(TEST_METHOD_NAME)) {
89 cf.constant_pool.getUTF8Value(lvt_table.local_variable_table[0].signature_index);
/openjdk9/jdk/src/java.base/share/classes/jdk/internal/loader/
H A DLoaderPool.java52 public LoaderPool(Configuration cf, argument
57 for (ResolvedModule resolvedModule : cf.modules()) {
65 loaders.values().forEach(l -> l.initRemotePackageMap(cf, parentLayers));
/openjdk9/jdk/test/java/security/CodeSigner/
H A DSerialize.java44 CertificateFactory cf = CertificateFactory.getInstance("X.509");
45 Certificate c = cf.generateCertificate(fis);
47 CertPath cp = cf.generateCertPath(Collections.singletonList(c));
/openjdk9/jdk/test/java/security/cert/CertPathBuilder/akiExt/
H A DAKISerialNumber.java104 private static CertificateFactory cf; field in class:AKISerialNumber
108 cf = CertificateFactory.getInstance("X.509");
139 return (X509Certificate)cf.generateCertificate(stream);
/openjdk9/jdk/test/java/util/ResourceBundle/modules/layer/src/
H A DMain.java36 Configuration cf = ModuleLayer.boot().configuration()
40 System.out.println("Configuration: " + cf);
42 ModuleLayer l = ModuleLayer.defineModulesWithManyLoaders(cf,
/openjdk9/jdk/test/sun/security/x509/X509CertImpl/
H A DVerify.java120 CertificateFactory cf = CertificateFactory.getInstance("X.509");
125 cert = (X509Certificate)cf.generateCertificate(inputStream);
130 selfSignedCertPubKey = cf.generateCertificate(inputStream).getPublicKey();
/openjdk9/langtools/test/tools/javac/lambda/lambdaNaming/
H A DTestNonSerializableLambdaNameStability.java86 ClassFile cf = ClassFile.read(in);
89 for (Method m : cf.methods) {
90 String methodName = m.getName(cf.constant_pool);
/openjdk9/jdk/src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/
H A DPlainHttpConnection.java92 CompletableFuture<Void> cf; field in class:PlainHttpConnection.ConnectEvent
94 ConnectEvent(CompletableFuture<Void> cf) { argument
96 this.cf = cf;
114 cf.completeExceptionally(e);
118 cf.complete(null);
411 CompletableFuture<Void> cf; field in class:PlainHttpConnection.ReceiveResponseEvent
413 ReceiveResponseEvent(CompletableFuture<Void> cf) { argument
415 this.cf = cf;
[all...]
/openjdk9/jdk/test/java/lang/module/
H A DConfigurationTest.java87 Configuration cf = resolve(finder, "m1");
89 assertTrue(cf.modules().size() == 3);
91 assertTrue(cf.findModule("m1").isPresent());
92 assertTrue(cf.findModule("m2").isPresent());
93 assertTrue(cf.findModule("m3").isPresent());
95 assertTrue(cf.parents().size() == 1);
96 assertTrue(cf.parents().get(0) == Configuration.empty());
98 ResolvedModule m1 = cf.findModule("m1").get();
99 ResolvedModule m2 = cf.findModule("m2").get();
100 ResolvedModule m3 = cf
[all...]

Completed in 404 milliseconds

1234567891011>>