Searched refs:names (Results 1 - 25 of 30) sorted by relevance

12

/libcore/expectations/
H A Dtaggedtests.txt9 names: [
H A Dknownfailures.txt17 names: [
30 names: [
70 names: [
79 names: [
98 names: [
108 names: [
156 names: [
174 names: [
204 names: [
215 names
[all...]
H A Dbrokentests.txt37 names: [
48 names: [
73 names: [
128 names: [
152 names: [
161 names: [
177 names: [
187 names: [
202 names: [
219 names
[all...]
H A Dicebox.txt8 names: [
54 names: [
117 names: [
165 names: [
202 names: [
/libcore/luni/src/main/java/org/xml/sax/helpers/
H A DAttributeListImpl.java141 names.add(name);
162 int i = names.indexOf(name);
164 names.remove(i);
182 names.clear();
202 return names.size();
215 if (i < 0 || i >= names.size()) {
218 return names.get(i);
266 return getType(names.indexOf(name));
279 return getValue(names.indexOf(name));
289 private ArrayList<String> names
286 private ArrayList<String> names = new ArrayList<String>(); field in class:AttributeListImpl
[all...]
H A DParserAdapter.java46 * attribute names.</p>
621 String names[] = processName(qName, false, false);
623 contentHandler.endElement(names[0], names[1], names[2]);
858 * from SAX1 to SAX2, except that names and types are
/libcore/luni/src/main/java/org/apache/harmony/security/
H A DSystemScope.java44 private Hashtable names = new Hashtable(); field in class:SystemScope
74 return names.size();
84 return (Identity) names.get(name);
106 if (names.containsKey(name)) {
115 names.put(name, identity);
137 boolean contains = names.containsKey(name);
138 names.remove(name);
156 return names.elements();
/libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/func/
H A DSecretKeyFactoryThread.java26 SecretKeyFactoryThread(String[] names) { argument
27 super(names);
H A DKeyGeneratorThread.java26 KeyGeneratorThread(String[] names) { argument
27 super(names);
34 throw new Exception ("Algorithm names not matched for KeyGenerator" +
38 throw new Exception ("Algorithm names not matched for KeyGenerator" +
H A DMacThread.java22 MacThread(String[] names) { argument
23 super(names);
H A DTestThread.java26 TestThread(String[] names) { argument
27 algNamesArray = names;
H A DKeyAgreementThread.java63 public KeyAgreementThread(String[] names) { argument
64 super(names);
/libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
H A DLogger.java90 private static String[] names; field in class:Logger
94 names = System.getProperty("jsse", "").split(",");
96 names = EmptyArray.STRING;
101 for (int i=0; i<names.length; i++) {
102 if (names[i].equals(name)) {
/libcore/luni/src/main/java/java/lang/reflect/
H A DProxy.java38 // maps class loaders to created classes by interface names
146 StringBuilder names = new StringBuilder();
148 names.append(interfaces[i].getName());
149 names.append(' ');
151 interfaceKey = names.toString();
/libcore/luni/src/main/java/org/apache/harmony/security/x509/
H A DNameConstraints.java153 * names of specified X509Certificate. Restrictions apply only
158 * names the same (i.e. method does not check if it CA's certificate or not,
159 * or if the names differ or not. This check if it is needed should be done
171 List<GeneralName> names;
173 names = (bytes == null)
183 names.add(new GeneralName(4,
189 return isAcceptable(names);
193 * Check if this list of names is acceptable according to this
196 public boolean isAcceptable(List<GeneralName> names) { argument
201 // check map: shows which types of permitted alternative names ar
[all...]
/libcore/luni/src/test/java/org/apache/harmony/xnet/provider/jsse/
H A DCipherSuiteTest.java118 List<String> names = new ArrayList<String>(suites.length);
121 names.add(cs.getName());
123 assertEquals(Arrays.asList(CipherSuite.getSupportedCipherSuiteNames()), names);
127 String[] names = CipherSuite.getSupportedCipherSuiteNames();
128 StandardNames.assertSupportedCipherSuites(StandardNames.CIPHER_SUITES_SSLENGINE, names);
129 for (String name : names) {
/libcore/luni/src/main/java/java/security/cert/
H A DX509CRLSelector.java42 // contains X.500 distinguished names in CANONICAL format
44 // contains X500Principal objects corresponding to the names
62 * Sets the criterion for the issuer distinguished names.
65 * names.
68 * the list of issuer distinguished names to match, or {@code
87 * distinguished names.
90 * names.
92 * The specified parameter {@code names} is a collection with an entry for
97 * @param names
98 * the list of issuer distinguished names t
103 setIssuerNames(Collection<?> names) argument
[all...]
H A DX509CertSelector.java615 * Sets the flag for the matching behavior for subject alternative names.
618 * of the subject alternative names specified by {@link
623 * specified subject alternative names, otherwise {@code false}.
630 * Returns the flag for the matching behavior for subject alternative names.
633 * of the subject alternative names specified by {@link
637 * subject alternative names, otherwise {@code false}.
644 * Sets the criterion for subject alternative names.
647 * alternative names. The behavior is specified by
650 * The specified parameter {@code names} is a collection with an entry for
656 * @param names
661 setSubjectAlternativeNames(Collection<List<?>> names) argument
928 setPathToNames(Collection<List<?>> names) argument
[all...]
/libcore/luni/src/main/java/java/util/prefs/
H A DFilePreferencesImpl.java98 String[] names = dir.list(new FilenameFilter() {
103 if (names == null) {// file is not a directory, exception case
104 throw new BackingStoreException("Cannot get child names for " + toString()
107 return names;
H A DAbstractPreferences.java232 * Returns the names of all of the child nodes of this node or an empty
233 * array if this node has no children. The names of cached children are not
236 * @return the names of this node's children.
355 String[] names = childrenNamesSpi();
356 for (int i = 0; i < names.length; i++) {
357 result.add(names[i]);
561 String[] names = path.split("/");
564 for (String name : names) {
/libcore/json/src/test/java/org/json/
H A DJSONObjectTest.java41 assertNull(object.names());
530 JSONArray names = new JSONArray();
531 names.put("baz");
532 names.put("quux");
533 names.put("foo");
535 JSONArray array = object.toJSONArray(names);
550 JSONArray names = new JSONArray();
551 names.put("bar");
552 names.put("foo");
553 names
[all...]
/libcore/json/src/main/java/org/json/
H A DJSONObject.java84 * {@code null}, names with this value:
86 * <li>show up in the {@link #names} array
175 * Creates a new {@code JSONObject} by copying mappings for the listed names
179 public JSONObject(JSONObject copyFrom, String[] names) throws JSONException { argument
181 for (String name : names) {
587 * Returns an array with the values corresponding to {@code names}. The
588 * array contains null for names that aren't mapped. This method returns
589 * null if {@code names} is either null or empty.
591 public JSONArray toJSONArray(JSONArray names) throws JSONException { argument
593 if (names
623 public JSONArray names() { method in class:JSONObject
[all...]
H A DJSONArray.java499 * names are the values in {@code names}. Names and values are paired up by
504 public JSONObject toJSONObject(JSONArray names) throws JSONException { argument
506 int length = Math.min(names.length(), values.size());
511 String name = JSON.toString(names.opt(i));
/libcore/luni/src/test/java/libcore/java/lang/reflect/
H A DReflectionTest.java242 assertTrue(names(fields).contains("field"));
247 assertTrue(names(fields).contains("field"));
262 assertTrue(names(methods).contains("method"));
267 assertTrue(names(methods).contains("method"));
272 assertEquals(1, count(names(methods), "method"));
277 assertEquals(1, count(names(fields), "field"));
350 private List<String> names(Member[] methods) { method in class:ReflectionTest
/libcore/luni/src/main/java/java/util/logging/
H A DLogManager.java82 * <li>"handlers". This property's values should be a list of class names for
88 * <li>"config". The property defines a list of class names separated by
100 * specified in the property files. The names of these properties will start
101 * with the complete dot separated names for the handlers or loggers.
104 * {@code Loggers} are organized based on their dot separated names. For
279 * Get a {@code Enumeration} of all registered logger names.
281 * @return enumeration of registered logger names
426 Enumeration<String> names = getLoggerNames();
427 while (names.hasMoreElements()) {
428 String name = names
[all...]

Completed in 3804 milliseconds

12