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

1234567891011>>

/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/test/java/tests/api/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/lang/
H A DSuppressWarnings.java44 public String[] value(); method in interface:SuppressWarnings
/libcore/luni/src/main/java/java/util/
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
304 containsValue(Object value) argument
[all...]
/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);
H A DsetNamedItemNS03.java39 * "prefix:newAttr" and value "newValue".
77 String value;
87 value = retnode.getNodeValue();
88 assertEquals("throw_Equals", "newValue", value);
H A DsetNamedItemNS05.java39 * and qualifiedName "dmstc:domestic" whose value is "newVal".
42 * by namespaceURI and qualifiedName from above,whose value is "Yes".
77 String value;
85 value = retnode.getNodeValue();
86 assertEquals("throw_Equals", "Yes", value);
/libcore/luni/src/main/java/java/nio/
H A DByteBuffer.java288 * @return a negative value if this is less than {@code other}; 0 if this
289 * equals to {@code other}; a positive value if this is greater
814 * @param value
822 public abstract ByteBuffer putChar(char value); argument
833 * @param value
841 public abstract ByteBuffer putChar(int index, char value); argument
849 * @param value
857 public abstract ByteBuffer putDouble(double value); argument
868 * @param value
876 public abstract ByteBuffer putDouble(int index, double value); argument
892 putFloat(float value) argument
911 putFloat(int index, float value) argument
927 putInt(int value) argument
946 putInt(int index, int value) argument
962 putLong(long value) argument
981 putLong(int index, long value) argument
997 putShort(short value) argument
1016 putShort(int index, short value) argument
[all...]

Completed in 480 milliseconds

1234567891011>>