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

1234567891011

/dalvik/libcore/archive/src/main/java/java/util/zip/
H A DChecksum.java31 public long getValue(); method in interface:Checksum
/dalvik/tests/078-polymorphic-virtual/src/
H A DBase.java29 public int getValue() { method in class:Base
H A DMain.java36 System.out.println(derived1.getValue());
37 System.out.println(derived2.getValue());
38 System.out.println(derived3.getValue());
/dalvik/libcore/xml/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");
148 * @see #getValue(java.lang.String)
150 public abstract String getValue (int i);
181 * getValue(int).</p>
189 * @see #getValue(int) method in interface:AttributeList
191 public abstract String getValue (String name);
149 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
/dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/x509/
H A DX509Extension.java35 public ASN1OctetString getValue() method in class:X509Extension
44 return this.getValue().hashCode();
48 return ~this.getValue().hashCode();
61 return other.getValue().equals(this.getValue())
H A DCRLReason.java86 super(reason.getValue().intValue());
/dalvik/libcore/archive/src/test/java/org/apache/harmony/archive/tests/java/util/zip/
H A DAdler32Test.java42 assertEquals("Constructor of adl32 failed", 1, adl.getValue());
46 * @tests java.util.zip.Adler32#getValue()
51 method = "getValue",
55 // test methods of java.util.zip.getValue()
59 1, adl.getValue());
63 // System.out.print("value of adl"+adl.getValue());
67 131074, adl.getValue());
70 .getValue());
74 // System.out.print("value of adl " + adl.getValue());
78 65537L, adl.getValue());
[all...]
H A DCRC32Test.java42 assertEquals("Constructor of CRC32 failed", 0, crc.getValue());
46 * @tests java.util.zip.CRC32#getValue()
51 method = "getValue",
55 // test methods of java.util.zip.crc32.getValue()
58 "getValue() should return a zero as a result of constructing a CRC32 instance",
59 0, crc.getValue());
63 // System.out.print("value of crc " + crc.getValue());
68 4278190080L, crc.getValue());
73 // System.out.print("value of crc"+crc.getValue());
78 1295764014L, crc.getValue());
[all...]
/dalvik/dx/src/com/android/dx/rop/cst/
H A DCstBoolean.java72 return getValue() ? "boolean{true}" : "boolean{false}";
88 return getValue() ? "true" : "false";
96 public boolean getValue() { method in class:CstBoolean
/dalvik/tests/064-field-access/src/
H A DMain.java51 public Object getValue(Field field, Object obj, char type, method in class:Main
137 * localInst.getValue() is performed using an instance of Main as the
138 * source of the reflection call. otherInst.getValue() uses a subclass
181 localInst.getValue(localPubByteField, samePkgInst, 'B', null);
186 this.getValue(localProtByteField, samePkgInst, 'B', null);
191 this.getValue(localPrivFloatField, samePkgInst, 'F',
203 this.getValue(otherProtShortField, this, 'S',
205 this.getValue(otherProtShortField, otherPkgInst, 'S',
207 this.getValue(otherPkgDoubleField, otherPkgInst, 'D',
215 localInst.getValue(localPubByteFiel
283 public Object getValue(Field field, Object obj, char type, method in class:SubOther
[all...]
/dalvik/libcore/text/src/main/java/java/text/
H A DAnnotation.java56 public Object getValue() { method in class:Annotation
/dalvik/libcore/xml/src/main/java/org/w3c/dom/
H A DAttr.java190 public String getValue(); method in interface:Attr
/dalvik/libcore/xml/src/main/java/org/apache/harmony/xml/
H A DExpatAttributes.java71 public String getValue(int index) { method in class:ExpatAttributes
74 : getValue(getPointer(), index);
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
138 return getValue(pointer, qName);
146 static native String getValue(int attributePointer, int index); method in class:ExpatAttributes
150 static native String getValue(int attributePointer, method in class:ExpatAttributes
152 static native String getValue(int attributePointer, String qName); method in class:ExpatAttributes
/dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/tsp/
H A DAccuracy.java43 && (millis.getValue().intValue() < MIN_MILLIS || millis
44 .getValue().intValue() > MAX_MILLIS))
55 && (micros.getValue().intValue() < MIN_MICROS || micros
56 .getValue().intValue() > MAX_MICROS))
89 if (millis.getValue().intValue() < MIN_MILLIS
90 || millis.getValue().intValue() > MAX_MILLIS)
98 if (micros.getValue().intValue() < MIN_MICROS
99 || micros.getValue().intValue() > MAX_MICROS)
/dalvik/libcore/xml/src/test/java/tests/api/org/xml/sax/helpers/
H A DAttributesImplTest.java174 method = "getValue",
179 assertEquals("abc", multi.getValue(0));
180 assertEquals("xyz", multi.getValue(1));
181 assertEquals("42", multi.getValue(2));
182 assertEquals("1-2-3-4", multi.getValue(3));
183 assertEquals("1-2-3-4", multi.getValue(4));
186 assertEquals(null, multi.getValue(-1));
187 assertEquals(null, multi.getValue(5));
268 method = "getValue",
273 assertEquals("abc", multi.getValue("htt
[all...]
H A DAttributeListImplTest.java96 assertEquals(multi.getValue(i), attrs.getValue(i));
120 assertEquals("false", multi.getValue(3));
127 assertEquals("false", multi.getValue(4));
133 assertEquals(null, multi.getValue(5));
146 assertEquals("xyz", multi.getValue(0));
220 method = "getValue",
225 assertEquals("abc", multi.getValue(0));
226 assertEquals("xyz", multi.getValue(1));
227 assertEquals("42", multi.getValue(
[all...]
/dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/ocsp/
H A DOCSPResponseStatus.java38 super(value.getValue().intValue());
/dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/pkcs/
H A DRSAPrivateKeyStructure.java76 BigInteger v = ((DERInteger)e.nextElement()).getValue();
83 modulus = ((DERInteger)e.nextElement()).getValue();
84 publicExponent = ((DERInteger)e.nextElement()).getValue();
85 privateExponent = ((DERInteger)e.nextElement()).getValue();
86 prime1 = ((DERInteger)e.nextElement()).getValue();
87 prime2 = ((DERInteger)e.nextElement()).getValue();
88 exponent1 = ((DERInteger)e.nextElement()).getValue();
89 exponent2 = ((DERInteger)e.nextElement()).getValue();
90 coefficient = ((DERInteger)e.nextElement()).getValue();
/dalvik/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
/dalvik/dx/src/com/android/dx/cf/attrib/
H A DAttAnnotationDefault.java64 public Constant getValue() { method in class:AttAnnotationDefault
/dalvik/libcore/xml/src/main/java/org/xml/sax/helpers/
H A DAttributeListImpl.java122 addAttribute(atts.getName(i), atts.getType(i), atts.getValue(i));
261 * @see org.xml.sax.AttributeList#getValue(int) method in class:AttributeListImpl
263 public String getValue (int i)
297 * @see org.xml.sax.AttributeList#getValue(java.lang.String) method in class:AttributeListImpl
299 public String getValue (String name)
301 return getValue(names.indexOf(name));
/dalvik/libcore/luni/src/main/java/java/util/
H A DMapEntry.java59 && (value == null ? entry.getValue() == null : value
60 .equals(entry.getValue()));
69 public V getValue() { method in class:MapEntry
/dalvik/libcore/xml/src/main/java/org/apache/xml/serializer/utils/
H A DAttList.java160 public String getValue(int i) method in class:AttList
162 return ((Attr) m_attrs.item(i)).getValue();
201 public String getValue(String name) method in class:AttList
205 ? attr.getValue() : null;
217 public String getValue(String uri, String localName) method in class:AttList
/dalvik/libcore/xml/src/main/java/org/apache/xml/utils/
H A DAttList.java151 public String getValue(int i) method in class:AttList
153 return ((Attr) m_attrs.item(i)).getValue();
192 public String getValue(String name) method in class:AttList
196 ? attr.getValue() : null;
208 public String getValue(String uri, String localName) method in class:AttList

Completed in 610 milliseconds

1234567891011