HomeSort by relevance Sort by last modified time
    Searched refs:getValue (Results 1 - 25 of 822) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /cts/tools/dex-tools/src/dex/structure/
DexEncodedValue.java 37 Object getValue();
DexEncodedAnnotation.java 24 List<DexAnnotationAttribute> getValue();
  /cts/tools/signature-tools/src/signature/model/
IAnnotationElement.java 40 Object getValue();
  /external/apache-http/src/org/apache/http/
NameValuePair.java 106 String getValue();
Header.java 60 String getValue();
  /build/tools/apicheck/src/com/android/apicheck/
ApiCheck.java 147 mCurrentPackage = new PackageInfo(attributes.getValue("name"),
148 SourcePositionInfo.fromXml(attributes.getValue("source")));
154 mCurrentClass = new ClassInfo(attributes.getValue("name"),
156 attributes.getValue("extends") ,
159 attributes.getValue("abstract")),
161 attributes.getValue("static")),
163 attributes.getValue("final")),
164 attributes.getValue("deprecated"),
165 attributes.getValue("visibility"),
166 SourcePositionInfo.fromXml(attributes.getValue("source"))
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/archive/tests/java/util/zip/
Adler32Test.java 29 assertEquals("Constructor of adl32 failed", 1, adl.getValue());
33 * @tests java.util.zip.Adler32#getValue()
36 // test methods of java.util.zip.getValue()
38 assertEquals("GetValue should return a zero as a result of construction an object of Adler32",
39 1, adl.getValue());
43 // System.out.print("value of adl"+adl.getValue());
46 131074, adl.getValue());
49 .getValue());
53 // System.out.print("value of adl " + adl.getValue());
56 65537L, adl.getValue());
    [all...]
CRC32Test.java 29 assertEquals("Constructor of CRC32 failed", 0, crc.getValue());
33 * @tests java.util.zip.CRC32#getValue()
36 // test methods of java.util.zip.crc32.getValue()
38 assertEquals("getValue() should return a zero as a result of constructing a CRC32 instance",
39 0, crc.getValue());
43 // System.out.print("value of crc " + crc.getValue());
47 4278190080L, crc.getValue());
52 // System.out.print("value of crc"+crc.getValue());
56 1295764014L, crc.getValue());
60 // System.out.print("value of crc"+crc.getValue());
    [all...]
  /system/extras/tests/bionic/libc/common/
test_static_cpp_mutex.cpp 38 virtual int getValue();
59 int Foo::getValue()
68 printf( "f.getValue() returned: %d\n", f.getValue() );
  /dalvik/tests/078-polymorphic-virtual/src/
Base.java 29 public int getValue() {
Main.java 36 System.out.println(derived1.getValue());
37 System.out.println(derived2.getValue());
38 System.out.println(derived3.getValue());
  /dalvik/tests/084-class-init/src/
IntHolder.java 35 public int getValue() {
Main.java 68 SlowInit.FIELD0.getValue() + SlowInit.FIELD1.getValue() +
69 SlowInit.FIELD2.getValue() + SlowInit.FIELD3.getValue());
79 SlowInit.FIELD0.getValue() + SlowInit.FIELD1.getValue() +
80 SlowInit.FIELD2.getValue() + SlowInit.FIELD3.getValue());
  /external/nist-sip/java/gov/nist/javax/sip/header/
HeaderExt.java 35 public String getValue();
  /external/nist-sip/java/javax/sip/header/
ExtensionHeader.java 6 String getValue();
  /libcore/luni/src/main/java/java/util/zip/
Checksum.java 31 public long getValue();
  /sdk/layoutlib_api/src/com/android/layoutlib/api/
IResourceValue.java 37 String getValue();
  /system/extras/tests/bionic/libc/bionic/
lib_static_init.h 9 virtual int getValue();
test_static_init.cpp 9 int c = theFoo.getValue();
22 c = theFoo2.getValue();
  /libcore/luni/src/main/java/org/xml/sax/
AttributeList.java 43 * 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)
192 public abstract String getValue (String name);
Attributes.java 90 * @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);
  /external/guava/src/com/google/common/collect/
AbstractMapEntry.java 37 public abstract V getValue();
47 && Objects.equal(this.getValue(), that.getValue());
54 V v = getValue();
62 return getKey() + "=" + getValue();
  /development/tools/apkcheck/src/com/android/apkcheck/
ApiDescrHandler.java 74 attributes.getValue("name"));
78 attributes.getValue("name"),
79 attributes.getValue("extends"),
80 attributes.getValue("static"));
83 mCurrentClass.addInterface(attributes.getValue("name"));
86 mCurrentMethod = new MethodInfo(attributes.getValue("name"),
87 attributes.getValue("return"));
121 FieldInfo fInfo = new FieldInfo(attributes.getValue("name"),
122 attributes.getValue("type"));
126 mCurrentMethod.addParameter(attributes.getValue("type"))
    [all...]
  /dalvik/dx/src/com/android/dx/rop/cst/
CstBoolean.java 72 return getValue() ? "boolean{true}" : "boolean{false}";
88 return getValue() ? "true" : "false";
96 public boolean getValue() {
  /dalvik/tests/064-field-access/src/
Main.java 51 public Object getValue(Field field, Object obj, char type,
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(localPubByteField, null, 'B'
    [all...]

Completed in 461 milliseconds

1 2 3 4 5 6 7 8 91011>>