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

1234567

/openjdk7/jdk/test/tools/launcher/
H A Di18nTest.sh57 NAME=`ls i18n*.java | sed s/.java//`
58 echo $NAME
59 $JAVAC ${NAME}.java
71 $JAVA ${NAME}
80 echo "Class $NAME did not run successfully."
/openjdk7/jdk/src/solaris/javavm/export/
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
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/taglets/
H A DCodeTaglet.java49 private static final String NAME = "code"; field in class:CodeTaglet
52 map.remove(NAME);
53 map.put(NAME, new CodeTaglet());
57 return NAME;
H A DExpertTaglet.java34 private static final String NAME = "expert"; field in class:ExpertTaglet
67 return NAME;
71 map.remove(NAME);
72 map.put(NAME, new ExpertTaglet());
H A DLiteralTaglet.java47 private static final String NAME = "literal"; field in class:LiteralTaglet
50 map.remove(NAME);
51 map.put(NAME, new LiteralTaglet());
55 return NAME;
/openjdk7/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...]
H A DTestMethods.java46 private static final String NAME = "property"; field in class:TestMethods
50 new TestMethods(source).firePropertyChange(new PropertyChangeEvent(source, NAME, null, null));
51 new TestMethods(source).firePropertyChange(NAME, null, null);
52 new TestMethods(source).firePropertyChange(NAME, 0, 1);
53 new TestMethods(source).firePropertyChange(NAME, true, false);
54 new TestMethods(source).fireIndexedPropertyChange(NAME, 0, null, null);
55 new TestMethods(source).fireIndexedPropertyChange(NAME, 0, 0, 1);
56 new TestMethods(source).fireIndexedPropertyChange(NAME, 0, true, false);
/openjdk7/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...]
H A DTestMethods.java44 private static final String NAME = "property"; field in class:TestMethods
48 new TestMethods(source).fireVetoableChange(new PropertyChangeEvent(source, NAME, null, null));
49 new TestMethods(source).fireVetoableChange(NAME, null, null);
50 new TestMethods(source).fireVetoableChange(NAME, 0, 1);
51 new TestMethods(source).fireVetoableChange(NAME, true, false);
/openjdk7/jdk/test/sun/security/krb5/tools/
H A DKtabZero.java39 static final String NAME = "k.tab"; field in class:KtabZero
44 Files.deleteIfExists(Paths.get(NAME));
48 Files.deleteIfExists(Paths.get(NAME));
49 KeyTab.getInstance(NAME).save();
53 Files.deleteIfExists(Paths.get(NAME));
57 (Object)(("-k " + NAME + " -a me@HERE pass").split(" ")));
68 KeyTab kt = KeyTab.getInstance(NAME);
/openjdk7/jdk/src/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.java53 private static final String ROOT = X509CertImpl.NAME + "." +
54 X509CertInfo.NAME + "." +
57 AuthorityKeyIdentifierExtension.NAME;
59 SubjectKeyIdentifierExtension.NAME;
61 KeyUsageExtension.NAME;
63 PrivateKeyUsageExtension.NAME;
65 PolicyMappingsExtension.NAME;
67 SubjectAlternativeNameExtension.NAME;
69 IssuerAlternativeNameExtension.NAME;
71 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);
H A DOCSPNoCheckExtension.java66 public static final String NAME = "OCSPNoCheck"; field in class:OCSPNoCheckExtension
130 return NAME;
/openjdk7/jdk/src/macosx/javavm/export/
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
/openjdk7/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))
/openjdk7/jaxws/src/share/jaxws_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
H A DBIDom.java47 public final QName getName() { return NAME; }
50 public static final QName NAME = new QName(Const.JAXB_NSURI,"dom"); field in class:BIDom
H A DBIEnumMember.java61 public QName getName() { return NAME; }
64 public static final QName NAME = new QName( field in class:BIEnumMember
/openjdk7/jdk/test/java/rmi/activation/Activatable/lookupActivationSystem/
H A DLookupActivationSystem.java44 private static final String NAME = ActivationSystem.class.getName(); field in class:LookupActivationSystem
61 rmidRegistry.lookup(NAME);
69 if (list.length == 1 && list[0].equals(NAME)) {
77 rmidRegistry.bind(NAME, new LookupActivationSystem());
92 rmidRegistry.rebind(NAME, new LookupActivationSystem());
106 rmidRegistry.unbind(NAME);
/openjdk7/jdk/test/sun/security/krb5/auto/
H A DLoginModuleOptions.java41 private static final String NAME = "javax.security.auth.login.name"; field in class:LoginModuleOptions
51 login(null, "tryFirstPass", "true", NAME, OneKDC.USER,
66 "tryFirstPass", "true", NAME, OneKDC.USER, PWD, OneKDC.PASS);
74 NAME, OneKDC.USER, PWD, "haha".toCharArray());
84 NAME, OneKDC.USER, PWD, "haha".toCharArray());
97 "tryFirstPass", "true", NAME, "foo", PWD, "bar".toCharArray());
100 "tryFirstPass", "true", NAME, OneKDC.USER, PWD, OneKDC.PASS);
103 // 1. principal preferred to NAME (NAME can be wrong or missing)
105 "tryFirstPass", "true", NAME, "someone_els
[all...]
/openjdk7/jdk/test/java/rmi/registry/multipleRegistries/
H A DMultipleRegistries.java42 private static final String NAME = "MultipleRegistries"; field in class:MultipleRegistries
70 registry1.bind(NAME, proxy);
71 registry2.bind(NAME, proxy);
75 RemoteInterface remote1 = (RemoteInterface) registry1.lookup(NAME);
76 RemoteInterface remote2 = (RemoteInterface) registry2.lookup(NAME);
/openjdk7/jdk/test/java/rmi/registry/interfaceHash/
H A DInterfaceHash.java62 private static final String NAME = "WMM"; field in class:InterfaceHash
81 referenceStub.bind(NAME, referenceStub);
82 System.err.println("bound name \"" + NAME + "\" in registry");
87 if (list.length != 1 || !list[0].equals(NAME)) {
92 Registry result = (Registry) referenceStub.lookup(NAME);
93 System.err.println("lookup of name \"" + NAME + "\" returned: " +
100 referenceStub.rebind(NAME, referenceStub);
101 referenceStub.unbind(NAME);
102 System.err.println("unbound name \"" + NAME + "\"");
158 testStub.bind(NAME, referenceStu
[all...]
/openjdk7/langtools/test/com/sun/javadoc/testLegacyTaglet/
H A DToDoTaglet.java46 private static final String NAME = "todo"; field in class:ToDoTaglet
53 return NAME;
H A DUnderlineTaglet.java39 private String NAME = "underline"; field in class:UnderlineTaglet
45 return NAME;

Completed in 117 milliseconds

1234567