/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/graphics/src/android/graphics/cts/ |
Canvas_VertexModeTest.java | 46 method = "values", 51 VertexMode[] verMode = VertexMode.values();
|
/cts/tests/tests/net/src/android/net/cts/ |
NetworkInfo_DetailedStateTest.java | 49 notes = "Test values().", 50 method = "values", 54 DetailedState[] expected = DetailedState.values();
|
/cts/tests/tests/provider/src/android/provider/cts/ |
MediaStore_Audio_MediaTest.java | 91 ContentValues values = audio1.getContentValues(isInternal); local 94 Uri uri = mContentResolver.insert(mediaUri, values); 147 values = audio2.getContentValues(isInternal); 149 int result = mContentResolver.update(uri, values, null, null);
|
/dalvik/dx/src/com/android/dx/dex/file/ |
FieldIdsSection.java | 51 return fieldIds.values();
|
MethodIdsSection.java | 51 return methodIds.values();
|
ProtoIdsSection.java | 51 return protoIds.values();
|
/development/tools/mkstubs/src/com/android/mkstubs/sourcer/ |
AccessSourcer.java | 100 for (Flag f : Flag.values()) {
|
/external/chromium/base/ |
stl_util-inl.h | 255 // values from STL containers when they goes out of scope. This greatly 443 std::vector<T> SetToVector(const std::set<T>& values) { 445 result.reserve(values.size()); 446 result.insert(result.begin(), values.begin(), values.end());
|
/external/emma/core/java12/com/vladium/jcd/cls/ |
FieldCollection.java | 50 return result.values (); // IntVector optimizes for the empty case
|
MethodCollection.java | 50 return result.values (); // IntVector optimizes for the empty case
|
/external/guava/src/com/google/common/collect/ |
Maps.java | 436 * Returns an immutable map for which the {@link Map#values} are the given 440 * @param values the values to use when constructing the {@code Map} 446 * @throws NullPointerException if any elements of {@code values} is null, or 452 Iterable<V> values, Function<? super V, K> keyFunction) { 455 for (V value : values) { 625 transient Set<V> values; 649 @Override public Set<V> values() { 650 Set<V> result = values; 652 ? values = Collections.<V>unmodifiableSet(delegate.values() [all...] |
/external/skia/src/animator/ |
SkDisplayApply.h | 47 void applyValues(int animatorIndex, SkOperand* values, int count,
|
/external/v8/test/mjsunit/ |
mirror-boolean.js | 29 // Test the mirror object for boolean values 57 // Test all boolean values.
|
/external/webkit/WebCore/svg/ |
SVGFEColorMatrixElement.cpp | 92 SVGNumberList* numbers = values();
|
/frameworks/base/core/java/android/content/ |
ContentValues.java | 29 * This class is used to store a set of values that the {@link ContentResolver} 35 /** Holds the actual values */ 39 * Creates an empty set of values using the default initial size 48 * Creates an empty set of values using the given initial size 50 * @param size the initial size of the set of values 57 * Creates a set of values copied from the given set 59 * @param from the values to copy 66 * Creates a set of values copied from the given HashMap. This is used 69 * @param values the values to start wit [all...] |
/frameworks/base/core/java/android/database/ |
Cursor.java | 70 * range of values is -1 <= position <= count. 461 * updates included in values. After completion, 465 * @param values A map from row IDs to Maps associating column names with 466 * updated values. A null value indicates the field should be 475 ? extends Map<String,Object>> values); 571 * Returns a bundle of extra values. This is an optional way for cursors to provide out-of-band 575 * <p>These values may only change when requery is called. 576 * @return cursor-defined values, or Bundle.EMTPY if there are no values. Never null. 586 * @param extras extra values, or Bundle.EMTPY. Never null [all...] |
/frameworks/base/core/jni/android/graphics/ |
Shader.cpp | 23 float* values = autoHSV.ptr(); local 25 values[i] = SkScalarToFloat(hsv[i]); 32 float* values = autoHSV.ptr();; local 36 hsv[i] = SkFloatToScalar(values[i]);
|
/frameworks/base/core/tests/coretests/src/android/app/ |
SuggestionProvider.java | 97 public int update(Uri url, ContentValues values, String where, String[] whereArgs) {
|
/frameworks/base/include/android_runtime/ |
android_app_NativeActivity.h | 36 ANativeActivity* activity, int32_t values, int32_t mask);
|
/libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/ |
KeyRepTypeTest.java | 70 * @tests java.security.KeyRep.Type#values() 75 method = "values", 82 assertTrue(Arrays.equals(types, KeyRep.Type.values()));
|
/libcore/luni/src/test/java/tests/api/javax/net/ssl/ |
SSLEngineResultStatusTest.java | 35 * Test for <code> SSLEngineResult.Status.values() </code> 40 method = "values", 46 SSLEngineResult.Status[] enS = SSLEngineResult.Status.values();
|
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/netax25/ |
ax25.h | 146 /* Definitions for the AX.25 `values' fields: */ 168 unsigned short values[AX25_MAX_VALUES]; member in struct:ax25_parms_struct
|
/sdk/ddms/libs/ddmlib/src/com/android/ddmlib/log/ |
EventValueDescription.java | 36 * Represents the type of a numerical value. This is used to display values of vastly different 69 for (ValueType type : values()) { 103 * {@link ValueType#NOT_APPLICABLE} for all other {@link EventValueType} values.
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/ |
ExplodedRenderingHelper.java | 149 combineLinearLayout(childrenPadding.values(), padding, horizontal); 151 combineLinearLayout(childrenPadding.values(), padding, false /*horizontal*/); 153 combineLinearLayout(childrenPadding.values(), padding, true /*true*/); 160 for (int[] p : childrenPadding.values()) {
|