Searched refs:name (Results 1 - 25 of 584) sorted by relevance

1234567891011>>

/libcore/ojluni/src/main/java/sun/nio/ch/
H A DOptionKey.java29 * Represents the level/name of a socket option
34 private int name; field in class:OptionKey
36 OptionKey(int level, int name) { argument
38 this.name = name;
45 int name() { method in class:OptionKey
46 return name;
/libcore/ojluni/src/main/java/java/net/
H A DProtocolFamily.java36 * Returns the name of the protocol family.
38 String name(); method in interface:ProtocolFamily
H A DNetPermission.java36 public NetPermission(String name) argument
41 public NetPermission(String name, String actions) argument
/libcore/expectations/
H A Dicebox.txt8 name: "libcore.xml.DomTest#testEntityDeclarations",
14 name: "libcore.xml.DomTest#testGetWholeTextWithEntityReference",
19 name: "libcore.xml.DomTest#testExpandingEntityReferencesOff",
25 name: "libcore.xml.DomTest#testExpandingEntityReferencesOn",
32 name: "libcore.xml.DomTest#testIsElementContentWhitespaceWithDeclaration",
38 name: "libcore.xml.DomTest#testNotations",
52 name: "libcore.xml.DeclarationTest#testGetXmlEncoding",
58 name: "libcore.xml.DeclarationTest#testGetXmlStandalone",
64 name: "libcore.xml.DeclarationTest#testGetXmlVersion",
70 name
[all...]
H A Dknownfailures.txt8 name: "org.apache.harmony.regex.tests.java.util.regex.PatternTest#test_bug_40103",
13 name: "libcore.java.lang.PackageTest#testGetPackages",
18 name: "org.apache.harmony.crypto.tests.javax.crypto.func.KeyAgreementFunctionalTest#test_KeyAgreement",
23 name: "libcore.java.io.RandomAccessFileTest#testRandomAccessFileHasCleanupFinalizer",
28 name: "libcore.java.text.DateFormatSymbolsTest#test_getInstance_unknown_locale",
33 name: "libcore.java.text.DecimalFormatTest#test_setMaximumIntegerDigits",
38 name: "libcore.java.net.URLConnectionTest#testConnectViaHttpsReusingConnectionsDifferentFactories",
76 name: "libcore.java.lang.OldRuntimeTest#test_traceMethodCalls"
82 name: "org.apache.harmony.tests.java.util.ResourceBundleTest#test_getBundleLjava_lang_StringLjava_util_LocaleLjava_lang_ClassLoader"
87 name
[all...]
/libcore/ojluni/src/main/java/java/nio/
H A DByteOrder.java39 private String name; field in class:ByteOrder
41 private ByteOrder(String name) { argument
42 this.name = name;
86 return name;
/libcore/ojluni/src/main/java/java/nio/charset/
H A DCodingErrorAction.java45 private String name; field in class:CodingErrorAction
47 private CodingErrorAction(String name) { argument
48 this.name = name;
81 return name;
/libcore/ojluni/src/main/java/javax/net/ssl/
H A DSSLSessionBindingEvent.java38 * event of this type. The event's <code>name</code> field is the
55 * @serial The name to which the object is being bound or unbound
57 private String name; field in class:SSLSessionBindingEvent
63 * @param name the name to which the object is being bound or unbound
66 public SSLSessionBindingEvent(SSLSession session, String name) argument
69 this.name = name;
73 * Returns the name to which the object is being bound, or the name
[all...]
/libcore/ojluni/src/main/java/java/lang/reflect/
H A DReflectPermission.java34 public ReflectPermission(String name) { argument
35 super(name);
38 public ReflectPermission(String name, String actions) { argument
/libcore/ojluni/src/main/java/java/security/spec/
H A DECGenParameterSpec.java39 private String name; field in class:ECGenParameterSpec
43 * generation using a standard (or predefined) name
48 * @param stdName the standard name of the to-be-generated EC
57 this.name = stdName;
61 * Returns the standard or predefined name of the
63 * @return the standard or predefined name.
66 return name;
/libcore/ojluni/src/main/java/java/io/
H A DSerializablePermission.java35 public SerializablePermission(String name) argument
40 public SerializablePermission(String name, String actions) argument
H A DFilenameFilter.java48 * @param name the name of the file.
49 * @return <code>true</code> if and only if the name should be
52 boolean accept(File dir, String name); argument
/libcore/ojluni/src/main/java/java/lang/
H A DRuntimePermission.java36 public RuntimePermission(String name) argument
41 public RuntimePermission(String name, String actions) argument
/libcore/ojluni/src/main/java/java/security/
H A DSecurityPermission.java34 public SecurityPermission(String name) { super(""); } argument
35 public SecurityPermission(String name, String actions) { super("", ""); } argument
/libcore/ojluni/src/main/java/java/sql/
H A DSQLPermission.java36 public SQLPermission(String name) { argument
40 public SQLPermission(String name, String actions) { argument
H A DDriverPropertyInfo.java40 * name and value. The <code>description</code> and <code>choices</code>
44 * @param name the name of the property
47 public DriverPropertyInfo(String name, String value) { argument
48 this.name = name;
53 * The name of the property.
55 public String name; field in class:DriverPropertyInfo
/libcore/ojluni/src/main/java/sun/nio/cs/
H A DThreadLocalCoders.java51 abstract Object create(Object name); argument
60 abstract boolean hasName(Object ob, Object name); argument
62 Object forName(Object name) { argument
72 if (hasName(ob, name)) {
81 Object ob = create(name);
90 boolean hasName(Object ob, Object name) {
91 if (name instanceof String)
92 return (((CharsetDecoder)ob).charset().name().equals(name));
93 if (name instanceo
107 decoderFor(Object name) argument
131 encoderFor(Object name) argument
[all...]
/libcore/ojluni/src/main/java/java/text/
H A DEntryPair.java43 * is the contracting character name and value is its collation
52 public EntryPair(String name, int value) { argument
53 this(name, value, true);
55 public EntryPair(String name, int value, boolean fwd) { argument
56 this.entryName = name;
/libcore/support/src/test/java/org/apache/harmony/security/tests/support/
H A DSignerStub.java44 * Constructor, sets given name
46 * @param name
48 public SignerStub(String name) { argument
49 super(name);
53 * Constructor, sets given name and scope
55 * @param name
59 public SignerStub(String name, IdentityScope scope) argument
61 super(name, scope);
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);
/libcore/luni/src/main/java/org/apache/harmony/xml/dom/
H A DEntityReferenceImpl.java34 private String name; field in class:EntityReferenceImpl
36 EntityReferenceImpl(DocumentImpl document, String name) { argument
38 this.name = name;
43 return name;
/libcore/ojluni/src/main/java/sun/security/x509/
H A DX509AttributeName.java46 * @param name the attribute name.
48 public X509AttributeName(String name) { argument
49 int i = name.indexOf(SEPARATOR);
51 prefix = name;
53 prefix = name.substring(0, i);
54 suffix = name.substring(i + 1);
59 * Return the prefix of the name.
66 * Return the suffix of the name.
H A DDNSName.java37 * [RFC2459] When the subjectAltName extension contains a domain name service
38 * label, the domain name MUST be stored in the dNSName (an IA5String).
39 * The name MUST be in the "preferred name syntax," as specified by RFC
42 * addition, while the string " " is a legal domain name, subjectAltName
52 private String name; field in class:DNSName
65 name = derValue.getIA5String();
69 * Create the DNSName object with the specified name.
71 * @param name the DNSName.
72 * @throws IOException if the name i
74 DNSName(String name) argument
[all...]
/libcore/luni/src/main/java/org/apache/harmony/xml/parsers/
H A DDocumentBuilderFactoryImpl.java38 public Object getAttribute(String name) throws IllegalArgumentException { argument
39 throw new IllegalArgumentException(name);
43 public boolean getFeature(String name) throws ParserConfigurationException { argument
44 if (name == null) {
45 throw new NullPointerException("name == null");
48 if (NAMESPACES.equals(name)) {
50 } else if (VALIDATION.equals(name)) {
53 throw new ParserConfigurationException(name);
84 public void setAttribute(String name, Object value) argument
86 throw new IllegalArgumentException(name);
90 setFeature(String name, boolean value) argument
[all...]
/libcore/luni/src/test/java/libcore/java/nio/charset/
H A DCharsetTest.java26 assertEquals("UTF-8", cs.name());
28 // Make sure that caching correctly handles nonstandard name.
34 private final String name; field in class:CharsetTest.CheckerThread
37 CheckerThread(String name) { argument
38 this.name = name;
44 Charset cs = Charset.forName(name);
45 if (!name.equals(cs.name())) {

Completed in 741 milliseconds

1234567891011>>