HomeSort by relevance Sort by last modified time
    Searched refs:values (Results 626 - 650 of 2084) sorted by null

<<21222324252627282930>>

  /external/apache-http/src/org/apache/http/impl/cookie/
AbstractCookieSpec.java 107 return this.attribHandlerMap.values();
  /external/bluetooth/glib/gobject/
gvaluearray.h 38 * @n_values: number of values contained in the array
39 * @values: array of values
46 GValue *values; member in struct:_GValueArray
  /external/chromium/chrome/browser/extensions/
extension_override_apitest.cc 25 ListValue* values = NULL; local
26 if (!overrides->GetList("history", &values))
30 for (size_t i = 0; i < values->GetSize(); ++i) {
32 if (!values->GetString(i, &value))
  /external/guava/src/com/google/common/collect/
ListMultimap.java 29 * the insertion ordering of values for a given key.
32 * each return a {@link List} of values. Though the method signature doesn't say
33 * so explicitly, the map returned by {@link #asMap} has {@code List} values.
43 * <p>Because the values for a given key may have duplicates and follow the
52 * <p>Because the values for a given key may have duplicates and follow the
61 * <p>Because the values for a given key may have duplicates and follow the
65 List<V> replaceValues(K key, Iterable<? extends V> values);
71 * has {@link List} values.
79 * contain the same values in the same order. If the value orderings disagree,
SetMultimap.java 32 * each return a {@link Set} of values, while {@link #entries} returns a {@code
34 * the map returned by {@link #asMap} has {@code Set} values.
44 * <p>Because a {@code SetMultimap} has unique values for a given key, this
53 * <p>Because a {@code SetMultimap} has unique values for a given key, this
62 * <p>Because a {@code SetMultimap} has unique values for a given key, this
66 * <p>Any duplicates in {@code values} will be stored in the multimap once.
68 Set<V> replaceValues(K key, Iterable<? extends V> values);
73 * <p>Because a {@code SetMultimap} has unique values for a given key, this
83 * has {@link Set} values.
91 * contain the same values. Equality does not depend on the ordering of key
    [all...]
SingletonImmutableMap.java 92 private transient ImmutableCollection<V> values; field in class:SingletonImmutableMap
94 @Override public ImmutableCollection<V> values() { method in class:SingletonImmutableMap
95 ImmutableCollection<V> v = values;
96 return (v == null) ? (values = new Values<V>(singleValue)) : v;
100 private static class Values<V> extends ImmutableCollection<V> {
103 Values(V singleValue) {
SortedSetMultimap.java 30 * A {@code SetMultimap} whose set of values for a given key are kept sorted;
37 * each return a {@link SortedSet} of values, while {@link Multimap#entries()}
40 * values.
48 * Returns a collection view of all values associated with a key. If no
55 * <p>Because a {@code SortedSetMultimap} has unique sorted values for a given
62 * Removes all values associated with a given key.
64 * <p>Because a {@code SortedSetMultimap} has unique sorted values for a given
71 * Stores a collection of values with the same key, replacing any existing
72 * values for that key.
74 * <p>Because a {@code SortedSetMultimap} has unique sorted values for a give
    [all...]
  /external/llvm/utils/
webNLT.pl 48 print $q->scrolling_list(-name=>"test", -values=>\@tests, -multiple=>'true');
50 print $q->scrolling_list(-name=>"name", -values=>\@names, -multiple=>'true');
  /external/nist-sip/java/gov/nist/core/
MultiValueMapImpl.java 82 public Collection values() { method in class:MultiValueMapImpl
91 Object[] values = list.toArray(); local
92 for (int ii = 0; ii < values.length; ii++) {
93 returnList.add(values[ii]);
  /external/openssl/crypto/x509v3/
v3_akey.c 69 X509V3_CTX *ctx, STACK_OF(CONF_VALUE) *values);
112 X509V3_CTX *ctx, STACK_OF(CONF_VALUE) *values)
126 for(i = 0; i < sk_CONF_VALUE_num(values); i++)
128 cnf = sk_CONF_VALUE_value(values, i);
  /external/valgrind/unittest/
old_test_suite.cc 101 string join_str(std::vector<long long int> values) {
103 bool single = (values.size() == 1);
108 for (std::vector<long long int>::iterator it = values.begin();
109 it != values.end(); ++it) {
  /external/webkit/Source/WebKit/mac/Plugins/Hosted/
WebHostedNetscapePluginView.h 56 attributeValues:(NSArray *)values
  /external/webkit/Source/WebKit2/UIProcess/cf/
WebBackForwardListCF.cpp 76 const void* values[4] = { url.get(), title.get(), originalURL.get(), entryData.get() }; local
78 RetainPtr<CFDictionaryRef> entryDictionary(AdoptCF, CFDictionaryCreate(0, keys, values, 4, &kCFTypeDictionaryKeyCallBacks, &kCFTypeDictionaryValueCallBacks));
84 const void* values[2] = { currentIndexNumber.get(), entries.get() }; local
86 return CFDictionaryCreate(0, keys, values, 2, &kCFTypeDictionaryKeyCallBacks, &kCFTypeDictionaryValueCallBacks);
  /frameworks/base/core/java/android/view/
OrientationListener.java 96 public void onSensorChanged(int sensor, float[] values) {
  /frameworks/base/core/java/com/google/android/mms/pdu/
EncodedStringValue.java 231 String[] values = src.split(";"); local
234 for (int i = 0; i < values.length; i++) {
235 if (values[i].length() > 0) {
236 list.add(new EncodedStringValue(values[i]));
  /frameworks/base/media/java/android/media/
MediaMetadataRetriever.java 75 String[] values = new String[headers.size()]; local
78 values[i] = entry.getValue();
81 _setDataSource(uri, keys, values);
85 String uri, String[] keys, String[] values)
311 /* Do not change these option values without updating their counterparts
348 * Do not change these metadata key values without updating their
  /frameworks/base/media/libstagefright/codecs/aacenc/inc/
bit_cnt.h 99 Word16 codeValues(Word16 *values, Word16 width, Word16 codeBook, HANDLE_BIT_BUF hBitstream);
  /frameworks/base/telephony/java/com/android/internal/telephony/cat/
AppInterface.java 83 for (CommandType e : CommandType.values()) {
Duration.java 58 timeUnit = TimeUnit.values()[in.readInt()];
  /frameworks/opt/vcard/tests/src/com/android/vcard/tests/testutils/
VNodeBuilder.java 130 final List<String> values = property.getValueList(); local
131 if (values == null || values.size() == 0) {
136 propNode.propValue_vector.addAll(values);
  /libcore/luni/src/main/java/java/util/
Map.java 22 * A {@code Map} is a data structure consisting of a set of keys and values
25 * class of the corresponding values.
191 * not support {@code null} keys or values.
209 * support {@code null} keys or values.
233 * Returns a {@code Collection} of the values contained in this {@code Map}. The {@code Collection}
250 * @return a collection of the values contained in this map.
252 public Collection<V> values(); method in interface:Map
  /libcore/luni/src/test/java/libcore/java/math/
MathContextTest.java 25 for (RoundingMode rm : RoundingMode.values()) {
  /libcore/luni/src/test/java/libcore/java/net/
OldAuthenticatorRequestorTypeTest.java 42 Authenticator.RequestorType[] types = Authenticator.RequestorType.values();
  /packages/apps/Contacts/src/com/android/contacts/editor/
Editor.java 63 public void setValues(DataKind kind, ValuesDelta values, EntityDelta state, boolean readOnly,
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
QuickResponse.java 99 ContentValues values = new ContentValues(); local
101 values.put(QuickResponseColumns.TEXT, mText);
102 values.put(QuickResponseColumns.ACCOUNT_KEY, mAccountKey);
104 return values;
113 * Given an array of QuickResponses, returns the an array of the String values

Completed in 519 milliseconds

<<21222324252627282930>>