/external/libffi/testsuite/libffi.call/ |
strlen_win32.c | 20 void *values[MAX_ARGS]; local 24 values[0] = (void*) &s; 31 ffi_call(&cif, FFI_FN(my_stdcall_strlen), &rint, values); 35 ffi_call(&cif, FFI_FN(my_stdcall_strlen), &rint, values); 39 ffi_call(&cif, FFI_FN(my_stdcall_strlen), &rint, values);
|
float2.c | 21 void *values[MAX_ARGS]; local 26 values[0] = &f; 41 ffi_call(&cif, FFI_FN(ldblit), &ld, values);
|
/libcore/luni/src/main/java/org/apache/harmony/security/x509/tsp/ |
TimeStampReq.java | 171 Object[] values = (Object[]) in.content; 173 String objID = (values[2] == null) ? null : ObjectIdentifier 174 .toString((int[]) values[2]); 175 BigInteger nonce = (values[3] == null) ? null : new BigInteger( 176 (byte[]) values[3]); 178 if (values[5] == null) { 180 ASN1Integer.toIntValue(values[0]), 181 (MessageImprint) values[1], 184 (Boolean) values[4], 190 ASN1Integer.toIntValue(values[0]) [all...] |
TSTInfo.java | 221 Object[] values = (Object[]) in.content; 225 if (values[i] != null) { 226 accuracy[i] = ASN1Integer.toIntValue(values[i]); 235 protected void getValues(Object object, Object[] values) { 241 values[i] = BigInteger.valueOf(accuracy[i]).toByteArray(); 266 Object[] values = (Object[]) in.content; 268 BigInteger nonce = (values[7] == null) ? null : new BigInteger( 269 (byte[]) values[7]); 272 ASN1Integer.toIntValue(values[0]), 273 ObjectIdentifier.toString((int[]) values[1]) [all...] |
/libcore/luni/src/test/java/org/apache/harmony/annotation/tests/java/lang/annotation/ |
RetentionPolicyTest.java | 51 * @tests java.lang.annotation.RetentionPolicy#values() 55 RetentionPolicy[] values = RetentionPolicy.values(); local 56 assertTrue(values.length > 1); 57 Arrays.sort(values); 58 assertTrue(Arrays.binarySearch(values, RetentionPolicy.RUNTIME) >= 0);
|
/packages/apps/Contacts/src/com/android/contacts/model/ |
EntityDiff.java | 44 * keyed using {@link BaseColumns#_ID} values. 51 ContentValues values; local 54 // Before doesn't exist, so insert "after" values 62 builder.withValues(child.values); 70 // After doesn't exist, so delete "before" values 73 builder.withSelection(getSelectIdClause(child.values), null); 82 // Somewhere between, so update any changed values 83 values = after.getEntityValues(); 84 if (!before.getEntityValues().equals(values)) { 85 // Top-level values changed, so updat [all...] |
/packages/apps/Launcher2/src/com/android/launcher2/ |
ItemInfo.java | 101 * @param values 103 void onAddToDatabase(ContentValues values) { 104 values.put(LauncherSettings.BaseLauncherColumns.ITEM_TYPE, itemType); 106 values.put(LauncherSettings.Favorites.CONTAINER, container); 107 values.put(LauncherSettings.Favorites.SCREEN, screen); 108 values.put(LauncherSettings.Favorites.CELLX, cellX); 109 values.put(LauncherSettings.Favorites.CELLY, cellY); 110 values.put(LauncherSettings.Favorites.SPANX, spanX); 111 values.put(LauncherSettings.Favorites.SPANY, spanY); 131 static void writeBitmap(ContentValues values, Bitmap bitmap) [all...] |
LauncherAppWidgetInfo.java | 45 void onAddToDatabase(ContentValues values) { 46 super.onAddToDatabase(values); 47 values.put(LauncherSettings.Favorites.APPWIDGET_ID, appWidgetId);
|
UserFolderInfo.java | 55 void onAddToDatabase(ContentValues values) { 56 super.onAddToDatabase(values); 57 values.put(LauncherSettings.Favorites.TITLE, title.toString());
|
/cts/tests/tests/app/src/android/app/cts/ |
ActivityManagerProcessErrorStateInfoTest.java | 79 ActivityManager.ProcessErrorStateInfo values = local 82 assertEquals(condition, values.condition); 83 assertEquals(processName, values.processName); 84 assertEquals(pid, values.pid); 85 assertEquals(uid, values.uid); 86 assertEquals(tag, values.tag); 88 assertEquals(shortMsg, values.shortMsg); 89 assertEquals(longMsg, values.longMsg); 90 assertNull(values.crashData); // Deprecated field: always null 119 ActivityManager.ProcessErrorStateInfo values = new ActivityManager.ProcessErrorStateInfo() local [all...] |
ActivityManagerRecentTaskInfoTest.java | 72 ActivityManager.RecentTaskInfo values = ActivityManager.RecentTaskInfo.CREATOR local 74 assertEquals(id, values.id); 75 assertEquals(null, values.baseIntent); 76 assertEquals(null, values.origActivity); 87 values = ActivityManager.RecentTaskInfo.CREATOR 89 assertEquals(-1, values.id); 90 assertNotNull(values.baseIntent); 91 assertEquals(Intent.ACTION_CALL, values.baseIntent.getAction()); 92 assertEquals(origActivity, values.origActivity); 111 ActivityManager.RecentTaskInfo values = new ActivityManager.RecentTaskInfo() local [all...] |
/frameworks/base/core/java/android/provider/ |
SyncStateContract.java | 99 ContentValues values = new ContentValues(); local 100 values.put(Columns.DATA, data); 101 values.put(Columns.ACCOUNT_NAME, account.name); 102 values.put(Columns.ACCOUNT_TYPE, account.type); 103 provider.insert(uri, values); 108 ContentValues values = new ContentValues(); local 109 values.put(Columns.DATA, data); 110 values.put(Columns.ACCOUNT_NAME, account.name); 111 values.put(Columns.ACCOUNT_TYPE, account.type); 112 return provider.insert(uri, values); 117 ContentValues values = new ContentValues(); local 149 ContentValues values = new ContentValues(); local 168 ContentValues values = new ContentValues(); local [all...] |
/libcore/luni/src/main/java/org/apache/harmony/security/pkcs7/ |
SignerInfo.java | 162 public void getValues(Object object, Object[] values) { 164 values[0] = issAndSerial[0]; 165 values[1] = issAndSerial[1]; 185 protected void getValues(Object object, Object[] values) { 187 values[0] = new byte[] {(byte)si.version}; 189 values[1] = new Object[] { new Name(si.issuer.getName()), 197 values[2] = si.digestAlgorithm; 198 values[3] = si.authenticatedAttributes; 199 values[4] = si.digestEncryptionAlgorithm; 200 values[5] = si.encryptedDigest [all...] |
/cts/tests/tests/view/src/android/view/animation/cts/ |
ScaleAnimationTest.java | 119 float values[] = new float[9]; local 123 transformation.getMatrix().getValues(values); 124 assertMatrixValue(FROM_X, FROM_Y, values); 125 float trans1X = values[Matrix.MTRANS_X]; 126 float trans1Y = values[Matrix.MTRANS_Y]; 129 transformation.getMatrix().getValues(values); 130 assertMatrixValue(MID_X, MID_Y, values); 131 float trans2X = values[Matrix.MTRANS_X]; 132 float trans2Y = values[Matrix.MTRANS_Y]; 135 transformation.getMatrix().getValues(values); [all...] |
/libcore/luni/src/main/java/org/apache/harmony/security/x509/ |
IssuingDistributionPoint.java | 46 // values of the fields of the structure 56 * onlySomeReasons fields values. 202 Object[] values = (Object[]) in.content; 205 (DistributionPointName) values[0], 206 (ReasonFlags) values[3]); 208 if (values[1] != null) { 210 ((Boolean) values[1]).booleanValue()); 212 if (values[2] != null) { 214 ((Boolean) values[2]).booleanValue()); 216 if (values[4] != null) [all...] |
/external/webkit/WebCore/platform/graphics/filters/ |
FEColorMatrix.cpp | 37 FEColorMatrix::FEColorMatrix(FilterEffect* in, ColorMatrixType type, const Vector<float>& values) 41 , m_values(values) 45 PassRefPtr<FEColorMatrix> FEColorMatrix::create(FilterEffect* in, ColorMatrixType type, const Vector<float>& values) 47 return adoptRef(new FEColorMatrix(in, type, values)); 60 const Vector<float>& FEColorMatrix::values() const function in class:WebCore::FEColorMatrix 65 void FEColorMatrix::setValues(const Vector<float> &values) 67 m_values = values; 70 inline void matrix(double& red, double& green, double& blue, double& alpha, const Vector<float>& values) 72 double r = values[0] * red + values[1] * green + values[2] * blue + values[3] * alpha [all...] |
/libcore/luni/src/main/java/org/apache/harmony/security/asn1/ |
DerOutputStream.java | 75 Object[] values = val[index]; local 81 if (values[i] == null) { 85 content = values[i]; 102 Object[] values = val[index]; local 106 for (int i = 0; i < values.length; i++) { 108 content = values[i]; 127 private void push(int[] lengths, Object[] values) { 141 val[index] = values; 153 Object[] values = new Object[] { choice.type[i], content }; local 155 push(null, values); 166 Object[] values = new Object[1]; local 187 Object[] values = new Object[type.length]; local 238 Object[] values = new Object[cv.length]; local [all...] |
/packages/apps/Tag/src/com/android/apps/tag/provider/ |
TagContract.java | 78 ContentValues values = new ContentValues(); local 79 values.put(BYTES, msg.toByteArray()); 80 values.put(DATE, date); 81 values.put(STARRED, isStarred ? 1 : 0); 82 values.put(IS_MY_TAG, isMyTag ? 1 : 0); 83 values.put(TITLE, parsedMsg.getSnippet(context, Locale.getDefault())); 84 return values;
|
/dalvik/dx/src/com/android/dx/cf/code/ |
SwitchList.java | 28 /** {@code non-null;} list of test values */ 29 private final IntList values; field in class:SwitchList 32 * {@code non-null;} list of targets corresponding to the test values; there 48 this.values = new IntList(size); 56 values.setImmutable(); 77 return values.get(n); 112 * Gets the list of all case values. 117 return values; 154 values.add(value); 180 values.set(at, values.get(i)) [all...] |
/dalvik/dx/src/com/android/dx/dex/code/ |
ArrayData.java | 37 /** {@code non-null;} initial values to be filled into an array */ 38 private final ArrayList<Constant> values; field in class:ArrayData 56 * @param values {@code non-null;} initial values to be filled into an array 59 ArrayList<Constant> values, 67 if (values == null) { 68 throw new NullPointerException("values == null"); 71 int sz = values.size(); 74 throw new IllegalArgumentException("Illegal number of init values"); 95 this.values = values [all...] |
/frameworks/base/telephony/tests/telephonytests/src/com/android/internal/telephony/ |
SmsMessageBodyTest.java | 264 int[] values = {0, 0, 0, SmsMessage.ENCODING_7BIT, 0, 0}; local 282 values[0] = sTestMsgCounts[i]; 283 values[1] = len; 284 values[2] = sSeptetUnitsRemaining[i]; 286 callGsmLengthMethods(testStr, false, values); 287 callGsmLengthMethods(testStr, true, values); 288 callCdmaLengthMethods(testStr, false, values); 289 callCdmaLengthMethods(testStr, true, values); 296 int[] values = {0, 0, 0, SmsMessage.ENCODING_16BIT, 0, 0}; local 316 values[0] = sTestMsgCounts[i] 556 int[] values = android.telephony.gsm.SmsMessage.calculateLength(msgBody, use7bitOnly); local 586 int[] values = android.telephony.SmsMessage.calculateLength(msgBody, use7bitOnly); local [all...] |
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/ |
GroupsTest.java | 163 ContentValues values = new ContentValues(); local 164 values.put(Groups.NOTES, "New notes"); 165 mResolver.update(updateUri, values, null, null); 175 ContentValues values = new ContentValues(); local 176 values.put(Groups.DIRTY, 0); 177 values.put(Groups.NOTES, "other notes"); 178 assertEquals(1, mResolver.update(uri, values, null, null)); 214 ContentValues values = new ContentValues(); local 215 values.put(Groups.TITLE, "title2"); 216 mResolver.update(uri, values, null, null) 259 final ContentValues values = new ContentValues(); local 308 final ContentValues values = new ContentValues(); local 321 final ContentValues values = new ContentValues(); local 351 final ContentValues values = new ContentValues(); local [all...] |
/cts/tests/tests/provider/src/android/provider/cts/ |
MediaStore_Audio_PlaylistsTest.java | 74 ContentValues values = new ContentValues(); local 75 values.put(Playlists.NAME, "My favourites"); 76 values.put(Playlists.DATA, externalPlaylistPath); 78 values.put(Playlists.DATE_ADDED, dateAdded); 80 values.put(Playlists.DATE_MODIFIED, dateModified); 82 Uri uri = mContentResolver.insert(Playlists.EXTERNAL_CONTENT_URI, values); 100 values.clear(); 101 values.put(Playlists.NAME, "xxx"); 103 values.put(Playlists.DATE_MODIFIED, dateModified); 104 assertEquals(1, mContentResolver.update(uri, values, null, null)) 121 ContentValues values = new ContentValues(); local [all...] |
/external/bluetooth/glib/gio/ |
gioenumtypes.c.template | 19 static const G@Type@Value values[] = { 30 g_@type@_register_static (g_intern_static_string ("@EnumName@"), values);
|
/frameworks/base/keystore/java/android/security/ |
KeyStore.java | 60 ArrayList<byte[]> values = execute('g', key); local 61 return (values == null || values.isEmpty()) ? null : values.get(0); 97 ArrayList<byte[]> values = execute('s', prefix); local 98 return (values == null) ? null : values.toArray(new byte[values.size()][]); 102 byte[][] values = saw(getBytes(prefix)); 103 if (values == null) 184 ArrayList<byte[]> values = new ArrayList<byte[]>(); local [all...] |