Searched defs:name (Results 1 - 25 of 502) sorted by relevance

1234567891011>>

/libcore/ojluni/src/main/java/java/net/
H A DProtocolFamily.java36 * Returns the name of the protocol family.
38 * @return the name of the protocol family
40 String name(); method in interface:ProtocolFamily
H A DNetPermission.java36 public NetPermission(String name) argument
41 public NetPermission(String name, String actions) argument
H A DSocketOption.java47 * Returns the name of the socket option.
49 * @return the name of the socket option
51 String name(); method in interface:SocketOption
/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/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
/libcore/ojluni/src/main/java/java/util/
H A DPropertyPermission.java35 public PropertyPermission(String name, String actions) { super("", ""); } argument
/libcore/ojluni/src/main/java/jdk/net/
H A DNetworkPermission.java37 public NetworkPermission(String name) { argument
41 public NetworkPermission(String name, String actions) { argument
/libcore/ojluni/src/main/java/java/lang/
H A DRuntimePermission.java38 public RuntimePermission(String name) argument
40 super(name);
43 public RuntimePermission(String name, String actions) argument
45 super(name, actions);
/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/nio/file/attribute/
H A DAttributeView.java40 * Returns the name of the attribute view.
42 * @return the name of the attribute view
44 String name(); method in interface:AttributeView
H A DFileAttribute.java42 * Returns the attribute name.
44 * @return The attribute name
46 String name(); method in interface:FileAttribute
/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/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/ojluni/src/main/java/java/util/logging/
H A DLoggingPermission.java35 public LoggingPermission(String name, String actions) throws IllegalArgumentException { argument
/libcore/ojluni/src/main/java/javax/net/ssl/
H A DSSLPermission.java36 public SSLPermission(String name) argument
41 public SSLPermission(String name, String actions) argument
/libcore/ojluni/src/main/java/javax/security/auth/
H A DAuthPermission.java34 public AuthPermission(String name) { super(""); } argument
36 public AuthPermission(String name, String actions) { super("", ""); } argument
/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/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/luni/src/main/java/org/w3c/dom/
H A DDOMConfiguration.java326 * <code>"wf-invalid-character-in-node-name"</code>, with a
362 * @param name The name of the parameter to set.
370 * NOT_FOUND_ERR: Raised when the parameter name is not recognized.
371 * <br> NOT_SUPPORTED_ERR: Raised when the parameter name is recognized
374 * name is incompatible with the expected value type.
376 public void setParameter(String name, argument
382 * @param name The name of the parameter.
387 * NOT_FOUND_ERR: Raised when the parameter name i
389 getParameter(String name) argument
402 canSetParameter(String name, Object value) argument
[all...]
/libcore/luni/src/main/java/org/xml/sax/
H A DAttributeList.java39 * public void startElement (String name, AttributeList atts) {
41 * String name = atts.getName(i);
56 * public void startElement (String name, AttributeList atts) {
96 * Return the name of an attribute in this list (by position).
103 * <p>If the attribute name has a namespace prefix, the prefix
107 * @return The name of the indexed attribute, or null
162 * Return the type of an attribute in the list (by name).
167 * <p>If the attribute name has a namespace prefix in the document,
170 * @param name The name o
173 getType(String name) argument
190 getValue(String name) argument
[all...]
H A DDTDHandler.java70 * @param name The notation name.
80 public abstract void notationDecl (String name, argument
89 * <p>Note that the notation name corresponds to a notation
101 * @param name The unparsed entity's name.
105 * @param notationName The name of the associated notation.
109 public abstract void unparsedEntityDecl (String name, argument
/libcore/luni/src/main/java/org/xml/sax/ext/
H A DEntityResolver2.java116 * @param name Identifies the document root element. This name comes
133 public InputSource getExternalSubset (String name, String baseURI) argument
162 * @param name Identifies the external entity being resolved.
163 * Either "[dtd]" for the external subset, or a name starting
164 * with "%" to indicate a parameter entity, or else the name of
191 String name,
190 resolveEntity( String name, String publicId, String baseURI, String systemId ) argument
/libcore/luni/src/test/java/libcore/java/text/
H A DOldFormatFieldTest.java28 public MockFormatField(String name) { argument
29 super(name);

Completed in 5930 milliseconds

1234567891011>>