Searched refs:getValue (Results 101 - 125 of 142) sorted by relevance

123456

/libcore/luni/src/test/java/libcore/java/util/jar/
H A DOldManifestTest.java45 assertEquals("Incorrect " + name, value, attr.getValue(name));
/libcore/luni/src/test/java/libcore/util/
H A DBasicLruCacheTest.java140 actualKeysAndValues.add(entry.getValue());
/libcore/support/src/test/java/org/apache/harmony/xnet/tests/support/
H A DmySSLSession.java149 public Object getValue(String s) { method in class:mySSLSession
/libcore/luni/src/main/java/java/util/
H A DHashMap.java206 constructorPut(e.getKey(), e.getValue());
740 public final V getValue() { method in class:HashMap.HashMapEntry
756 && Objects.equal(e.getValue(), value);
946 return containsMapping(e.getKey(), e.getValue());
952 return removeMapping(e.getKey(), e.getValue());
1013 stream.writeObject(e.getValue());
H A DProperties.java552 dumpString(sb, (String) entry.getValue(), false);
740 String entryValue = (String) entry.getValue();
H A DTreeMap.java108 putInternal(entry.getKey(), entry.getValue());
151 putInternal(entry.getKey(), entry.getValue());
178 return entry != null ? entry.getValue() : null;
365 boolean valuesEqual = mine != null && Objects.equal(mine.value, entry.getValue());
764 public V getValue() { method in class:TreeMap.Node
778 && (value == null ? other.getValue() == null : value.equals(other.getValue()));
1674 stream.writeObject(entry.getValue());
/libcore/luni/src/test/java/libcore/java/net/
H A DCookiesTest.java64 assertEquals("android", cookie.getValue());
94 assertEquals("android", cookie.getValue());
127 assertEquals("android", cookie.getValue());
161 assertEquals("android", cookie.getValue());
181 assertEquals("android", cookieA.getValue());
184 assertEquals("banana", cookieB.getValue());
/libcore/json/src/main/java/org/json/
H A DJSONObject.java136 nameValuePairs.put(key, entry.getValue());
667 stringer.key(entry.getKey()).value(entry.getValue());
/libcore/luni/src/main/java/org/apache/harmony/xml/dom/
H A DDocumentImpl.java140 attrCopy.setNodeValue(attr.getValue());
542 UserData userData = entry.getValue();
/libcore/luni/src/test/java/tests/api/javax/net/ssl/
H A DSSLSessionTest.java233 * javax.net.ssl.SSLSession#getValue(String name)
240 s.getValue(null);
247 Object obj = s.getValue("Name");
/libcore/dalvik/src/main/java/dalvik/system/profiler/
H A DHprofData.java337 int countCell[] = e.getValue();
/libcore/luni/src/main/java/java/beans/
H A DPropertyChangeSupport.java361 for (PropertyChangeListener p : entry.getValue().listeners) {
/libcore/luni/src/main/java/java/security/
H A DSecurity.java285 String val = entry.getValue();
/libcore/luni/src/main/java/java/util/zip/
H A DZipInputStream.java207 if (currentEntry.crc != crc.getValue()) {
/libcore/luni/src/main/java/libcore/net/
H A DMimeUtils.java419 String mimeType = (String) entry.getValue();
/libcore/luni/src/main/java/libcore/net/url/
H A DJarURLConnectionImpl.java358 ZipFile zip = i.next().getValue();
/libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
H A DOpenSSLSessionImpl.java376 public Object getValue(String name) { method in class:OpenSSLSessionImpl
H A DSSLSessionImpl.java165 public Object getValue(String name) { method in class:SSLSessionImpl
/libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
H A DSecurity2Test.java62 + entry.getValue();
/libcore/luni/src/test/java/tests/api/javax/xml/parsers/
H A DSAXParserFactoryTest.java385 attr.put(atts.getQName(i), atts.getValue(i));
H A DSAXParserTestSupport.java319 SEPARATOR_STRING + attributes.getValue(i));
476 SEPARATOR_STRING + attributes.getValue(i));
/libcore/support/src/test/java/org/apache/harmony/security/tests/support/
H A DTestKeyStoreSpi.java89 if (alias.getValue() == cert) {
/libcore/luni/src/main/java/libcore/net/http/
H A DHttpResponseCache.java437 + varyHeaders.getValue(i) + '\n');
444 + responseHeaders.getValue(i) + '\n');
H A DHttpURLConnectionImpl.java126 return getResponse().getResponseHeaders().getHeaders().getValue(position);
/libcore/luni/src/test/java/tests/api/java/util/
H A DHashtableTest.java307 s2.add(((Map.Entry) i.next()).getValue());
764 final Object value = entry.getValue();

Completed in 783 milliseconds

123456