Searched defs:name (Results 151 - 175 of 500) sorted by relevance

1234567891011>>

/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/
H A DMockServerSocketChannel.java55 public <T> ServerSocketChannel setOption(SocketOption<T> name, T value) throws IOException { argument
70 public <T> T getOption(SocketOption<T> name) throws IOException { argument
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/regex/
H A DPattern2Test.java827 * p = Pattern.compile("\\p{"+UBlocks[i].name+"}");
838 * p = Pattern.compile("\\P{"+UBlocks[i].name+"}");
850 p = Pattern.compile("\\p{In" + UBlocks[i].name + "}");
854 assertFalse(UBlocks[i].name, m.matches());
858 assertTrue(UBlocks[i].name, m.matches());
862 assertFalse(UBlocks[i].name, m.matches());
865 p = Pattern.compile("\\P{In" + UBlocks[i].name + "}");
869 assertTrue(UBlocks[i].name, m.matches());
873 assertFalse(UBlocks[i].name, m.matches());
877 assertTrue(UBlocks[i].name,
1080 UBInfo(int low, int high, String name) argument
1086 public String name; field in class:Pattern2Test.UBInfo
[all...]
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/org/xml/sax/support/
H A DDoNothingXMLReader.java47 public boolean getFeature(String name) { argument
51 public Object getProperty(String name) { argument
73 public void setFeature(String name, boolean value) { argument
76 public void setProperty(String name, Object value) { argument
H A DMockFilter.java49 public boolean getFeature(String name) throws SAXNotRecognizedException, argument
51 return features.contains(name);
55 public Object getProperty(String name) throws SAXNotRecognizedException, argument
57 return properties.get(name);
61 public void setFeature(String name, boolean value) { argument
63 features.add(name);
65 features.remove(name);
70 public void setProperty(String name, Object value) throws SAXNotRecognizedException, argument
73 properties.remove(name);
75 properties.put(name, valu
[all...]
H A DNoAccessXMLReader.java47 public boolean getFeature(String name) { argument
51 public Object getProperty(String name) { argument
73 public void setFeature(String name, boolean value) { argument
76 public void setProperty(String name, Object value) { argument
H A DNoSubclassXMLReader.java47 public boolean getFeature(String name) { argument
51 public Object getProperty(String name) { argument
73 public void setFeature(String name, boolean value) { argument
76 public void setProperty(String name, Object value) { argument
/libcore/luni/src/main/java/javax/xml/parsers/
H A DSAXParser.java41 * of transition, this class continues to support the same name
443 * @param name The name of the property to be set.
447 * not recognize the property name.
449 * recognizes the property name but doesn't support the property.
453 public abstract void setProperty(String name, Object value) argument
460 * @param name The name of the property to be retrieved.
464 * not recognize the property name.
466 * recognizes the property name bu
470 getProperty(String name) argument
[all...]
H A DSAXParserFactory.java203 * @param name The name of the feature to be set.
209 * not recognize the property name.
211 * recognizes the property name but doesn't support the
213 * @throws NullPointerException If the <code>name</code> parameter is null.
217 public abstract void setFeature(String name, boolean value) argument
226 * @param name The name of the property to be retrieved.
231 * @exception SAXNotRecognizedException When the underlying XMLReader does not recognize the property name.
232 * @exception SAXNotSupportedException When the underlying XMLReader recognizes the property name bu
236 getFeature(String name) argument
[all...]
/libcore/luni/src/main/java/javax/xml/transform/
H A DTransformer.java104 * <p>Pass a qualified name as a two-part string, the namespace URI
105 * enclosed in curly braces ({}), followed by the local name. If the
106 * name has a null URL, the String only contain the local name. An
108 * first character of the name is a '{' character.</p>
109 * <p>For example, if a URI and local name were obtained from an element
112 * then the qualified name would be "{http://xyz.foo.com/yada/baz.html}foo".
115 * @param name The name of the parameter, which may begin with a
123 public abstract void setParameter(String name, Objec argument
135 getParameter(String name) argument
283 setOutputProperty(String name, String value) argument
302 getOutputProperty(String name) argument
[all...]
H A DTransformerFactory.java257 * @param name Feature name.
262 * @throws NullPointerException If the <code>name</code> parameter is null.
264 public abstract void setFeature(String name, boolean value) argument
278 * @param name Feature name.
282 * @throws NullPointerException If the <code>name</code> parameter is null.
284 public abstract boolean getFeature(String name); argument
293 * @param name The name o
296 setAttribute(String name, Object value) argument
307 getAttribute(String name) argument
[all...]
/libcore/luni/src/main/java/javax/xml/validation/
H A DSchemaFactory.java53 * <h2><a name="schemaLanguage"></a>Schema Language</h2>
129 * as a class name. The method will try to
249 * <p>The feature name is any fully-qualified URI. It is
250 * possible for a {@link SchemaFactory} to recognize a feature name but
256 * @param name The feature name, which is a non-null fully-qualified URI.
261 * {@link SchemaFactory} recognizes the feature name but
264 * if the name parameter is null.
267 public boolean getFeature(String name) throws SAXNotRecognizedException, SAXNotSupportedException { argument
269 if (name
316 setFeature(String name, boolean value) argument
343 setProperty(String name, Object object) argument
374 getProperty(String name) argument
[all...]
H A DValidator.java321 * <p>The feature name is any fully-qualified URI. It is
322 * possible for a {@link Validator} to recognize a feature name but
330 * @param name The feature name, which is a non-null fully-qualified URI.
335 * {@link Validator} recognizes the feature name but
338 * When the name parameter is null.
341 public boolean getFeature(String name) throws SAXNotRecognizedException, SAXNotSupportedException { argument
342 if (name == null) {
343 throw new NullPointerException("name == null");
345 throw new SAXNotRecognizedException(name);
376 setFeature(String name, boolean value) argument
406 setProperty(String name, Object object) argument
439 getProperty(String name) argument
[all...]
H A DValidatorHandler.java329 * <p>The feature name is any fully-qualified URI. It is
330 * possible for a {@link ValidatorHandler} to recognize a feature name but
338 * @param name The feature name, which is a non-null fully-qualified URI.
343 * {@link ValidatorHandler} recognizes the feature name but
346 * When the name parameter is null.
349 public boolean getFeature(String name) throws SAXNotRecognizedException, SAXNotSupportedException { argument
350 if (name == null) {
351 throw new NullPointerException("name == null");
353 throw new SAXNotRecognizedException(name);
384 setFeature(String name, boolean value) argument
415 setProperty(String name, Object object) argument
448 getProperty(String name) argument
[all...]
/libcore/luni/src/main/java/libcore/reflect/
H A DAnnotationMember.java32 * It consists of name and value, supplemented with element
90 protected final String name; field in class:AnnotationMember
99 * Creates a new element with specified name and value.
102 * @param name element name, must not be null
108 public AnnotationMember(String name, Object val) { argument
109 this.name = name;
122 * @param name element name, mus
129 AnnotationMember(String name, Object val, Class type, Method m) argument
[all...]
H A DTypeVariableImpl.java30 private final String name; field in class:TypeVariableImpl
52 * @param name type variable name
55 TypeVariableImpl(D genericDecl, String name, ListOfTypes bounds) { argument
57 this.name = name;
65 * @param name type variable name
67 TypeVariableImpl(D genericDecl, String name) { argument
68 this.name
72 findFormalVar(GenericDeclaration layer, String name) argument
[all...]
/libcore/luni/src/main/java/org/xml/sax/
H A DContentHandler.java203 * <p>This event allows up to three name components for each
208 * <li>the local name; and</li>
209 * <li>the qualified (prefixed) name.</li>
218 * <li>the Namespace URI and local name are required when
222 * <li>the qualified name is required when the namespace-prefixes property
242 * @param localName the local name (without prefix), or the
245 * @param qName the qualified name (with prefix), or the
275 * @param localName the local name (without prefix), or the
278 * @param qName the qualified XML name (with prefix), or the
408 * @param name th
415 skippedEntity(String name) argument
[all...]
H A DXMLReader.java22 * <p><strong>Note:</strong> despite its name, this interface does
73 * <p>The feature name is any fully-qualified URI. It is
74 * possible for an XMLReader to recognize a feature name but
117 * @param name The feature name, which is a fully-qualified URI.
122 * XMLReader recognizes the feature name but
126 public boolean getFeature (String name)
133 * <p>The feature name is any fully-qualified URI. It is
144 * @param name The feature name, whic
125 getFeature(String name) argument
152 setFeature(String name, boolean value) argument
181 getProperty(String name) argument
210 setProperty(String name, Object value) argument
[all...]
/libcore/luni/src/main/java/org/xml/sax/helpers/
H A DAttributeListImpl.java37 * public void startElement (String name, AttributeList atts)
134 * @param name The attribute name.
140 public void addAttribute(String name, String type, String value) {
141 names.add(name);
158 * @param name The attribute name.
161 public void removeAttribute(String name) {
162 int i = names.indexOf(name);
207 * Get the name o
139 addAttribute(String name, String type, String value) argument
160 removeAttribute(String name) argument
263 getType(String name) argument
276 getValue(String name) argument
[all...]
/libcore/luni/src/test/java/dalvik/system/
H A DDelegateLastClassLoaderTest.java105 private static String callMethod(ClassLoader cl, String name) throws Exception { argument
109 Method method = clazz.getMethod(name);
/libcore/luni/src/test/java/libcore/java/lang/reflect/annotations/
H A DAnnotationsTest.java75 private static Object defaultValue(String name) throws NoSuchMethodException { argument
76 return HasDefaultsAnnotation.class.getMethod(name).getDefaultValue();
/libcore/luni/src/test/java/libcore/java/net/
H A DOldURLClassLoaderTest.java171 new URL("file://new/package/name/"),
174 String packageName = "new.package.name";
204 public Package definePackage(String name, argument
208 return super.definePackage(name, man, url);
211 public Class<?> findClass(String name) argument
213 return super.findClass(name);
/libcore/luni/src/test/java/libcore/java/util/beans/
H A DPropertyChangeSupportTest.java230 listenerToAll.name = "listenerToAll";
232 listenerToA.name = "listenerToA";
268 String name = "EventLog"; field in class:PropertyChangeSupportTest.EventLog
274 return name;
/libcore/luni/src/test/java/tests/java/sql/
H A DSelectFunctionalityTest.java497 private void func(String name, String query, int expected) { argument
503 res = result.getInt(name);
509 resDouble = Double.parseDouble(result.getString(name));
/libcore/ojluni/src/main/java/java/io/
H A DFileOutputStream.java90 * specified name. A new <code>FileDescriptor</code> object is
94 * method is called with <code>name</code> as its argument.
100 * @param name the system-dependent filename
109 public FileOutputStream(String name) throws FileNotFoundException { argument
110 this(name != null ? new File(name) : null, false);
115 * name. If the second argument is <code>true</code>, then
121 * method is called with <code>name</code> as its argument.
127 * @param name the system-dependent file name
139 FileOutputStream(String name, boolean append) argument
276 open0(String name, boolean append) argument
285 open(String name, boolean append) argument
[all...]
H A DObjectStreamField.java47 /** field name */
48 private final String name; field in class:ObjectStreamField
64 * @param name the name of the serializable field
67 public ObjectStreamField(String name, Class<?> type) { argument
68 this(name, type, false);
73 * given name and type. If unshared is false, values of the represented
81 * @param name field name
88 public ObjectStreamField(String name, Clas argument
103 ObjectStreamField(String name, String signature, boolean unshared) argument
[all...]

Completed in 540 milliseconds

1234567891011>>