Searched defs:name (Results 101 - 125 of 500) sorted by relevance

1234567891011>>

/libcore/ojluni/src/test/java/util/stream/test/org/openjdk/tests/java/util/stream/
H A DReduceTest.java61 public void testOps(String name, TestData.OfRef<Integer> data) { argument
H A DSequentialOpTest.java53 public void testLazy(String name, TestData.OfRef<Integer> data) { argument
99 public void testMixedSeqPar(String name, TestData.OfRef<Integer> data) { argument
H A DSpliteratorTest.java48 public void testSpliterator(String name, Supplier<Spliterator<Integer>> supplier) { argument
53 public void testIntSpliterator(String name, Supplier<Spliterator.OfInt> supplier) { argument
58 public void testLongSpliterator(String name, Supplier<Spliterator.OfLong> supplier) { argument
63 public void testDoubleSpliterator(String name, Supplier<Spliterator.OfDouble> supplier) { argument
/libcore/support/src/test/java/libcore/tlswire/handshake/
H A DCipherSuite.java387 String name = cipherSuite.name;
388 if (byName.put(name, cipherSuite) != null) {
390 "Cipher suite multiply defined: " + cipherSuite.name);
393 if (!name.equals(androidName)) {
406 public final String name; field in class:CipherSuite
409 private CipherSuite(int code, String name) { argument
411 this.name = name;
415 private CipherSuite(int code, String name, Strin argument
421 valueOf(String name) argument
[all...]
H A DCompressionMethod.java28 public final String name; field in class:CompressionMethod
30 private CompressionMethod(int type, String name) { argument
32 this.name = name;
48 return name;
/libcore/support/src/test/java/org/apache/harmony/security/tests/support/
H A DIdentityStub.java48 * @param name
51 public IdentityStub(String name) { argument
52 super(name);
58 * @param name
63 public IdentityStub(String name, IdentityScope scope) argument
65 super(name, scope);
70 * @param name
75 public IdentityStub(String name, PublicKey key) throws KeyManagementException{ argument
76 this(name);
H A DMyBasicPermission.java24 public MyBasicPermission(String name) { super(""); } argument
H A DSpiEngUtils.java62 public MyProvider(String name, String info, String key, String clName) { argument
63 super(name, 1.0, info);
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/
H A DInetAddressThreadTest.java57 public threadsafeTestThread(String name, String lookupName, argument
59 super(name);
89 // Intentionally not looking for exact name match so that
/libcore/luni/src/main/java/javax/xml/xpath/
H A DXPathFactory.java36 * <p>The default property name according to the JAXP spec.</p>
89 * where uri is the parameter to this method, then its value is read as a class name.
221 * @param name Feature name.
226 * @throws NullPointerException if <code>name</code> is <code>null</code>.
228 public abstract void setFeature(String name, boolean value) argument
242 * @param name Feature name.
248 * @throws NullPointerException if <code>name</code> is <code>null</code>.
250 public abstract boolean getFeature(String name) argument
[all...]
/libcore/luni/src/main/java/org/apache/harmony/xml/parsers/
H A DSAXParserFactoryImpl.java42 public boolean getFeature(String name) throws SAXNotRecognizedException { argument
43 if (name == null) {
44 throw new NullPointerException("name == null");
47 if (!name.startsWith("http://xml.org/sax/features/")) {
48 throw new SAXNotRecognizedException(name);
51 return Boolean.TRUE.equals(features.get(name));
87 public void setFeature(String name, boolean value) throws SAXNotRecognizedException { argument
88 if (name == null) {
89 throw new NullPointerException("name == null");
92 if (!name
[all...]
H A DSAXParserImpl.java80 public Object getProperty(String name) throws SAXNotRecognizedException, argument
82 return reader.getProperty(name);
105 public void setProperty(String name, Object value) argument
107 reader.setProperty(name, value);
/libcore/luni/src/main/java/org/w3c/dom/
H A DNamedNodeMap.java17 * represent collections of nodes that can be accessed by name. Note that
29 * Retrieves a node specified by name.
30 * @param name The <code>nodeName</code> of a node to retrieve.
35 public Node getNamedItem(String name); argument
39 * that name is already present in this map, it is replaced by the new
41 * <br>As the <code>nodeName</code> attribute is used to derive the name
69 * Removes a node specified by name. When this map contains the attributes
72 * default value as well as the corresponding namespace URI, local name,
74 * @param name The <code>nodeName</code> of the node to remove.
75 * @return The node removed from this map if a node with such a name
82 removeNamedItem(String name) argument
[all...]
/libcore/luni/src/main/java/org/xml/sax/
H A DDocumentHandler.java119 * <p>If the element name has a namespace prefix, the prefix will
124 * @param name The element type name.
131 public abstract void startElement (String name, AttributeList atts) argument
143 * <p>If the element name has a namespace prefix, the prefix will
144 * still be attached to the name.</p>
146 * @param name The element type name
150 public abstract void endElement (String name) argument
/libcore/luni/src/main/java/org/xml/sax/ext/
H A DDeclHandler.java37 * with the property name
63 * @param name The element type name.
67 public abstract void elementDecl (String name, String model) argument
86 * @param eName The name of the associated element.
87 * @param aName The name of the attribute.
111 * @param name The name of the entity. If it is a parameter
112 * entity, the name will begin with '%'.
118 public abstract void internalEntityDecl (String name, Strin argument
140 externalEntityDecl(String name, String publicId, String systemId) argument
[all...]
H A DLexicalHandler.java33 * with the property name
73 * @param name The document type name.
85 public abstract void startDTD (String name, String publicId, argument
116 * the external DTD subset has the pseudo-entity name "[dtd]".</p>
145 * @param name The name of the entity. If it is a parameter
146 * entity, the name will begin with '%', and if it is the
153 public abstract void startEntity (String name) argument
160 * @param name Th
164 endEntity(String name) argument
[all...]
/libcore/luni/src/test/java/libcore/java/util/jar/
H A DOldManifestTest.java46 private void assertAttribute(Attributes attr, String name, String value) { argument
47 assertEquals("Incorrect " + name, value, attr.getValue(name));
/libcore/luni/src/test/java/libcore/java/util/zip/
H A DOldZipInputStreamTest.java158 protected ZipEntry createZipEntry(String name) { argument
160 return super.createZipEntry(name);
H A DZipInputStreamTest.java52 public static byte[] unzip(String name, byte[] bytes) throws IOException { argument
57 assertEquals(name, entry.getName());
150 for (String name : names) {
151 ZipEntry entry = new ZipEntry(name);
/libcore/luni/src/test/java/libcore/javax/security/auth/x500/
H A DX500PrincipalTest.java151 + " because of incorrect input name");
157 private void testIA5StringEncoding(String name, byte[] expectedEncoded) { argument
158 X500Principal original = new X500Principal(name);
/libcore/luni/src/test/java/tests/java/security/
H A DSecureClassLoaderTest.java46 * A class name for the class presented as {@link #klassData bytecode below}
222 public Class define(String name, byte[] bytes) { argument
223 return defineClass(name, bytes, 0, bytes.length,
227 public Class define(String name, ByteBuffer b, CodeSource cs) { argument
228 return defineClass(name, b, cs);
231 public Class define(String name, byte[] b, int off, int len, argument
233 return defineClass(name, b, off, len, cs);
/libcore/ojluni/src/main/java/java/beans/
H A DChangeListenerMap.java64 * @param name the name of the property to listen on
68 protected abstract L newProxy(String name, L listener); argument
74 * @param name the name of the property to listen on
77 public final synchronized void add(String name, L listener) { argument
81 L[] array = this.map.get(name);
91 this.map.put(name, clone);
99 * @param name the name o
102 remove(String name, L listener) argument
134 get(String name) argument
146 set(String name, L[] listeners) argument
195 getListeners(String name) argument
213 hasListeners(String name) argument
[all...]
/libcore/ojluni/src/main/java/java/net/
H A DStandardSocketOptions.java31 * <p> The {@link SocketOption#name name} of each socket option defined by this
32 * class is its field name.
357 private final String name; field in class:StandardSocketOptions.StdSocketOption
359 StdSocketOption(String name, Class<T> type) { argument
360 this.name = name;
363 @Override public String name() { return name; } method in class:StandardSocketOptions.StdSocketOption
365 @Override public String toString() { return name; }
[all...]
/libcore/ojluni/src/main/java/java/nio/channels/
H A DAsynchronousServerSocketChannel.java239 public abstract <T> AsynchronousServerSocketChannel setOption(SocketOption<T> name, T value) argument
/libcore/ojluni/src/main/java/java/security/
H A DIdentityScope.java35 * itself, and therefore has a name and can have a scope. It can also
49 * associated certificates. It is named in the scope using the name
51 * public key. Of course, none has the same name as well.
110 * Constructs a new identity scope with the specified name.
112 * @param name the scope name.
114 public IdentityScope(String name) { argument
115 super(name);
119 * Constructs a new identity scope with the specified name and scope.
121 * @param name th
127 IdentityScope(String name, IdentityScope scope) argument
185 getIdentity(String name) argument
[all...]

Completed in 619 milliseconds

1234567891011>>