Searched refs:getValue (Results 1 - 25 of 142) sorted by relevance

123456

/libcore/luni/src/main/java/java/util/zip/
H A DChecksum.java30 public long getValue(); method in interface:Checksum
H A DAdler32.java36 public long getValue() { method in class:Adler32
H A DCRC32.java37 public long getValue() { method in class:CRC32
/libcore/luni/src/main/java/org/xml/sax/
H A DAttributeList.java43 * String value = atts.getValue(i);
57 * String identifier = atts.getValue("id");
58 * String label = atts.getValue("label");
149 * @see #getValue(java.lang.String)
151 public abstract String getValue (int i);
182 * getValue(int).</p>
190 * @see #getValue(int) method in interface:AttributeList
192 public abstract String getValue (String name);
150 public abstract String getValue (int i); method in interface:AttributeList
H A DAttributes.java90 * @see #getValue(int)
167 public abstract String getValue (int index);
232 * <p>See {@link #getValue(int) getValue(int)} for a description
241 public abstract String getValue (String uri, String localName);
247 * <p>See {@link #getValue(int) getValue(int)} for a description
255 public abstract String getValue (String qName);
166 public abstract String getValue (int index); method in interface:Attributes
239 public abstract String getValue (String uri, String localName); method in interface:Attributes
253 public abstract String getValue (String qName); method in interface:Attributes
/libcore/luni/src/main/java/java/text/
H A DAnnotation.java56 public Object getValue() { method in class:Annotation
/libcore/luni/src/main/java/org/w3c/dom/
H A DAttr.java190 public String getValue(); method in interface:Attr
/libcore/luni/src/test/java/tests/api/org/xml/sax/helpers/
H A DAttributeListImplTest.java76 assertEquals(multi.getValue(i), attrs.getValue(i));
95 assertEquals("false", multi.getValue(3));
102 assertEquals("false", multi.getValue(4));
108 assertEquals(null, multi.getValue(5));
116 assertEquals("xyz", multi.getValue(0));
170 assertEquals("abc", multi.getValue(0));
171 assertEquals("xyz", multi.getValue(1));
172 assertEquals("42", multi.getValue(2));
175 assertEquals(null, multi.getValue(
[all...]
H A DAttributesImplTest.java134 assertEquals("abc", multi.getValue(0));
135 assertEquals("xyz", multi.getValue(1));
136 assertEquals("42", multi.getValue(2));
137 assertEquals("1-2-3-4", multi.getValue(3));
138 assertEquals("1-2-3-4", multi.getValue(4));
141 assertEquals(null, multi.getValue(-1));
142 assertEquals(null, multi.getValue(5));
203 assertEquals("abc", multi.getValue("http://some.uri", "foo"));
204 assertEquals("xyz", multi.getValue("http://some.uri", "bar"));
205 assertEquals("42", multi.getValue("htt
[all...]
/libcore/luni/src/test/java/libcore/java/util/zip/
H A DOldAndroidChecksumTest.java45 assertEquals(adler.getValue(), expected);
52 assertEquals(adler.getValue(), expected);
60 assertEquals(crc.getValue(), expected);
67 assertEquals(crc.getValue(), expected);
86 long arrayChecksum = adler.getValue();
92 " actual: " + adler.getValue(), arrayChecksum, adler.getValue());
/libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/spec/
H A DPSourceTest.java51 0, PSource.PSpecified.DEFAULT.getValue().length);
58 .getValue()[0]);
62 * getValue() method testing. Tests that returned array is equal to the
70 byte[] result = ps.getValue();
76 assertFalse("The change of returned by getValue() array "
78 result[0] == ps.getValue()[0]);
/libcore/luni/src/main/java/java/util/
H A DAbstractMap.java65 value = copyFrom.getValue();
72 public V getValue() { method in class:AbstractMap.SimpleImmutableEntry
92 && (value == null ? entry.getValue() == null : value
93 .equals(entry.getValue()));
130 value = copyFrom.getValue();
137 public V getValue() { method in class:AbstractMap.SimpleEntry
155 && (value == null ? entry.getValue() == null : value
156 .equals(entry.getValue()));
217 if (value.equals(it.next().getValue())) {
223 if (it.next().getValue()
[all...]
H A DMapEntry.java59 && (value == null ? entry.getValue() == null : value
60 .equals(entry.getValue()));
69 public V getValue() { method in class:MapEntry
/libcore/luni/src/test/java/libcore/net/http/
H A DRawHeadersTest.java50 assertEquals("value1", h2.getValue(0));
52 assertEquals("value2", h2.getValue(1));
/libcore/support/src/test/java/tests/util/
H A DCallVerificationStack.java212 Boolean value = (Boolean) wrapper.getValue();
223 Character value = (Character) wrapper.getValue();
234 Double value = (Double) wrapper.getValue();
245 Float value = (Float) wrapper.getValue();
256 Integer value = (Integer) wrapper.getValue();
267 Long value = (Long) wrapper.getValue();
278 Short value = (Short) wrapper.getValue();
349 public Object getValue() { method in class:CallVerificationStack.BaseTypeWrapper
/libcore/luni/src/main/java/org/xml/sax/helpers/
H A DAttributeListImpl.java122 addAttribute(atts.getName(i), atts.getType(i), atts.getValue(i));
246 * @see org.xml.sax.AttributeList#getValue(int) method in class:AttributeListImpl
248 public String getValue(int i) {
276 * @see org.xml.sax.AttributeList#getValue(java.lang.String) method in class:AttributeListImpl
278 public String getValue(String name) {
279 return getValue(names.indexOf(name));
/libcore/luni/src/main/java/org/apache/harmony/xml/
H A DExpatAttributes.java71 public String getValue(int index) { method in class:ExpatAttributes
116 public String getValue(String uri, String localName) { method in class:ExpatAttributes
127 return getValue(pointer, uri, localName);
130 public String getValue(String qName) { method in class:ExpatAttributes
147 private static native String getValue(int attributePointer, String uri, String localName); method in class:ExpatAttributes
/libcore/luni/src/test/java/tests/api/org/xml/sax/ext/
H A DAttributes2ImplTest.java78 assertEquals(multi.getValue(i), attrs.getValue(i));
95 assertEquals(multi.getValue(i), attrs.getValue(i));
128 assertEquals("abc", attrs.getValue(0));
143 assertEquals("abc", attrs.getValue(1));
161 assertEquals(multi.getValue(0), attrs.getValue(0));
169 assertEquals(multi.getValue(2), attrs.getValue(
[all...]
/libcore/luni/src/test/java/libcore/java/util/jar/
H A DOldAttributesTest.java38 a.getValue("IllegalArgumentException expected");
63 .getValue(new Attributes.Name("1")));
65 .getValue(new Attributes.Name("0")));
/libcore/luni/src/main/java/javax/crypto/spec/
H A DPSource.java101 public byte[] getValue() { method in class:PSource.PSpecified
/libcore/luni/src/main/java/org/apache/harmony/security/x509/tsp/
H A DPKIFailureInfo.java106 public int getValue() { method in class:PKIFailureInfo
/libcore/luni/src/main/java/org/apache/harmony/xml/dom/
H A DAttrImpl.java85 return getValue();
101 public String getValue() { method in class:AttrImpl
/libcore/dom/src/test/java/org/w3c/domts/level1/core/
H A Dattrentityreplacement.java31 * The "getValue()" method will return the value of the
36 * returned by the "getValue()" method. The value should
78 value = streetAttr.getValue();
H A Delementremoveattributenode.java74 removedValue = removedAttr.getValue();
H A Delementreplaceexistingattributegevalue.java77 value = streetAttr.getValue();

Completed in 626 milliseconds

123456