HomeSort by relevance Sort by last modified time
    Searched defs:getValue (Results 251 - 275 of 3774) sorted by null

<<11121314151617181920>>

  /libcore/ojluni/src/main/java/java/time/chrono/
JapaneseEra.java 102 // i.e., getValue() + ERA_OFFSET == 0-based index
130 private static final int N_ERA_CONSTANTS = HEISEI.getValue() + ERA_OFFSET;
300 public int getValue() {
340 int index = ordinal(getValue());
348 return ERA_CONFIG[ordinal(getValue())].getName();
374 * out.writeInt(getValue());
384 out.writeByte(this.getValue());
  /packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/util/
CachedLaterTest.java 46 assertNull(mTrap.getValue());
48 assertEquals("foo", mTrap.getValue());
55 assertEquals("foo", mTrap2.getValue());
62 assertEquals("foo", mTrap.getValue());
63 assertEquals("foo", mTrap2.getValue());
72 assertEquals("bar", mTrap2.getValue());
89 assertNull(mTrap2.getValue());
  /art/test/638-checker-inline-caches/src/
Main.java 18 int getValue() { return 42; }
22 int getValue() { return 38; }
26 int getValue() { return 10; }
30 int getValue() { return -4; }
36 /// CHECK: InvokeVirtual method_name:Super.getValue
44 /// CHECK: <<DefaultRet:i\d+>> InvokeVirtual [<<Obj>>] method_name:Super.getValue
51 return a.getValue();
55 /// CHECK: InvokeVirtual method_name:Super.getValue
71 /// CHECK-DAG: <<DefaultRet:i\d+>> InvokeVirtual [<<Obj>>] method_name:Super.getValue
79 return a.getValue();
    [all...]
  /art/tools/ahat/src/heapdump/
FieldValue.java 68 public Value getValue() {
  /cts/tests/tests/content/src/android/content/res/cts/
FractionTest.java 78 mResources.getValue(resid, mValue, true);
  /cts/tools/dex-tools/src/dex/reader/
DexEncodedAnnotationImpl.java 63 public List<DexAnnotationAttribute> getValue() {
73 return getTypeName() + ":" + getValue();
  /dalvik/dx/src/com/android/dx/dex/file/
StringIdItem.java 113 public CstString getValue() {
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
ArrayRegion.java 46 public Value getValue(int index) {
  /external/apache-http/src/org/apache/http/cookie/
Cookie.java 64 String getValue();
  /external/apache-http/src/org/apache/http/impl/auth/
RFC2617Scheme.java 82 this.params.put(element.getName(), element.getValue());
  /external/apache-http/src/org/apache/http/message/
BasicNameValuePair.java 145 public String getValue() {
BufferedHeader.java 109 public String getValue() {
  /external/apache-xml/src/main/java/org/apache/xml/serializer/utils/
AttList.java 160 public String getValue(int i)
162 return ((Attr) m_attrs.item(i)).getValue();
201 public String getValue(String name)
205 ? attr.getValue() : null;
217 public String getValue(String uri, String localName)
  /external/apache-xml/src/main/java/org/apache/xml/utils/
AttList.java 151 public String getValue(int i)
153 return ((Attr) m_attrs.item(i)).getValue();
192 public String getValue(String name)
196 ? attr.getValue() : null;
208 public String getValue(String uri, String localName)
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
ASN1Integer.java 106 public BigInteger getValue()
165 return getValue().toString();
  /external/clang/tools/scan-view/share/
Reporter.py 42 def getValue(self,r,bugtype,getConfigOption):
53 </tr>"""%(self.getName(),r.getName(),self.getName(),self.getValue(r,bugtype,getConfigOption))
61 default = self.getValue(r,bugtype,getConfigOption)
164 def getValue(self,r,bugtype,getConfigOption):
  /external/deqp/framework/opengl/
gluContextInfo.hpp 48 const T& getValue (const RenderContext& context) const
  /external/easymock/src/org/easymock/internal/
EasyMockProperties.java 80 properties.put(entry.getKey(), entry.getValue());
  /external/emma/core/java12/com/vladium/jcd/cls/attribute/
ConstantValueAttribute_info.java 72 public CONSTANT_literal_info getValue (final ClassDef cls)
  /external/guava/guava/src/com/google/common/collect/
ForwardingMapEntry.java 36 * overriding {@link #getValue} alone <i>will not</i> change the behavior of
70 public V getValue() {
71 return delegate().getValue();
89 * #getKey()} and {@link #getValue()}. If you override either of these
99 && Objects.equal(this.getValue(), that.getValue());
106 * and {@link #getValue()}. If you override either of these methods, you may
113 V v = getValue();
119 * #getKey} and {@link #getValue}. If you override either of these
126 return getKey() + "=" + getValue();
    [all...]
SingletonImmutableTable.java 43 this(cell.getRowKey(), cell.getColumnKey(), cell.getValue());
  /external/guava/guava-gwt/src/com/google/common/collect/
LinkedListMultimap_CustomFieldSerializer.java 53 out.writeObject(entry.getValue());
  /external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
ImmutableEnumMapTest.java 43 map.put(entry.getKey(), entry.getValue());
  /external/guava/guava-testlib/src/com/google/common/collect/testing/google/
MultimapValuesTester.java 42 expected.add(entry.getValue());
51 expected.add(entry.getValue());
SortedMapGenerators.java 51 builder.put(entry.getKey(), entry.getValue());

Completed in 662 milliseconds

<<11121314151617181920>>