HomeSort by relevance Sort by last modified time
    Searched full:values (Results 226 - 250 of 13487) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/llvm/utils/
importNLT.pl 17 INSERT INTO Tests (NAME, RUN, TEST, VALUE) VALUES (?, STR_TO_DATE(?, '\%d \%M \%Y'), ?, ?)
29 $dbh->do("INSERT INTO Tests (NAME, RUN, TEST, VALUE) VALUES
34 $dbh->do("INSERT INTO Tests (NAME, RUN, TEST, VALUE) VALUES
39 $dbh->do("INSERT INTO Tests (NAME, RUN, TEST, VALUE) VALUES
44 $dbh->do("INSERT INTO Tests (NAME, RUN, TEST, VALUE) VALUES
49 $dbh->do("INSERT INTO Tests (NAME, RUN, TEST, VALUE) VALUES
54 $dbh->do("INSERT INTO Tests (NAME, RUN, TEST, VALUE) VALUES
59 $dbh->do("INSERT INTO Tests (NAME, RUN, TEST, VALUE) VALUES
64 $dbh->do("INSERT INTO Tests (NAME, RUN, TEST, VALUE) VALUES
69 $dbh->do("INSERT INTO Tests (NAME, RUN, TEST, VALUE) VALUES
    [all...]
  /libcore/luni/src/main/java/java/math/
RoundingMode.java 27 * Rounding mode where positive values are rounded towards positive infinity
28 * and negative values towards negative infinity.
35 * Rounding mode where the values are rounded towards zero.
42 * Rounding mode to round towards positive infinity. For positive values
43 * this rounding mode behaves as {@link #UP}, for negative values as
51 * Rounding mode to round towards negative infinity. For positive values
52 * this rounding mode behaves as {@link #DOWN}, for negative values as
60 * Rounding mode where values are rounded towards the nearest neighbor. Ties
66 * Rounding mode where values are rounded towards the nearest neighbor. Ties
72 * Rounding mode where values are rounded towards the nearest neighbor. Tie
    [all...]
  /libcore/luni/src/test/java/tests/support/
DatabaseCreator.java 166 + "VALUES (1001, 'Peel', 'London', .12)";
170 + "VALUES (1002, 'Serres', 'SanJose', .13)";
174 + "VALUES (1004, 'Motika', 'London', .11)";
178 + "VALUES (1007, 'Rifkin', 'Barcelona', .15)";
182 + "VALUES (1003, 'Axelrod', 'NewYork', .10)";
186 + "VALUES (1013, 'Simpson', 'Kasan', .25)";
190 + " VALUES (2001, 'Hoffman', 'London', 100, 1001)";
194 + "VALUES (2002, 'Giovanni', 'Rome', 200, 1003)";
198 + "VALUES (2003, 'Liu', 'SanJose', 200, 1002)";
202 + "VALUES (2004, 'Grass', 'Berlin', 300, 1002)"
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
DataRowHandlerForStructuredPostal.java 55 ContentValues values) {
56 fixStructuredPostalComponents(values, values);
57 return super.insert(db, txContext, rawContactId, values);
61 public boolean update(SQLiteDatabase db, TransactionContext txContext, ContentValues values,
64 final ContentValues augmented = getAugmentedValues(db, dataId, values);
69 fixStructuredPostalComponents(augmented, values);
70 super.update(db, txContext, values, c, callerIsSyncAdapter);
77 * values when missing. When structured components are missing, the
106 public boolean containsSearchableColumns(ContentValues values) {
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/resources/platform/
AttributeInfo.java 25 * possible flag or enum values, whether it's deprecated and its javadoc.
33 /** Values for enum. null for other types. */
35 /** Values for flag. null for other types. */
84 /** Returns the values for enums. null for other types. */
88 /** Returns the values for flags. null for other types. */
101 /** Sets the values for enums. null for other types. */
102 public AttributeInfo setEnumValues(String[] values) {
103 mEnumValues = values;
107 /** Sets the values for flags. null for other types. */
108 public AttributeInfo setFlagValues(String[] values) {
    [all...]
  /external/chromium/chrome/browser/chromeos/
wm_ipc.cc 39 bool SetIntProperty(XID xid, Atom xatom, const std::vector<int>& values) {
40 DCHECK(!values.empty());
42 // XChangeProperty expects values of type 32 to be longs.
43 scoped_array<long> data(new long[values.size()]);
44 for (size_t i = 0; i < values.size(); ++i)
45 data[i] = values[i];
55 values.size()); // num items
72 std::vector<int> values; local
73 values.push_back(type);
75 values.insert(values.end(), params->begin(), params->end())
159 std::vector<int> values; local
163 values); local
    [all...]
  /external/guava/src/com/google/common/collect/
Multimap.java 29 * values with a single key. If you call {@link #put} twice, with the same key
30 * but different values, the multimap contains mappings from the key to both
31 * values.
33 * <p>The methods {@link #get}, {@link #keySet}, {@link #keys}, {@link #values},
55 * @param <V> the type of mapped values
69 * Returns {@code true} if the multimap contains any values for the specified
122 * Stores a collection of values with the same key.
125 * @param values values to store in the multimap
128 boolean putAll(@Nullable K key, Iterable<? extends V> values);
212 Collection<V> values(); method in interface:Multimap
    [all...]
  /frameworks/base/core/java/android/webkit/
WebStorage.java 141 Map values = (Map) msg.obj;
142 Map origins = (Map) values.get(ORIGINS);
143 ValueCallback<Map> callback = (ValueCallback<Map>) values.get(CALLBACK);
148 Map values = (Map) msg.obj;
149 ValueCallback<Long> callback = (ValueCallback<Long>) values.get(CALLBACK);
150 callback.onReceiveValue((Long)values.get(USAGE));
154 Map values = (Map) msg.obj;
155 ValueCallback<Long> callback = (ValueCallback<Long>) values.get(CALLBACK);
156 callback.onReceiveValue((Long)values.get(QUOTA));
193 Map values = new HashMap<String, Object>()
293 HashMap values = new HashMap<String, Object>(); local
316 HashMap values = new HashMap<String, Object>(); local
    [all...]
  /libcore/luni/src/test/java/tests/api/java/util/
AbstractMapTest.java 138 * java.util.AbstractMap#values()
142 assertSame("HashMap(0)", map1.values(), map1.values());
145 assertSame("HashMap(10)", map2.values(), map2.values());
148 assertSame("EMPTY_MAP", map3.values(), map3.values());
151 assertSame("IdentityHashMap", map4.values(), map4.values());
154 assertSame("IdentityHashMap", map5.values(), map5.values())
203 Vector values = new Vector(); field in class:AbstractMapTest.AMT
    [all...]
  /frameworks/base/core/java/android/preference/
MultiSelectListPreference.java 35 * This set will contain one or more values from the
98 * @param entryValues The array to be used as values to save for the preference.
106 * @param entryValuesResId The entry values array as a resource.
113 * Returns the array of values to be saved for the preference.
115 * @return The array of values.
125 * @param values The values to set for the key.
127 public void setValues(Set<String> values) {
128 mValues = values;
130 persistStringSet(values);
185 final Set<String> values = mValues; local
200 final Set<String> values = mNewValues; local
240 Set<String> values; field in class:MultiSelectListPreference.SavedState
    [all...]
  /dalvik/tests/017-float/src/
Main.java 27 System.out.println("base values: d=" + d + " f=" + f);
28 System.out.println("base values: d=" + d + " f=" + f);
29 System.out.println("base values: f=" + f + " d=" + d);
30 //System.out.println("object values: off="
  /dalvik/vm/mterp/armv5te/
stub.S 5 LOAD_PC_FP_FROM_SELF() @ retrieve updated values
  /dalvik/vm/mterp/x86/
stub.S 6 LOAD_PC_FP_FROM_SELF # retrieve updated values
  /development/ndk/platforms/android-4/samples/san-angeles/
default.properties 7 # "build.properties", and override values to adapt the script to your
  /development/ndk/platforms/android-5/samples/hello-gl2/
default.properties 7 # "build.properties", and override values to adapt the script to your
  /development/ndk/platforms/android-8/samples/bitmap-plasma/
default.properties 7 # "build.properties", and override values to adapt the script to your
  /development/ndk/platforms/android-9/samples/native-activity/
default.properties 7 # "build.properties", and override values to adapt the script to your
  /development/ndk/platforms/android-9/samples/native-plasma/
default.properties 7 # "build.properties", and override values to adapt the script to your
  /development/ndk/samples/hello-jni/
default.properties 7 # "build.properties", and override values to adapt the script to your
  /development/ndk/samples/hello-jni/tests/
default.properties 7 # "build.properties", and override values to adapt the script to your
  /development/ndk/samples/hello-neon/
default.properties 7 # "build.properties", and override values to adapt the script to your
  /development/ndk/samples/two-libs/
default.properties 7 # "build.properties", and override values to adapt the script to your
  /development/ndk/samples/two-libs/tests/
default.properties 7 # "build.properties", and override values to adapt the script to your
  /development/samples/JetBoy/
default.properties 7 # "build.properties", and override values to adapt the script to your
  /development/samples/USB/AdbTest/
default.properties 7 # "build.properties", and override values to adapt the script to your

Completed in 356 milliseconds

1 2 3 4 5 6 7 8 91011>>