/external/skia/src/core/ |
SkMetaData.cpp | 92 SkScalar* SkMetaData::setScalars(const char name[], int count, const SkScalar values[]) 96 return (SkScalar*)this->set(name, values, sizeof(SkScalar), kScalar_Type, count); 179 const SkScalar* SkMetaData::findScalars(const char name[], int* count, SkScalar values[]) const 186 if (values) 187 memcpy(values, rec->data(), rec->fDataCount * rec->fDataLen);
|
/external/stlport/test/unit/ |
alg_test.cpp | 349 vector<string> values; local 356 values.push_back( "four" ); 357 values.push_back( "ten" ); 359 map<int, string>::iterator i = find_first_of(m.begin(), m.end(), values.begin(), values.end(), ValueFinder());
|
/ndk/tests/device/test-gnustl-full/unit/ |
alg_test.cpp | 349 vector<string> values; local 356 values.push_back( "four" ); 357 values.push_back( "ten" ); 359 map<int, string>::iterator i = find_first_of(m.begin(), m.end(), values.begin(), values.end(), ValueFinder());
|
/ndk/tests/device/test-stlport/unit/ |
alg_test.cpp | 349 vector<string> values; local 356 values.push_back( "four" ); 357 values.push_back( "ten" ); 359 map<int, string>::iterator i = find_first_of(m.begin(), m.end(), values.begin(), values.end(), ValueFinder());
|
/packages/experimental/LoaderApp/src/com/android/loaderapp/model/ |
GoogleSource.java | 209 final ContentValues values = new ContentValues(); local 210 values.put(Data.MIMETYPE, GroupMembership.CONTENT_ITEM_TYPE); 237 values.put(GroupMembership.GROUP_ROW_ID, ContentUris.parseId(results[1].uri)); 250 values.put(GroupMembership.GROUP_SOURCE_ID, assignToGroupSourceId); 257 state.addEntry(ValuesDelta.fromAfter(values));
|
/sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/log/event/ |
DisplayGraph.java | 52 Collection<TimeSeriesCollection> datasets = mValueTypeDataSetMap.values(); 93 * Updates the chart with the {@link EventContainer} by adding the values/occurrences defined 111 // for the total CPU load, then we do accumulate all the values. 180 // accumulate the values if needed. 245 // go through all the series and remove old values. 248 mValueDescriptorSeriesMap.values(); 251 Collection<TimeSeries> seriesCollection = pidMapValue.values(); 258 pidMapValues = mOcurrenceDescriptorSeriesMap.values(); 260 Collection<TimeSeries> seriesCollection = pidMapValue.values();
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/uimodel/ |
UiFlagAttributeNode.java | 57 * Represents an XML attribute that is defined by a set of flag values, 60 * Note: in Android resources, a "flag" is a list of fixed values where one or 61 * more values can be selected using an "or", e.g. "align='left|top'". 62 * By contrast, an "enum" is a list of fixed values of which only one can be 135 String[] values = null; local 139 // Get enum values from the descriptor 140 values = ((FlagAttributeDescriptor) getDescriptor()).getNames(); 143 if (values == null) { 149 values = data.getAttributeValues(element_name, attr_name); 153 return values; [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/ |
AndroidTargetData.java | 66 * mAttributeValues is a map { key => list [ values ] }. 73 * with values in the UI. Uniquely named attributes have their values in {@link #mEnumValueMap}. 142 * All other values will throw an {@link IllegalArgumentException}. 233 * Returns this list of possible values for an XML attribute. 234 * <p/>This should only be called for attributes for which possible values depend on the 236 * <p/>For attributes that have the same values no matter the parent node, use 240 * @return an array of String with the possible values, or <code>null</code> if no values were 249 * Returns this list of possible values for an XML attribute 267 String[] values = mAttributeValues.get(key); local [all...] |
/external/bluetooth/glib/glib/ |
gkeyfile.c | 275 * values in lists. Typically ';' or ',' are used 1484 gchar *value, *string_value, **values; local 1763 gchar **values, *value; local 1975 gchar **values; local 2190 gchar **values; local 2255 GString *values; local 2401 gchar **values; local 2466 GString *values; local [all...] |
/dalvik/vm/analysis/ |
DexPrepare.cpp | 385 char values[argc][kMaxIntLen]; local 421 sprintf(values[2], "%d", DALVIK_VM_BUILD); 422 argv[curArg++] = values[2]; 424 sprintf(values[3], "%d", fd); 425 argv[curArg++] = values[3]; 427 sprintf(values[4], "%d", (int) dexOffset); 428 argv[curArg++] = values[4]; 430 sprintf(values[5], "%d", (int) dexLength); 431 argv[curArg++] = values[5]; 435 sprintf(values[7], "%d", (int) modWhen) [all...] |
/external/skia/gpu/src/ |
GrGpuGLShaders.cpp | 171 // GrRandoms nextU() values have patterns in the low bits 172 // So using nextU() % array_count might never take some values. 358 float values[4] = { local 370 values[1] = 1.0f - values[1]; 371 values[3] = 1.0f - values[3]; 373 // of elements so that values = (l, t, r, b). 374 SkTSwap(values[1], values[3]) 446 float values[6] = { local [all...] |
/external/openssl/crypto/store/ |
str_lib.c | 1272 } values[STORE_ATTR_TYPE_NUM+1]; member in struct:STORE_attr_info_st [all...] |
/frameworks/base/core/java/android/provider/ |
ContactsContract.java | 338 * replaced using the corresponding {@link #ACCOUNT_TYPE} and {@link #ACCOUNT_NAME} values.</li> 1542 ContentValues values = new ContentValues(); local 7057 final ContentValues values = new ContentValues(); local [all...] |
MediaStore.java | 757 ContentValues values = new ContentValues(4); local 758 values.put(Images.Thumbnails.KIND, kind); 759 values.put(Images.Thumbnails.IMAGE_ID, (int)id); 760 values.put(Images.Thumbnails.HEIGHT, thumb.getHeight()); 761 values.put(Images.Thumbnails.WIDTH, thumb.getWidth()); 763 Uri url = cr.insert(Images.Thumbnails.EXTERNAL_CONTENT_URI, values); 792 ContentValues values = new ContentValues(); local 793 values.put(Images.Media.TITLE, title); 794 values.put(Images.Media.DESCRIPTION, description) 1507 ContentValues values = new ContentValues(); local [all...] |
/frameworks/opt/calendar/src/com/android/calendarcommon/ |
EventRecurrence.java | 98 /* values for bit vector that keeps track of what we have already seen */ 296 int count, int[] values) 302 s.append(values[i]); 305 s.append(values[count]); 573 * properties. We don't have any case-sensitive values in RRULE, except possibly 578 * - allows lower-case property and enumeration values [optional] 582 * - improved validation on various values (e.g. UNTIL timestamps) 698 * @return A new array with values, sized to hold the exact number of elements. 702 int[] values; local 706 values = new int[1] [all...] |
/libcore/luni/src/main/java/java/util/prefs/ |
XMLParser.java | 213 String[] values = new String[keys.length]; local 215 values[i] = prefs.get(keys[i], null); 217 exportEntries(keys, values, out); 220 private static void exportEntries(String[] keys, String[] values, 228 if (values[i] != null) { 230 new String[] { keys[i], values[i] }, out); 490 String[] values = new String[length]; local 492 values[i] = properties.getProperty(keys[i]); 494 exportEntries(keys, values, out);
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/ |
HashMapTest.java | 211 assertNull("Failed to clear integer map values", map.get(i)); 228 // get the keySet() and values() on the original Map 230 Collection values = map.values(); local 231 assertEquals("values() does not work", 232 "value", values.iterator().next()); 237 Collection values2 = map2.values(); 238 assertTrue("values() is identical", values2 != values); 239 // values() and keySet() on the cloned() map should be differen 574 Object[] values = new Object[32768]; local 652 Collection values = myHashMap.values(); local [all...] |
LinkedHashMapTest.java | 279 * @tests java.util.LinkedHashMap#values() 282 // Test for method java.util.Collection java.util.LinkedHashMap.values() 283 Collection c = hm.values(); 293 Collection values = myLinkedHashMap.values(); local 295 "Test Returned Collection From LinkedHashMap.values()", values) 297 values.remove(new Integer(0)); 299 "Removing from the values collection should remove from the original map", 352 // get the keySet() and values() on the original Ma 354 Collection values = map.values(); local [all...] |
/frameworks/base/core/jni/ |
android_bluetooth_common.cpp | 688 } values[max_num_properties]; local 696 values[i].used = false; 713 values[prop_index].value = value; 714 values[prop_index].len = len; 715 values[prop_index].used = true; 724 if (values[i].used) { 725 create_prop_array(env, strArray, &properties[i], &values[i].value, values[i].len, 728 if (properties[i].type == DBUS_TYPE_ARRAY && values[i].used 729 && values[i].value.array_val != NULL [all...] |
/libcore/luni/src/test/java/tests/api/java/util/ |
LinkedHashMapTest.java | 300 * java.util.LinkedHashMap#values() 303 // Test for method java.util.Collection java.util.LinkedHashMap.values() 304 Collection c = hm.values(); 314 Collection values = myLinkedHashMap.values(); local 316 "Test Returned Collection From LinkedHashMap.values()", values) 318 values.remove(new Integer(0)); 320 "Removing from the values collection should remove from the original map", 373 // get the keySet() and values() on the original Ma 375 Collection values = map.values(); local [all...] |
/external/guava/src/com/google/common/primitives/ |
generate.sh | 120 * Compares the two specified {@code primtyp} values. The sign of the value 136 * @param array an array of {@code primtyp} values, possibly empty 154 * @param array an array of {@code primtyp} values, possibly empty 208 * @param array an array of {@code primtyp} values, possibly empty 231 * @param array a <i>nonempty</i> array of {@code primtyp} values 250 * @param array a <i>nonempty</i> array of {@code primtyp} values 267 * Returns the values from each provided array combined into a single array. 272 * @return a single array containing all the values from the source arrays, in 295 * <p>If you need to convert and concatenate several values (possibly even of 327 * Returns an array containing the same values as {@code array}, bu [all...] |
/frameworks/base/core/java/android/view/ |
MotionEvent.java | 32 * Motion events describe movements in terms of an action code and a set of axis values. 34 * down or up. The axis values describe the position and other movement properties. 38 * and a set of axis values that include the X and Y coordinates of the touch and 142 * The joystick axis values are normalized to a range of -1.0 to 1.0 where 0.0 corresponds 432 * to query the effective range of values. 457 * to query the effective range of values. 480 * 0 (no pressure at all) to 1 (normal pressure), although values higher than 1 526 * to query the effective range of values. 547 * to query the effective range of values. 569 * to query the effective range of values 3222 float[] values = mPackedAxisValues; local 3330 float[] values = mPackedAxisValues; local [all...] |
/frameworks/base/core/tests/coretests/src/android/database/ |
DatabaseGeneralTest.java | 87 mDatabase.execSQL("INSERT INTO test (data) VALUES ('" + sString1 + "');"); 88 mDatabase.execSQL("INSERT INTO test (data) VALUES ('" + sString2 + "');"); 89 mDatabase.execSQL("INSERT INTO test (data) VALUES ('" + sString3 + "');"); 103 ContentValues values = new ContentValues(1); local 104 values.put("data", "this is an updated test"); 105 assertEquals(1, mDatabase.update("test", values, "_id=1", null)); 117 mDatabase.execSQL("INSERT INTO phones (num) VALUES ('911');"); 118 mDatabase.execSQL("INSERT INTO phones (num) VALUES ('5555');"); 119 mDatabase.execSQL("INSERT INTO phones (num) VALUES ('+" + PHONE_NUMBER + "');"); 323 "INSERT INTO guess (numi,numf,str) VALUES (0,0.0,'ZoomZoomZoomZoom');") 450 ContentValues values = new ContentValues(1); local 785 ContentValues values = new ContentValues(); local [all...] |
/packages/apps/Email/src/com/android/email/provider/ |
EmailProvider.java | 129 // We'll cache the following four tables; sizes are best estimates of effective values 350 // Special URI to reset the new message count. Only update works, and content values 361 // ** NOTE For now, the accountKey must be set manually in the values! 944 Collection<Cursor> values = snapshot.values(); local 2239 values, null, null); local [all...] |
/external/webkit/Source/WebCore/bindings/v8/ |
V8GCController.cpp | 362 // Keep alive "dirty" primitive values (i.e. the ones that 364 // references between the style declaration and the values 368 Vector<v8::Persistent<v8::Value> > values; local 369 values.reserveCapacity(cssMutableStyleDeclaration->length()); 374 values.append(value); 376 if (!values.isEmpty()) 377 v8::V8::AddImplicitReferences(wrapper, values.data(), values.size()); 538 // These values are appropriate for Chromium only.
|