Searched refs:NAME (Results 1 - 25 of 221) sorted by relevance

123456789

/openjdk9/jdk/test/java/lang/invoke/7196190/
H A DClassForNameTest.java37 static final String NAME = ClassForNameTest.class.getName(); field in class:ClassForNameTest
45 Class.forName(NAME);
47 mh.invoke(NAME);
48 mh.bindTo(NAME).invoke();
49 mh.invokeWithArguments(Arrays.asList(NAME));
50 mh.invokeWithArguments(NAME);
51 Class cls = (Class) mh.invokeExact(NAME);
61 fnMethod.invoke(null, NAME);
63 mh.bindTo(null).bindTo(new Object[]{NAME}).invoke();
64 mh.invoke(null, new Object[]{NAME});
[all...]
H A DGetUnsafeTest.java37 static final String NAME = "sun.misc.Unsafe"; field in class:GetUnsafeTest
55 try { Class.forName(NAME); fail(); } catch (Throwable e) {}
57 try { mh.invoke(NAME); fail(); } catch (Throwable e) {}
58 try { mh.bindTo(NAME).invoke(); fail(); } catch (Throwable e) {}
59 try { mh.invokeWithArguments(Arrays.asList(NAME)); fail(); } catch (Throwable e) {}
60 try { mh.invokeWithArguments(NAME); fail(); } catch (Throwable e) {}
61 try { Class cls = (Class) mh.invokeExact(NAME); fail(); } catch (Throwable e) {}
71 try { fnMethod.invoke(null, NAME); fail(); } catch (Throwable e) {}
73 try { mh.bindTo(null).bindTo(new Object[]{NAME}).invoke(); fail(); } catch (Throwable e) {}
74 try { mh.invoke(null, new Object[]{NAME}); fai
[all...]
/openjdk9/jdk/test/java/lang/Class/getResource/
H A DMain.java40 static final String NAME = "myresource"; field in class:Main
58 URL url = Main.class.getResource("/" + NAME);
61 url = Main.class.getResource("/p1/" + NAME);
64 url = Main.class.getResource("/p1/impl/" + NAME);
67 url = Main.class.getResource("/p1/resources/" + NAME);
70 url = Main.class.getResource("/p2/" + NAME);
73 url = Main.class.getResource("/p2/impl/" + NAME);
77 url = Main.class.getResource("/p2/resources/" + NAME);
82 url = p1.Main.getResource("/" + NAME);
85 url = p1.Main.getResource("/p1/" + NAME);
[all...]
/openjdk9/jdk/test/java/lang/ClassLoader/getResource/modules/
H A DMain.java43 static final String NAME = "myresource"; field in class:Main
63 URL url = thisLoader.getResource(NAME);
66 url = thisLoader.getResource("p1/" + NAME);
69 url = thisLoader.getResource("p1/impl/" + NAME);
72 url = thisLoader.getResource("p1/resources/" + NAME);
75 url = thisLoader.getResource("p2/" + NAME);
78 url = thisLoader.getResource("p2/impl/" + NAME);
81 url = thisLoader.getResource("p2/resources/" + NAME);
86 url = p1.Main.getResourceInClassLoader(NAME);
89 url = p1.Main.getResourceInClassLoader("p1/" + NAME);
[all...]
/openjdk9/jdk/src/java.base/unix/native/include/
H A Djvm_md.h46 #define VERSIONED_JNI_LIB_NAME(NAME, VERSION) JNI_LIB_PREFIX NAME "." VERSION JNI_LIB_SUFFIX
49 #define VERSIONED_JNI_LIB_NAME(NAME, VERSION) JNI_LIB_PREFIX NAME JNI_LIB_SUFFIX "." VERSION
51 #define JNI_LIB_NAME(NAME) JNI_LIB_PREFIX NAME JNI_LIB_SUFFIX
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/
H A DEconomyCompilerConfigurationFactory.java32 public static final String NAME = "economy"; field in class:EconomyCompilerConfigurationFactory
37 super(NAME, AUTO_SELECTION_PRIORITY);
48 return new DefaultBackendMap(CoreCompilerConfigurationFactory.NAME);
H A DCoreCompilerConfigurationFactory.java32 public static final String NAME = "core"; field in class:CoreCompilerConfigurationFactory
37 super(NAME, AUTO_SELECTION_PRIORITY);
/openjdk9/langtools/src/jdk.javadoc/share/classes/com/sun/tools/doclets/internal/toolkit/taglets/
H A DCodeTaglet.java56 private static final String NAME = "code"; field in class:CodeTaglet
59 map.remove(NAME);
60 map.put(NAME, new CodeTaglet());
64 return NAME;
H A DLiteralTaglet.java55 private static final String NAME = "literal"; field in class:LiteralTaglet
58 map.remove(NAME);
59 map.put(NAME, new LiteralTaglet());
63 return NAME;
H A DIndexTaglet.java43 private static final String NAME = "index"; field in class:IndexTaglet
46 map.remove(NAME);
47 map.put(NAME, new IndexTaglet());
51 return NAME;
/openjdk9/jdk/src/java.base/share/classes/jdk/internal/jimage/decompressor/
H A DStringSharingDecompressorFactory.java42 public static final String NAME = "compact-cp"; field in class:StringSharingDecompressorFactory
44 super(NAME);
H A DZipDecompressorFactory.java41 public static final String NAME = "zip"; field in class:ZipDecompressorFactory
43 super(NAME);
/openjdk9/jdk/test/java/beans/PropertyChangeSupport/
H A DTestListeners.java37 private static final String NAME = "property"; field in class:TestListeners
45 pcs.addPropertyChangeListener(NAME, new TestListeners(2));
47 pcs.addPropertyChangeListener(NAME, new PropertyChangeListenerProxy(NAME, new TestListeners(3)));
51 pcs.firePropertyChange(NAME, 0, 1);
65 PropertyChangeListener[] named = pcs.getPropertyChangeListeners(NAME);
75 pcs.removePropertyChangeListener(NAME, new TestListeners(2));
76 pcs.removePropertyChangeListener(NAME, new PropertyChangeListenerProxy(NAME, new TestListeners(3)));
82 named = pcs.getPropertyChangeListeners(NAME);
[all...]
/openjdk9/jdk/test/java/beans/VetoableChangeSupport/
H A DTestListeners.java38 private static final String NAME = "property"; field in class:TestListeners
46 vcs.addVetoableChangeListener(NAME, new TestListeners(2));
48 vcs.addVetoableChangeListener(NAME, new VetoableChangeListenerProxy(NAME, new TestListeners(3)));
52 vcs.fireVetoableChange(NAME, 0, 1);
66 VetoableChangeListener[] named = vcs.getVetoableChangeListeners(NAME);
76 vcs.removeVetoableChangeListener(NAME, new TestListeners(2));
77 vcs.removeVetoableChangeListener(NAME, new VetoableChangeListenerProxy(NAME, new TestListeners(3)));
83 named = vcs.getVetoableChangeListeners(NAME);
[all...]
/openjdk9/jdk/test/sun/security/krb5/tools/
H A DKtabZero.java42 static final String NAME = "k.tab"; field in class:KtabZero
47 Files.deleteIfExists(Paths.get(NAME));
51 Files.deleteIfExists(Paths.get(NAME));
52 KeyTab.getInstance(NAME).save();
56 Files.deleteIfExists(Paths.get(NAME));
58 ("-k " + NAME + " -a me@HERE pass").split(" "));
64 KeyTab kt = KeyTab.getInstance(NAME);
/openjdk9/jdk/src/java.base/share/classes/sun/security/x509/
H A DFreshestCRLExtension.java63 public static final String NAME = "FreshestCRL"; field in class:FreshestCRLExtension
74 super(PKIXExtensions.FreshestCRL_Id, false, distributionPoints, NAME);
87 NAME);
H A DOIDMap.java52 private static final String ROOT = X509CertImpl.NAME + "." +
53 X509CertInfo.NAME + "." +
56 AuthorityKeyIdentifierExtension.NAME;
58 SubjectKeyIdentifierExtension.NAME;
60 KeyUsageExtension.NAME;
62 PrivateKeyUsageExtension.NAME;
64 PolicyMappingsExtension.NAME;
66 SubjectAlternativeNameExtension.NAME;
68 IssuerAlternativeNameExtension.NAME;
70 BasicConstraintsExtension.NAME;
[all...]
H A DDeltaCRLIndicatorExtension.java67 public static final String NAME = "DeltaCRLIndicator"; field in class:DeltaCRLIndicatorExtension
79 BigInteger.valueOf(crlNum), NAME, LABEL);
89 super(PKIXExtensions.DeltaCRLIndicator_Id, true, crlNum, NAME, LABEL);
103 value, NAME, LABEL);
/openjdk9/jdk/src/java.base/macosx/native/include/
H A Djvm_md.h45 #define VERSIONED_JNI_LIB_NAME(NAME, VERSION) JNI_LIB_PREFIX NAME "." VERSION JNI_LIB_SUFFIX
46 #define JNI_LIB_NAME(NAME) JNI_LIB_PREFIX NAME JNI_LIB_SUFFIX
/openjdk9/jdk/test/java/beans/Introspector/
H A DTest6660539.java37 private static final String NAME = "$$$"; field in class:Test6660539
41 pd.setDisplayName(NAME);
43 ThreadGroup group = new ThreadGroup(NAME);
51 if (pd.getDisplayName().equals(NAME))
/openjdk9/jaxws/src/jdk.xml.bind/share/classes/com/sun/tools/internal/xjc/reader/xmlschema/bindinfo/
H A DBIXSubstitutable.java44 public final QName getName() { return NAME; }
47 public static final QName NAME = new QName(Const.XJC_EXTENSION_URI,"substitutable"); field in class:BIXSubstitutable
/openjdk9/jdk/test/java/rmi/activation/Activatable/lookupActivationSystem/
H A DLookupActivationSystem.java49 private static final String NAME = ActivationSystem.class.getName(); field in class:LookupActivationSystem
66 rmidRegistry.lookup(NAME);
74 if (list.length == 1 && list[0].equals(NAME)) {
82 rmidRegistry.bind(NAME, new LookupActivationSystem());
97 rmidRegistry.rebind(NAME, new LookupActivationSystem());
111 rmidRegistry.unbind(NAME);
/openjdk9/jdk/src/jdk.jlink/share/classes/jdk/tools/jlink/internal/plugins/
H A DExcludeFilesPlugin.java40 public static final String NAME = "exclude-files"; field in class:ExcludeFilesPlugin
45 return NAME;
66 return PluginsResourceBundle.getDescription(NAME);
76 return PluginsResourceBundle.getArgument(NAME);
81 predicate = ResourceFilter.excludeFilter(config.get(NAME));
H A DExcludePlugin.java40 public static final String NAME = "exclude-resources"; field in class:ExcludePlugin
45 return NAME;
61 return PluginsResourceBundle.getDescription(NAME);
71 return PluginsResourceBundle.getArgument(NAME);
81 predicate = ResourceFilter.excludeFilter(config.get(NAME));
H A DExcludeJmodSectionPlugin.java43 public static final String NAME = "exclude-jmod-section"; field in class:ExcludeJmodSectionPlugin
51 return NAME;
56 String arg = config.get(NAME);
92 return PluginsResourceBundle.getDescription(NAME);
102 return PluginsResourceBundle.getArgument(NAME);

Completed in 134 milliseconds

123456789