Searched refs:value (Results 151 - 175 of 408) sorted by relevance

1234567891011>>

/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/org/xml/sax/support/
H A DDoNothingXMLReader.java73 public void setFeature(String name, boolean value) { argument
76 public void setProperty(String name, Object value) { argument
H A DNoAccessXMLReader.java73 public void setFeature(String name, boolean value) { argument
76 public void setProperty(String name, Object value) { argument
H A DNoInstanceXMLReader.java76 public void setFeature(String name, boolean value) { argument
79 public void setProperty(String name, Object value) { argument
H A DNoSubclassXMLReader.java73 public void setFeature(String name, boolean value) { argument
76 public void setProperty(String name, Object value) { argument
/libcore/luni/src/main/java/java/util/
H A DMap.java23 * in which each key is mapped to a single value. The class of the objects
29 * the key/value pairs.
34 * {@code Map.Entry} is a key/value mapping contained in a {@code Map}.
40 * same key and value.
58 * Returns the value.
60 * @return the value
66 * equal return the same value for this method.
74 * Sets the value of this entry to the specified value, replacing any
75 * existing value
112 containsValue(Object value) argument
193 put(K key, V value) argument
[all...]
H A DLinkedHashMap.java39 * change the order of the entries. Changes in the value of an entry are not structural changes.
154 LinkedEntry(K key, V value, int hash, HashMapEntry<K, V> next, argument
156 super(key, value, hash, next);
184 @Override void addNewEntry(K key, V value, int hash, int index) { argument
196 key, value, hash, table[index], header, oldTail);
200 @Override void addNewEntryForNullKey(V value) { argument
212 null, value, 0, null, header, oldTail);
220 K key, V value, int hash, HashMapEntry<K, V> next) {
224 = new LinkedEntry<K,V>(key, value, hash, next, header, oldTail);
229 * Returns the value o
219 constructorNewEntry( K key, V value, int hash, HashMapEntry<K, V> next) argument
300 containsValue(Object value) argument
[all...]
/libcore/luni/src/main/java/javax/xml/transform/
H A DTransformer.java117 * @param value The value object. This can be any valid Java object. It is
121 * @throws NullPointerException If value is null.
123 public abstract void setParameter(String name, Object value); argument
128 * <p>This method does not return a default parameter value, which
143 * {@link #setParameter(String name, Object value)} should be used when the
146 * {@link #setParameter(String name, Object value)}.
153 * the existing parameter is set to the new value.</p>
170 * <p>If the resolver argument is null, the URIResolver value will
193 * previously set are removed, and the value wil
283 setOutputProperty(String name, String value) argument
[all...]
/libcore/luni/src/main/java/org/xml/sax/
H A DXMLReader.java71 * Look up the value of a feature flag.
75 * temporarily be unable to return its value.
118 * @return The current value of the feature (true or false).
120 * value can't be assigned or retrieved.
123 * cannot determine its value at this time.
131 * Set the value of a feature flag.
134 * possible for an XMLReader to expose a feature value but
135 * to be unable to change the current value.
145 * @param value The requested value o
152 setFeature(String name, boolean value) argument
210 setProperty(String name, Object value) argument
[all...]
/libcore/luni/src/main/java/java/lang/
H A DInteger.java38 * The int value represented by this Integer
40 private final int value; field in class:Integer
43 * Constant for the maximum {@code int} value, 2<sup>31</sup>-1.
48 * Constant for the minimum {@code int} value, -2<sup>31</sup>.
63 * The entries whose value is -1 are never referenced.
83 * value.
85 * @param value
86 * the primitive integer value to store in the new instance.
88 public Integer(int value) { argument
89 this.value
[all...]
H A DSuppressWarnings.java44 public String[] value(); method in interface:SuppressWarnings
/libcore/luni/src/main/java/java/util/concurrent/atomic/
H A DAtomicInteger.java11 * An {@code int} value that may be updated atomically. See the
33 (AtomicInteger.class.getDeclaredField("value"));
37 private volatile int value; field in class:AtomicInteger
40 * Creates a new AtomicInteger with the given initial value.
42 * @param initialValue the initial value
45 value = initialValue;
49 * Creates a new AtomicInteger with initial value {@code 0}.
55 * Gets the current value.
57 * @return the current value
60 return value;
[all...]
H A DAtomicLong.java11 * A {@code long} value that may be updated atomically. See the
47 (AtomicLong.class.getDeclaredField("value"));
51 private volatile long value; field in class:AtomicLong
54 * Creates a new AtomicLong with the given initial value.
56 * @param initialValue the initial value
59 value = initialValue;
63 * Creates a new AtomicLong with initial value {@code 0}.
69 * Gets the current value.
71 * @return the current value
74 return value;
[all...]
/libcore/luni/src/test/java/tests/support/
H A DDatabaseCreator.java106 + "value CHAR(200), PRIMARY KEY(id), "
113 + "value CHAR(200), PRIMARY KEY(id), "
342 String value = DatabaseCreator.defaultString + id;
345 + value + "', " + id + ", " + id + ")";
354 double value = id + DatabaseCreator.defaultDouble;
360 + "', " + value + ", " + value + "," + value + ", " + value
361 + ", " + value
[all...]
/libcore/support/src/test/java/tests/resources/Package/
H A Dhyts_package.jar ... annotation.Annotation { public abstract java.lang.String value () } a/b/package-info.class package-info
/libcore/dom/src/test/java/org/w3c/domts/level1/core/
H A Dattrdefaultvalue.java31 * If there is not an explicit value assigned to an attribute
33 * declaration includes a default value, then that default
34 * value is the attributes default value.
37 * value. That value should be the value given the
80 String value;
86 value = streetAttr.getNodeValue();
87 assertEquals("attrDefaultValueAssert", "Yes", value);
[all...]
H A Ddocumentcreateelementdefaultattr.java79 String value;
87 value = child.getNodeValue();
88 assertEquals("attrValue", "Yes", value);
H A Dhc_attrchildnodes1.java64 String value;
75 value = textNode.getNodeValue();
76 assertEquals("child1IsYes", "Yes", value);
H A Dhc_attrfirstchild.java64 String value;
74 value = textNode.getNodeValue();
75 assertEquals("child1IsYes", "Yes", value);
H A Dhc_attrgetvalue2.java31 * Checks the value of an attribute that contains entity references.
65 String value;
91 value = titleAttr.getValue();
92 assertEquals("attrValue1", "\u03b1Y\u03b1", value); // android-changed: GREEK LOWER CASE ALPHA
H A Dhc_attrlastchild.java64 String value;
74 value = textNode.getNodeValue();
75 assertEquals("child1IsYes", "Yes", value);
H A Dnamednodemapremovenameditemgetvalue.java32 * is an Attr node with a default value it is immediately
40 * it has a default value of "Yes", that value should
41 * immediately be the attributes value.
81 String value;
91 value = streetAttr.getValue();
92 assertEquals("namednodemapRemoveNamedItemGetValueAssert", "Yes", value);
/libcore/dom/src/test/java/org/w3c/domts/level2/core/
H A DimportNode02.java38 * Create a CDATASection node with value being the string "this is CDATASection data" in
40 * this document. Method should return a CDATASection node whose value matches
76 String value;
86 value = aNode.getNodeValue();
87 assertEquals("nodeValue", "this is CDATASection data", value);
H A DimportNode03.java38 * Create a comment node with value being the string "this is a comment" in
40 * this document. Method should return a comment node whose value matches
77 String value;
87 value = aNode.getNodeValue();
88 assertEquals("nodeValue", "this is a comment", value);
H A DimportNode06.java77 String value;
90 value = child.getNodeValue();
91 assertEquals("nodeValue", "27 South Road. Dallas, texas 98556", value);
H A DimportNode15.java38 * Create a text node with value being the string "this is text data" in
40 * this document. Method should return a text node whose value matches
77 String value;
87 value = aNode.getNodeValue();
88 assertEquals("nodeValue", "this is text data", value);

Completed in 1800 milliseconds

1234567891011>>