Searched defs:names (Results 26 - 50 of 178) sorted by relevance

12345678

/openjdk7/langtools/src/share/classes/com/sun/tools/javac/parser/
H A DScannerFactory.java58 final Names names; field in class:ScannerFactory
66 this.names = Names.instance(context);
H A DParserFactory.java60 final Names names; field in class:ParserFactory
69 this.names = Names.instance(context);
/openjdk7/jdk/src/share/classes/sun/security/ssl/
H A DCipherSuiteList.java65 * Construct a CipherSuiteList from a array of names. We don't bother
72 CipherSuiteList(String[] names) { argument
73 if (names == null) {
76 cipherSuites = new ArrayList<CipherSuite>(names.length);
80 for (int i = 0; i < names.length; i++) {
81 String suiteName = names[i];
167 * Return an array with the names of the CipherSuites in this list.
H A DProtocolList.java51 ProtocolList(String[] names) { argument
52 this(convert(names));
77 private static ArrayList<ProtocolVersion> convert(String[] names) { argument
78 if (names == null) {
83 for (int i = 0; i < names.length; i++ ) {
84 ProtocolVersion version = ProtocolVersion.valueOf(names[i]);
137 * Return an array with the names of the ProtocolVersions in this list.
/openjdk7/jdk/src/share/classes/sun/security/x509/
H A DGeneralNames.java47 private final List<GeneralName> names; field in class:GeneralNames
77 names = new ArrayList<GeneralName>();
84 names.add(name);
89 return names.get(index);
93 return names.isEmpty();
97 return names.size();
101 return names.iterator();
104 public List<GeneralName> names() { method in class:GeneralNames
105 return names;
120 for (GeneralName gn : names) {
[all...]
H A DCertificateIssuerExtension.java67 * Attribute names.
72 private GeneralNames names; field in class:CertificateIssuerExtension
78 if (names == null || names.isEmpty()) {
83 names.encode(os);
97 this.names = issuer;
117 this.names = new GeneralNames(val);
131 this.names = (GeneralNames)obj;
146 return names;
160 names
[all...]
H A DIssuerAlternativeNameExtension.java38 * alternative names.
59 * Attribute names.
65 GeneralNames names = null; field in class:IssuerAlternativeNameExtension
69 if (names == null || names.isEmpty()) {
74 names.encode(os);
81 * @param names the GeneralNames for the issuer.
84 public IssuerAlternativeNameExtension(GeneralNames names) argument
86 this.names = names;
100 IssuerAlternativeNameExtension(Boolean critical, GeneralNames names) argument
[all...]
H A DSubjectAlternativeNameExtension.java38 * alternative names.
64 * Attribute names.
70 GeneralNames names = null; field in class:SubjectAlternativeNameExtension
74 if (names == null || names.isEmpty()) {
79 names.encode(os);
87 * @param names the GeneralNames for the subject.
90 public SubjectAlternativeNameExtension(GeneralNames names) argument
92 this(Boolean.FALSE, names);
100 * @param names th
103 SubjectAlternativeNameExtension(Boolean critical, GeneralNames names) argument
[all...]
/openjdk7/jdk/test/javax/management/MBeanInfo/
H A DNotificationInfoTest.java27 * @summary Test that JMX classes use fully-qualified class names
57 * getName() that names an existent Java class that is a Notification.
72 // class or object names where the test failed
75 // class or object names where there were no MBeanNotificationInfo entries
158 names GENERIC and ATTRIBUTE_CHANGE for its standard notifs.
236 Set<String> names;
239 names = findStandardMBeansFromDir(codeBase);
241 names = findStandardMBeansFromJar(codeBase);
244 for (String name : names) {
247 if (names
279 scanDir(File dir, String prefix, Set<String> names) argument
[all...]
/openjdk7/jdk/test/javax/management/MBeanServer/
H A DMBeanServerNotificationTest.java39 final static String[] names = { field in class:MBeanServerNotificationTest
48 for (String str:names) {
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/
H A DDOMEnhancedForDTM.java38 public short[] getMapping(String[] names, String[] uris, int[] types); argument
39 public int[] getReverseMapping(String[] names, String[] uris, int[] types); argument
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/utils/
H A DIdResolver.java172 private static java.util.List names; field in class:IdResolver
180 "urn:oasis:names:tc:SAML:1.0:assertion",
181 "urn:oasis:names:tc:SAML:1.0:protocol"
183 names = Arrays.asList(namespaces);
184 namesLength = names.size();
242 int elementIndex=names.indexOf(el.getNamespaceURI());
248 int index=s==null ? elementIndex : names.indexOf(n.getNamespaceURI());
/openjdk7/jdk/src/share/classes/com/sun/script/javascript/
H A DRhinoScriptEngineFactory.java52 return names;
138 private static List<String> names; field in class:RhinoScriptEngineFactory
143 names = new ArrayList<String>(6);
144 names.add("js");
145 names.add("rhino");
146 names.add("JavaScript");
147 names.add("javascript");
148 names.add("ECMAScript");
149 names.add("ecmascript");
150 names
[all...]
/openjdk7/jaxp/src/org/xml/sax/helpers/
H A DAttributeListImpl.java165 names.addElement(name);
187 int i = names.indexOf(name);
190 names.removeElementAt(i);
209 names.removeAllElements();
229 return names.size();
247 return (String)names.elementAt(i);
309 return getType(names.indexOf(name));
321 return getValue(names.indexOf(name));
330 Vector names = new Vector(); field in class:AttributeListImpl
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/soap/
H A DMimeHeaders.java189 private String[] names; field in class:MimeHeaders.MatchingIterator
192 MatchingIterator(String[] names, boolean match) { argument
194 this.names = names;
203 if (names == null)
206 for(int i = 0; i < names.length; i++)
207 if (hdr.getName().equalsIgnoreCase(names[i]))
246 * a name in the given array of names.
248 * @param names an array of <code>String</code> objects with the names
253 getMatchingHeaders(String[] names) argument
266 getNonMatchingHeaders(String[] names) argument
[all...]
H A DSOAPPart.java221 * @param names a <code>String</code> array with the name(s) of the
223 * @return all of the MIME headers that match one of the names in the
226 public abstract Iterator getMatchingMimeHeaders(String[] names); argument
232 * @param names a <code>String</code> array with the name(s) of the
235 * except those that match one of the names in the
239 public abstract Iterator getNonMatchingMimeHeaders(String[] names); argument
/openjdk7/jdk/src/solaris/native/java/io/
H A Dcanonicalize_md.c46 Return zero if not, otherwise return the number of names in the sequence. */
49 collapsible(char *names) argument
51 char *p = names;
74 /* Split the names in the given name sequence,
78 splitNames(char *names, char **ix) argument
80 char *p = names;
96 /* Join the names in the given name sequence, ignoring names whose index
100 joinNames(char *names, int nc, char **ix) argument
105 for (i = 0, p = names;
130 char *names = (path[0] == '/') ? path + 1 : path; /* Preserve first '/' */ local
[all...]
/openjdk7/jdk/test/java/beans/Introspector/
H A DTest6194788.java100 public void setParentName(String[] names) { argument
123 public void setChildName(String[] names) { argument
/openjdk7/langtools/src/share/classes/com/sun/tools/apt/mirror/
H A DAptEnv.java45 public Names names; // javac's name table field in class:AptEnv
69 names = Names.instance(context);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/util/
H A DByteBuffer.java31 * appended. There are also methods to append names to byte buffers
32 * and to convert byte buffers to names.
164 public Name toName(Names names) { argument
165 return names.fromUtf(elems, 0, length);
/openjdk7/langtools/test/tools/javac/6402516/
H A DChecker.java156 static Iterable<File> getFiles(File dir, String... names) { argument
157 List<File> files = new ArrayList<File>(names.length);
158 for (String name: names)
/openjdk7/jdk/src/share/classes/sun/tools/jstat/
H A DJStatLogger.java53 public void printNames(String names, Comparator<Monitor> comparator, argument
58 List<Monitor> items = monitoredVm.findByPattern(names);
72 public void printSnapShot(String names, Comparator<Monitor> comparator, argument
78 List<Monitor> items = monitoredVm.findByPattern(names);
/openjdk7/jdk/test/javax/script/
H A DDummyScriptEngineFactory.java70 return names;
105 private static List<String> names; field in class:DummyScriptEngineFactory
109 names = new ArrayList<String>(1);
110 names.add("dummy");
111 names = Collections.unmodifiableList(names);
112 extensions = names;
/openjdk7/jdk/src/share/classes/sun/management/
H A DFlag.java71 String[] names = new String[1];
72 names[0] = name;
74 List<Flag> flags = getFlags(names, 1);
86 // Get all internal flags with names = null
90 private static List<Flag> getFlags(String[] names, int numFlags) { argument
92 int count = getFlags(names, flags, numFlags);
107 private static native int getFlags(String[] names, Flag[] flags, int count); argument
/openjdk7/jdk/src/share/classes/sun/management/snmp/util/
H A DSnmpNamedListTableCache.java58 protected TreeMap names = new TreeMap(); field in class:SnmpNamedListTableCache
120 if (names == null) return testOid;
121 if (names.containsValue(testOid)) continue;
157 final Object index = (names==null||key==null)?null:names.get(key);
172 * finally replace the {@link #names} TreeMap by the new allocated
181 names = ctxt;
240 * names and indexes, and call {@link #updateCachedDatas(Object,List)}
242 * Finally replaces the {@link #names} TreeMap by the temporary
261 names
[all...]

Completed in 124 milliseconds

12345678