HomeSort by relevance Sort by last modified time
    Searched refs:values (Results 976 - 1000 of 2119) sorted by null

<<31323334353637383940>>

  /external/protobuf/gtest/include/gtest/
gtest-typed-test.h 78 typename TestFixture::List values;
79 values.push_back(n);
  /external/skia/include/core/
SkMetaData.h 61 SkScalar values[] = NULL) const;
96 SkScalar* setScalars(const char name[], int count, const SkScalar values[] = NULL);
151 element's type is returned (if not null), and the number of data values
  /external/skia/src/svg/
SkSVGPaintState.cpp 219 SkScalar values[6];
220 SkParse::FindScalars(mat.c_str() + 1, values, 6);
223 matrix.setScaleX(values[0]);
224 matrix.setSkewY(values[1]);
225 matrix.setSkewX(values[2]);
226 matrix.setScaleY(values[3]);
227 matrix.setTranslateX(values[4]);
228 matrix.setTranslateY(values[5]);
  /external/stlport/test/eh/
bcb.mak 13 # It is recommended to use the IDE to change any of the values in this
  /external/valgrind/main/memcheck/tests/darwin/
aio.stderr.exp 22 Use --track-origins=yes to see where uninitialised values come from
  /external/webkit/LayoutTests/fast/dom/DeviceOrientation/script-tests/
null-values.js 1 description('Tests using null values for some of the event properties.');
  /external/webkit/Source/WebCore/inspector/front-end/
DatabaseQueryView.js 89 accumulateMatches(["SELECT ", "FROM ", "WHERE ", "LIMIT ", "DELETE FROM ", "CREATE ", "DROP ", "TABLE ", "INDEX ", "UPDATE ", "INSERT INTO ", "VALUES ("]);
140 _queryFinished: function(query, columnNames, values)
142 var dataGrid = WebInspector.panels.resources.dataGridForResult(columnNames, values);
  /frameworks/base/core/java/android/animation/
LayoutTransition.java 69 * But the actual target object, as well as the start and end values for those properties, are
72 * values of the target being animated (such as one of the items in a layout container that is
73 * moving as a result of the layout event) as well as the values that are changing (such as the
74 * position and size of that object). The actual values that are pushed to each animation
78 * Values for these properties are updated with the pre- and post-layout
79 * values when the transition begins. Custom animations will be similarly populated with
80 * the target and values being animated, assuming they use ObjectAnimator objects with
184 * are inserted, so that we process events (such as setting up start values) in the same order.
198 * the pre-layout values can be cached in that animation. Then a listener is added to the
200 * is set with the final values and then run. If not, the animation is not started. Whe
    [all...]
  /frameworks/base/core/java/android/net/
LinkCapabilities.java 38 /** The Map of Keys to Values */
66 * in kilobits per second (kbps). Values should be strings such
74 * Values should be strings such as "50", "100", "1500", etc.
81 * Values will be strings such as "50", "100", "1500", etc.
88 * Values should be strings such as "50", "100", "1500", etc.
98 * Values should be strings such as "50", "100", "1500", etc.
105 * Values will be strings such as "50", "100", "1500", etc.
112 * Values should be strings such as "50", "300", "500", etc.
120 * Values will be strings such as "wlan0", "rmnet0"
129 * Values will be strings such as "wlan0", "rmnet0
287 public Collection<String> values() { method in class:LinkCapabilities
    [all...]
  /frameworks/base/core/java/android/nfc/
NfcActivityManager.java 192 for (NfcActivityState state : mNfcState.values()) {
213 for (NfcActivityState state : mNfcState.values()) {
  /frameworks/base/core/tests/coretests/src/android/app/activity/
LocalProvider.java 60 db.execSQL("INSERT INTO data (text, integer) VALUES ('first data', 100);");
130 public int update(Uri url, ContentValues values, String where, String[] whereArgs) {
139 count = db.update("data", values, "_id=" + rowId, null);
  /frameworks/base/tools/preload/
PrintHtmlDiff.java 43 for (Proc proc : root.processes.values()) {
55 for (LoadedClass loadedClass : root.loadedClasses.values()) {
  /libcore/luni/src/main/java/java/io/
StreamTokenizer.java 120 * Private constructor to initialize the default values according to the
125 * Initialize the default state per specification. All byte values 'A'
133 * All byte values '\u0000' through '\u0020' are considered to be white
179 * <li>All byte values 'A' through 'Z', 'a' through 'z', and '&#92;u00A0'
181 * <li>All byte values '&#92;u0000' through '&#92;u0020' are considered to
602 // Values determined through experimentation
  /libcore/luni/src/main/java/java/util/jar/
Attributes.java 27 * The {@code Attributes} class is used to store values for manifest entries.
28 * Attribute keys are generally instances of {@code Attributes.Name}. Values
35 * {@link Attributes.Name}) of a JAR file manifest to arbitrary values. The
188 * Constructs an {@code Attributes} instance obtaining keys and values from
319 * @return the values associated with the removed key, {@code null} if not
337 * Returns a collection of all the values present in this {@code
340 * @return a collection of all values present.
342 public Collection<Object> values() { method in class:Attributes
343 return map.values();
372 * contain the same keys and values
    [all...]
  /packages/apps/DeskClock/src/com/android/deskclock/
AlarmProvider.java 99 public int update(Uri url, ContentValues values, String where, String[] whereArgs) {
108 count = db.update("alarms", values, "_id=" + rowId, null);
  /packages/apps/Email/tests/src/com/android/email/
MockSharedPreferences.java 127 public Editor putStringSet(String key, Set<String> values) {
128 mTempValues.put(key, values);
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
SearchableCorpora.java 73 return Collections.unmodifiableCollection(mCorporaByName.values());
136 if (DBG) Log.d(TAG, "Updated corpora: " + mCorporaBySource.values());
  /sdk/common/src/com/android/resources/
FolderTypeRelationship.java 42 add(ResourceType.ARRAY, ResourceFolderType.VALUES);
43 add(ResourceType.ATTR, ResourceFolderType.VALUES);
44 add(ResourceType.BOOL, ResourceFolderType.VALUES);
45 add(ResourceType.COLOR, ResourceFolderType.VALUES);
47 add(ResourceType.DECLARE_STYLEABLE, ResourceFolderType.VALUES);
48 add(ResourceType.DIMEN, ResourceFolderType.VALUES);
49 add(ResourceType.DRAWABLE, ResourceFolderType.VALUES);
51 add(ResourceType.FRACTION, ResourceFolderType.VALUES);
52 add(ResourceType.ID, ResourceFolderType.VALUES);
53 add(ResourceType.INTEGER, ResourceFolderType.VALUES);
    [all...]
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/
ImageLoader.java 101 for (ImageLoader loader : mInstances.values()) {
107 for (Image image : mLoadedImages.values()) {
  /external/chromium/chrome/common/extensions/docs/examples/extensions/benchmark/jst/
jsevalcontext.js 347 * through string attribute values.
370 // TODO(mesch): It is insufficient to split the values by simply
374 var values = expr.split(REGEXP_semicolon);
375 for (var i = 0, I = jsLength(values); i < I; ++i) {
376 var colon = values[i].indexOf(CHAR_colon);
380 var label = stringTrim(values[i].substr(0, colon));
381 var value = jsEvalToFunction(values[i].substr(colon + 1));
401 var values = expr.split(REGEXP_semicolon);
402 for (var i = 0, I = jsLength(values); i < I; ++i) {
403 if (values[i]) {
    [all...]
  /external/chromium/chrome/common/extensions/docs/examples/extensions/irc/servlet/jstemplate/
jsevalcontext.js 347 * through string attribute values.
370 // TODO(mesch): It is insufficient to split the values by simply
374 var values = expr.split(REGEXP_semicolon);
375 for (var i = 0, I = jsLength(values); i < I; ++i) {
376 var colon = values[i].indexOf(CHAR_colon);
380 var label = stringTrim(values[i].substr(0, colon));
381 var value = jsEvalToFunction(values[i].substr(colon + 1));
401 var values = expr.split(REGEXP_semicolon);
402 for (var i = 0, I = jsLength(values); i < I; ++i) {
403 if (values[i])
    [all...]
  /external/webkit/Source/WebCore/css/
CSSParser.cpp 783 // The purpose of this code is to implement the WinIE quirk that allows unit types to be separated from their numeric values
2191 RefPtr<CSSValue> values[cMaxFillProperties]; local
2342 RefPtr<CSSValue> values[numProperties]; local
2400 RefPtr<CSSValue> values[numProperties]; local
2645 RefPtr<CSSValueList> values = CSSValueList::createCommaSeparated(); local
2668 RefPtr<CSSValueList> values = CSSValueList::createCommaSeparated(); local
2997 RefPtr<CSSValueList> values; local
3341 RefPtr<CSSValueList> values; local
3858 RefPtr<CSSValueList> values; local
3905 RefPtr<CSSValueList> values; local
3952 RefPtr<CSSValueList> values; local
4073 RefPtr<CSSValueList> values = CSSValueList::createCommaSeparated(); local
4702 RefPtr<CSSValueList> values; member in struct:WebCore::ShadowParseContext
    [all...]
  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
CalendarDatabaseHelper.java 243 public long calendarsInsert(ContentValues values) {
244 return mCalendarsInserter.insert(values);
247 public long colorsInsert(ContentValues values) {
248 return mColorsInserter.insert(values);
251 public long eventsInsert(ContentValues values) {
252 return mEventsInserter.insert(values);
255 public long eventsRawTimesInsert(ContentValues values) {
256 return mEventsRawTimesInserter.insert(values);
259 public long eventsRawTimesReplace(ContentValues values) {
260 return mEventsRawTimesInserter.replace(values);
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/
AccelerometerTestRenderer.java 262 normalize(event.values);
269 event.values[1] *= -1;
271 crossProduct(event.values, Z_AXIS, mCrossProd);
272 mAngle = (float) Math.acos(dotProduct(event.values, Z_AXIS));
  /cts/tests/tests/database/src/android/database/sqlite/cts/
SQLiteStatementTest.java 82 ContentValues values = new ContentValues(); local
83 values.put("_id", i);
84 values.put("data", BLOBS[i]);
85 mDatabase.insert("blob_test", null, values);
103 "INSERT INTO test (data) VALUES ('" + STRING2 + "')");
157 "INSERT INTO test (data) VALUES ('" + STRING2 + "')");
162 statement = mDatabase.compileStatement("insert or ignore into test values(1, 1);");
195 mDatabase.execSQL("INSERT INTO test VALUES (1234, 'hello');");
224 mDatabase.execSQL("INSERT INTO test VALUES (1234, 'hello');");

Completed in 1808 milliseconds

<<31323334353637383940>>