Searched refs:values (Results 151 - 175 of 807) sorted by relevance

1234567891011>>

/frameworks/opt/telephony/src/java/com/google/android/mms/pdu/
H A DPduPersister.java436 // Store simple string values directly in the database instead of an
685 ContentValues values = new ContentValues(3);
688 values.clear(); // Clear all values first.
689 values.put(Addr.ADDRESS, toIsoString(addr.getTextString()));
690 values.put(Addr.CHARSET, addr.getCharacterSet());
691 values.put(Addr.TYPE, type);
694 SqliteWrapper.insert(mContext, mContentResolver, uri, values);
705 ContentValues values = new ContentValues(8);
709 values
[all...]
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
H A DSubscriptionControllerTest.java79 ArrayList<Object> values = new ArrayList<Object>();
86 values.add(initialValues.get(key));
88 values.add(null);
91 cursor.addRow(values.toArray());
106 public Uri insert(Uri uri, ContentValues values) { argument
107 values.put(SubscriptionManager.UNIQUE_KEY_SUBSCRIPTION_ID, 0);
108 mSubscriptionArray.add(values);
127 public int update(android.net.Uri uri, android.content.ContentValues values, argument
131 for (String key : values.keySet()) {
132 val.put(key, values
[all...]
/frameworks/base/core/java/android/security/keymaster/
H A DKeymasterArguments.java78 * Adds a repeated enum tag with the provided values.
82 public void addEnums(int tag, int... values) { argument
86 for (int value : values) {
109 * Returns all values of the specified repeating enum tag.
117 List<Integer> values = new ArrayList<Integer>();
120 values.add(getEnumTagValue(arg));
123 return values;
185 * Returns all values of the specified repeating unsigned 64-bit long tag.
193 List<BigInteger> values = new ArrayList<BigInteger>();
196 values
[all...]
/frameworks/base/core/java/android/transition/
H A DChangeImageTransform.java89 Map<String, Object> values = transitionValues.values;
97 values.put(PROPNAME_BOUNDS, bounds);
119 values.put(PROPNAME_MATRIX, matrix);
142 * @param startValues The values for a specific target in the start scene.
143 * @param endValues The values for the target in the end scene.
153 Rect startBounds = (Rect) startValues.values.get(PROPNAME_BOUNDS);
154 Rect endBounds = (Rect) endValues.values.get(PROPNAME_BOUNDS);
159 Matrix startMatrix = (Matrix) startValues.values.get(PROPNAME_MATRIX);
160 Matrix endMatrix = (Matrix) endValues.values
[all...]
/frameworks/base/core/jni/
H A Dandroid_animation_PropertyValuesHolder.cpp106 jvalue* values = new jvalue[parameterCount]; local
108 values[i].f = floatValues[i];
110 env->CallVoidMethodA(target, reinterpret_cast<jmethodID>(methodID), values);
111 delete[] values;
133 jvalue* values = new jvalue[parameterCount]; local
135 values[i].i = intValues[i];
137 env->CallVoidMethodA(target, reinterpret_cast<jmethodID>(methodID), values);
138 delete[] values;
/frameworks/base/media/mca/filterfw/native/core/
H A Dvalue.h61 Value MakeIntArrayValue(const int* values, int count);
62 Value MakeFloatArrayValue(const float* values, int count);
H A Dshader_program.cpp65 values(NULL),
696 const int* values,
701 // Make sure we have values at all
713 // Make sure passed values are compatible
723 glUniform1iv(var, n, values);
727 glUniform2iv(var, n, values);
731 glUniform3iv(var, n, values);
735 glUniform4iv(var, n, values);
747 const float* values,
752 // Make sure we have values a
695 SetUniformValue(ProgramVar var, const int* values, int count) argument
746 SetUniformValue(ProgramVar var, const float* values, int count) argument
809 SetUniformValue(ProgramVar var, const std::vector<int>& values) argument
813 SetUniformValue(ProgramVar var, const std::vector<float>& values) argument
1057 const float* values = reinterpret_cast<const float*>(attrib.values); local
[all...]
/frameworks/base/packages/Osu/src/com/android/anqp/
H A DHSIconFileElement.java37 mStatusCode = statusID < StatusCode.values().length ? StatusCode.values()[statusID] : null;
/frameworks/base/packages/Osu/src/com/android/anqp/eap/
H A DCredential.java38 mCredType = typeID < CredType.values().length ?
39 CredType.values()[typeID] :
/frameworks/base/tests/ActivityTests/src/com/google/android/test/activity/
H A DSingleUserProvider.java46 public Uri insert(Uri uri, ContentValues values) { argument
56 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { argument
/frameworks/base/tools/aapt2/
H A DResourceValues_test.cpp27 a.values[Plural::One] = util::make_unique<String>(pool.MakeRef("one"));
28 a.values[Plural::Other] = util::make_unique<String>(pool.MakeRef("other"));
31 b.values[Plural::One] = util::make_unique<String>(pool.MakeRef("une"));
32 b.values[Plural::Other] = util::make_unique<String>(pool.MakeRef("autre"));
35 c.values[Plural::One] = util::make_unique<String>(pool.MakeRef("one"));
36 c.values[Plural::Other] = util::make_unique<String>(pool.MakeRef("other"));
46 a.values[Plural::One] = util::make_unique<String>(pool.MakeRef("one"));
47 a.values[Plural::Other] = util::make_unique<String>(pool.MakeRef("other"));
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/drawable/
H A DAnimatedVectorDrawable_Delegate.java222 * Class that allows setting a value and holds the range of values for the given property.
250 void setValues(float... values) { argument
251 mValues = PropertyValuesHolder.ofFloat("floatValue", values);
259 void setValues(int... values) { argument
260 mValues = PropertyValuesHolder.ofInt("intValue", values);
269 private static PropertySetter of(Consumer<Integer> valueSetter, int... values) { argument
271 setter.setValues(values);
286 private static PropertySetter of(Consumer<Float> valueSetter, float... values) { argument
288 setter.setValues(values);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DTone.java23 * Enumeration for representing the tone values for use with PLAY TONE
161 for (Tone e : Tone.values()) {
186 return Tone.values()[in.readInt()];
/frameworks/rs/
H A DrsClosure.h27 const int64_t* values, // Allocations or primitive (numeric) types
37 const int64_t* values, // Allocations or primitive (numeric) types
/frameworks/support/fragment/tests/java/android/support/v4/app/
H A DTrackingTransition.java51 transitionValues.values.put(PROP, 0);
56 transitionValues.values.put(PROP, 1);
/frameworks/support/frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/content/
H A DSharingSupportProvider.java60 public Uri insert(Uri uri, ContentValues values) { argument
70 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { argument
/frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/content/
H A DSharingSupportProvider.java60 public Uri insert(Uri uri, ContentValues values) { argument
70 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { argument
/frameworks/support/transition/src/android/support/transition/
H A DChangeImageTransform.java90 Map<String, Object> values = transitionValues.values;
98 values.put(PROPNAME_BOUNDS, bounds);
99 values.put(PROPNAME_MATRIX, copyImageMatrix(imageView));
122 * @param startValues The values for a specific target in the start scene.
123 * @param endValues The values for the target in the end scene.
133 Rect startBounds = (Rect) startValues.values.get(PROPNAME_BOUNDS);
134 Rect endBounds = (Rect) endValues.values.get(PROPNAME_BOUNDS);
139 Matrix startMatrix = (Matrix) startValues.values.get(PROPNAME_MATRIX);
140 Matrix endMatrix = (Matrix) endValues.values
[all...]
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DParallaxTarget.java27 * When {@link #isDirectMapping()} is false, {@link ParallaxEffect} transforms the values of
82 public PropertyValuesHolderTarget(Object targetObject, PropertyValuesHolder values) { argument
83 mAnimator = ObjectAnimator.ofPropertyValuesHolder(targetObject, values);
/frameworks/support/v7/preference/tests/src/android/support/v7/preference/tests/helpers/
H A DPreferenceWrapper.java47 public boolean putStringSet(Set<String> values) { argument
48 return persistStringSet(values);
/frameworks/av/media/mtp/
H A DMtpDataPacket.cpp351 void MtpDataPacket::putAInt8(const int8_t* values, int count) {
354 putInt8(*values++);
357 void MtpDataPacket::putAUInt8(const uint8_t* values, int count) {
360 putUInt8(*values++);
363 void MtpDataPacket::putAInt16(const int16_t* values, int count) {
366 putInt16(*values++);
369 void MtpDataPacket::putAUInt16(const uint16_t* values, int count) {
372 putUInt16(*values++);
375 void MtpDataPacket::putAUInt16(const UInt16List* values) {
376 size_t count = (values
[all...]
/frameworks/base/cmds/content/src/com/android/commands/content/
H A DContent.java197 ContentValues values = new ContentValues();
204 parseBindValue(values);
213 if (values.size() == 0) {
217 return new InsertCommand(uri, userId, values);
246 ContentValues values = new ContentValues();
255 parseBindValue(values);
264 if (values.size() == 0) {
268 return new UpdateCommand(uri, userId, values, where);
276 ContentValues values = new ContentValues();
287 parseBindValue(values);
370 parseBindValue(ContentValues values) argument
510 CallCommand(Uri uri, int userId, String method, String arg, ContentValues values) argument
[all...]
/frameworks/base/core/java/android/app/
H A DSharedElementCallback.java184 float[] values = new float[9];
185 matrix.getValues(values);
186 bundle.putFloatArray(BUNDLE_SNAPSHOT_IMAGE_MATRIX, values);
231 float[] values = bundle.getFloatArray(BUNDLE_SNAPSHOT_IMAGE_MATRIX);
233 matrix.setValues(values);
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DConfigurationMap.java102 for (WifiConfiguration config : mPerIDForCurrentUser.values()) {
112 for (WifiConfiguration config : mPerIDForCurrentUser.values()) {
121 for (WifiConfiguration config : mPerIDForCurrentUser.values()) {
130 return mPerID.values();
134 return mPerIDForCurrentUser.values();
/frameworks/base/services/core/java/com/android/server/
H A DGestureLauncherService.java341 float[] values = event.values;
343 "values=[%.4f, %.4f, %.4f].", values[0], values[1], values[2]));
362 // values[0]: ratio between total time duration when accel is turned on and time
364 // values[1]: ratio between total time duration when gyro is turned on and time duration
366 // values[2]: extra information
367 float[] values
[all...]

Completed in 1575 milliseconds

1234567891011>>