HomeSort by relevance Sort by last modified time
    Searched full:values (Results 76 - 100 of 13487) sorted by null

1 2 34 5 6 7 8 91011>>

  /libcore/luni/src/main/java/org/apache/harmony/security/asn1/
DerOutputStream.java 65 Object[] values = val[index]; local
70 if (values[i] == null) {
74 content = values[i];
90 Object[] values = val[index]; local
94 for (int i = 0; i < values.length; i++) {
95 content = values[i];
101 private void push(int[] lengths, Object[] values) {
114 val[index] = values;
121 Object[] values = new Object[] { choice.type[i], content }; local
123 push(null, values);
133 Object[] values = new Object[1]; local
153 Object[] values = new Object[type.length]; local
203 Object[] values = new Object[cv.length]; local
    [all...]
  /packages/apps/Contacts/tests/src/com/android/contacts/calllog/
CallLogQueryTestUtils.java 26 * Helper class to create test values for {@link CallLogQuery}.
30 Object[] values = new Object[]{ local
34 assertEquals(CallLogQuery._PROJECTION.length, values.length);
35 return values;
39 Object[] values = new Object[]{ local
43 Assert.assertEquals(CallLogQuery.EXTENDED_PROJECTION.length, values.length);
44 return values;
  /external/proguard/src/proguard/evaluation/
Variables.java 27 * objects. Values are generalizations of all values that have been stored in
37 protected Value[] values; field in class:Variables
46 this.values = new Value[size];
56 // Create the values array.
59 // Copy the values.
69 // Is the values array large enough?
70 if (size > values.length)
73 values = new Value[size];
78 for (int index = 0; index < values.length; index++
    [all...]
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
BaseContactsProvider2Test.java 182 ContentValues values = new ContentValues(); local
183 extrasVarArgsToValues(values, extras);
185 Uri contactUri = mResolver.insert(uri, values);
195 ContentValues values = new ContentValues(); local
196 extrasVarArgsToValues(values, extras);
197 return mResolver.update(uri, values, null, null);
200 private static void extrasVarArgsToValues(ContentValues values, String... extras) {
202 values.put(extras[i], extras[i + 1]);
222 ContentValues values = new ContentValues(); local
223 values.put(Groups.SOURCE_ID, sourceId)
239 ContentValues values = new ContentValues(); local
251 ContentValues values = new ContentValues(); local
302 ContentValues values = new ContentValues(); local
325 ContentValues values = new ContentValues(); local
340 ContentValues values = new ContentValues(); local
351 ContentValues values = new ContentValues(); local
368 ContentValues values = new ContentValues(); local
377 ContentValues values = new ContentValues(); local
386 ContentValues values = new ContentValues(); local
394 ContentValues values = new ContentValues(); local
421 ContentValues values = new ContentValues(); local
436 ContentValues values = new ContentValues(); local
484 ContentValues values = new ContentValues(); local
497 ContentValues values = new ContentValues(); local
507 ContentValues values = new ContentValues(); local
516 ContentValues values = new ContentValues(); local
521 RawContacts.CONTENT_URI, rawContactId), values, null, null); local
525 ContentValues values = new ContentValues(); local
788 ContentValues values = new ContentValues(); local
798 ContentValues values = new ContentValues(); local
809 ContentValues values = new ContentValues(); local
1425 ContentValues values = new ContentValues(); local
1434 ContentValues values = new ContentValues(); local
1449 ContentValues values = new ContentValues(); local
1469 ContentValues values = new ContentValues(); local
    [all...]
  /external/libffi/testsuite/libffi.call/
return_ldl.c 18 void *values[MAX_ARGS]; local
22 values[0] = &ldl;
30 ffi_call(&cif, FFI_FN(return_ldl), &rldl, values);
  /external/llvm/test/TableGen/
LoLoL.td 5 list<int> values = v;
17 // CHECK: values = [0]
18 // CHECK: values = [1, 2, 3]
  /packages/apps/Browser/tests/src/com/android/browser/tests/utils/
BP2TestCaseHelper.java 126 Uri mockInsert(Uri uri, ContentValues values) {
128 Uri ret = getMockContentResolver().insert(uri, values);
133 int mockUpdate(Uri uri, ContentValues values, String where,
136 int ret = getMockContentResolver().update(uri, values, where, selectionArgs);
147 ContentValues values = new ContentValues(); local
148 values.put(BrowserContract.Bookmarks.TITLE, title);
149 values.put(BrowserContract.Bookmarks.URL, url);
150 values.put(BrowserContract.Bookmarks.IS_FOLDER, 0);
151 return insertBookmark(values);
154 public Uri insertBookmark(ContentValues values) {
163 ContentValues values = new ContentValues(); local
184 ContentValues values = new ContentValues(); local
195 ContentValues values = new ContentValues(); local
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
DataRowHandlerForStructuredName.java 46 ContentValues values) {
47 fixStructuredNameComponents(values, values);
49 long dataId = super.insert(db, txContext, rawContactId, values);
51 String name = values.getAsString(StructuredName.DISPLAY_NAME);
52 Integer fullNameStyle = values.getAsInteger(StructuredName.FULL_NAME_STYLE);
57 insertNameLookupForPhoneticName(rawContactId, dataId, values);
64 public boolean update(SQLiteDatabase db, TransactionContext txContext, ContentValues values,
69 final ContentValues augmented = getAugmentedValues(db, dataId, values);
74 fixStructuredNameComponents(augmented, values);
    [all...]
  /packages/providers/ContactsProvider/tests/assets/testSynced/
legacy_contacts.sql 6 INSERT INTO _sync_state VALUES(1,'lemmytest@gmail.com','');
8 INSERT INTO _sync_state_metadata VALUES(2);
10 INSERT INTO android_metadata VALUES('en_US');
13 INSERT INTO contact_methods VALUES(1,3,1,'weyj@xtdt.com',NULL,1,NULL,1);
14 INSERT INTO contact_methods VALUES(2,4,1,'mail@dom.com',NULL,1,NULL,1);
15 INSERT INTO contact_methods VALUES(3,8,1,'doooooo@sgghhh.com',NULL,1,NULL,1);
16 INSERT INTO contact_methods VALUES(4,9,1,'ahhh@glkbgghh.com',NULL,1,NULL,1);
17 INSERT INTO contact_methods VALUES(5,12,1,'notsynced@gmail.com',NULL,1,NULL,1);
20 INSERT INTO fave_msg_status VALUES(100,16359444020020760201000000000000000000000000000000000000000000000000000000000000,1268764830477,2);
23 INSERT INTO faves VALUES(1,1,0,'','',000000000000,NULL,NULL,NULL)
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/filters/
FEColorMatrix.cpp 38 FEColorMatrix::FEColorMatrix(Filter* filter, ColorMatrixType type, const Vector<float>& values)
41 , m_values(values)
45 PassRefPtr<FEColorMatrix> FEColorMatrix::create(Filter* filter, ColorMatrixType type, const Vector<float>& values)
47 return adoptRef(new FEColorMatrix(filter, type, values));
63 const Vector<float>& FEColorMatrix::values() const function in class:WebCore::FEColorMatrix
68 bool FEColorMatrix::setValues(const Vector<float> &values)
70 if (m_values == values)
72 m_values = values;
76 inline void matrix(double& red, double& green, double& blue, double& alpha, const Vector<float>& values)
78 double r = values[0] * red + values[1] * green + values[2] * blue + values[3] * alpha + values[4] * 255
    [all...]
  /prebuilt/darwin-x86/toolchain/arm-eabi-4.2.1/lib/gcc/arm-eabi/4.2.1/include/
mmintrin.h 63 /* Pack the four 16-bit values from M1 into the lower four 8-bit values of
64 the result, and the four 16-bit values from M2 into the upper four 8-bit
65 values of the result, all with signed saturation. */
72 /* Pack the two 32-bit values from M1 in to the lower two 16-bit values of
73 the result, and the two 32-bit values from M2 into the upper two 16-bit
74 values of the result, all with signed saturation. */
83 signed saturation for values that do not fit exactly into 32-bits. */
90 /* Pack the four 16-bit values from M1 into the lower four 8-bit values o
    [all...]
  /prebuilt/darwin-x86/toolchain/arm-eabi-4.2.1/lib/gcc/arm-eabi/4.2.1/install-tools/include/
mmintrin.h 63 /* Pack the four 16-bit values from M1 into the lower four 8-bit values of
64 the result, and the four 16-bit values from M2 into the upper four 8-bit
65 values of the result, all with signed saturation. */
72 /* Pack the two 32-bit values from M1 in to the lower two 16-bit values of
73 the result, and the two 32-bit values from M2 into the upper two 16-bit
74 values of the result, all with signed saturation. */
83 signed saturation for values that do not fit exactly into 32-bits. */
90 /* Pack the four 16-bit values from M1 into the lower four 8-bit values o
    [all...]
  /prebuilt/darwin-x86/toolchain/arm-eabi-4.3.1/lib/gcc/arm-eabi/4.3.1/include/
mmintrin.h 63 /* Pack the four 16-bit values from M1 into the lower four 8-bit values of
64 the result, and the four 16-bit values from M2 into the upper four 8-bit
65 values of the result, all with signed saturation. */
72 /* Pack the two 32-bit values from M1 in to the lower two 16-bit values of
73 the result, and the two 32-bit values from M2 into the upper two 16-bit
74 values of the result, all with signed saturation. */
83 signed saturation for values that do not fit exactly into 32-bits. */
90 /* Pack the four 16-bit values from M1 into the lower four 8-bit values o
    [all...]
  /prebuilt/darwin-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/include/
mmintrin.h 60 /* Pack the four 16-bit values from M1 into the lower four 8-bit values of
61 the result, and the four 16-bit values from M2 into the upper four 8-bit
62 values of the result, all with signed saturation. */
69 /* Pack the two 32-bit values from M1 in to the lower two 16-bit values of
70 the result, and the two 32-bit values from M2 into the upper two 16-bit
71 values of the result, all with signed saturation. */
80 signed saturation for values that do not fit exactly into 32-bits. */
87 /* Pack the four 16-bit values from M1 into the lower four 8-bit values o
    [all...]
  /prebuilt/darwin-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/include/
mmintrin.h 60 /* Pack the four 16-bit values from M1 into the lower four 8-bit values of
61 the result, and the four 16-bit values from M2 into the upper four 8-bit
62 values of the result, all with signed saturation. */
69 /* Pack the two 32-bit values from M1 in to the lower two 16-bit values of
70 the result, and the two 32-bit values from M2 into the upper two 16-bit
71 values of the result, all with signed saturation. */
80 signed saturation for values that do not fit exactly into 32-bits. */
87 /* Pack the four 16-bit values from M1 into the lower four 8-bit values o
    [all...]
  /prebuilt/darwin-x86/toolchain/arm-linux-androideabi-4.4.x/lib/gcc/arm-linux-androideabi/4.4.3/include/
mmintrin.h 60 /* Pack the four 16-bit values from M1 into the lower four 8-bit values of
61 the result, and the four 16-bit values from M2 into the upper four 8-bit
62 values of the result, all with signed saturation. */
69 /* Pack the two 32-bit values from M1 in to the lower two 16-bit values of
70 the result, and the two 32-bit values from M2 into the upper two 16-bit
71 values of the result, all with signed saturation. */
80 signed saturation for values that do not fit exactly into 32-bits. */
87 /* Pack the four 16-bit values from M1 into the lower four 8-bit values o
    [all...]
  /prebuilt/linux-x86/toolchain/arm-eabi-4.2.1/lib/gcc/arm-eabi/4.2.1/include/
mmintrin.h 63 /* Pack the four 16-bit values from M1 into the lower four 8-bit values of
64 the result, and the four 16-bit values from M2 into the upper four 8-bit
65 values of the result, all with signed saturation. */
72 /* Pack the two 32-bit values from M1 in to the lower two 16-bit values of
73 the result, and the two 32-bit values from M2 into the upper two 16-bit
74 values of the result, all with signed saturation. */
83 signed saturation for values that do not fit exactly into 32-bits. */
90 /* Pack the four 16-bit values from M1 into the lower four 8-bit values o
    [all...]
  /prebuilt/linux-x86/toolchain/arm-eabi-4.2.1/lib/gcc/arm-eabi/4.2.1/install-tools/include/
mmintrin.h 63 /* Pack the four 16-bit values from M1 into the lower four 8-bit values of
64 the result, and the four 16-bit values from M2 into the upper four 8-bit
65 values of the result, all with signed saturation. */
72 /* Pack the two 32-bit values from M1 in to the lower two 16-bit values of
73 the result, and the two 32-bit values from M2 into the upper two 16-bit
74 values of the result, all with signed saturation. */
83 signed saturation for values that do not fit exactly into 32-bits. */
90 /* Pack the four 16-bit values from M1 into the lower four 8-bit values o
    [all...]
  /prebuilt/linux-x86/toolchain/arm-eabi-4.3.1/lib/gcc/arm-eabi/4.3.1/include/
mmintrin.h 63 /* Pack the four 16-bit values from M1 into the lower four 8-bit values of
64 the result, and the four 16-bit values from M2 into the upper four 8-bit
65 values of the result, all with signed saturation. */
72 /* Pack the two 32-bit values from M1 in to the lower two 16-bit values of
73 the result, and the two 32-bit values from M2 into the upper two 16-bit
74 values of the result, all with signed saturation. */
83 signed saturation for values that do not fit exactly into 32-bits. */
90 /* Pack the four 16-bit values from M1 into the lower four 8-bit values o
    [all...]
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/include/
mmintrin.h 60 /* Pack the four 16-bit values from M1 into the lower four 8-bit values of
61 the result, and the four 16-bit values from M2 into the upper four 8-bit
62 values of the result, all with signed saturation. */
69 /* Pack the two 32-bit values from M1 in to the lower two 16-bit values of
70 the result, and the two 32-bit values from M2 into the upper two 16-bit
71 values of the result, all with signed saturation. */
80 signed saturation for values that do not fit exactly into 32-bits. */
87 /* Pack the four 16-bit values from M1 into the lower four 8-bit values o
    [all...]
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/include/
mmintrin.h 60 /* Pack the four 16-bit values from M1 into the lower four 8-bit values of
61 the result, and the four 16-bit values from M2 into the upper four 8-bit
62 values of the result, all with signed saturation. */
69 /* Pack the two 32-bit values from M1 in to the lower two 16-bit values of
70 the result, and the two 32-bit values from M2 into the upper two 16-bit
71 values of the result, all with signed saturation. */
80 signed saturation for values that do not fit exactly into 32-bits. */
87 /* Pack the four 16-bit values from M1 into the lower four 8-bit values o
    [all...]
  /prebuilt/linux-x86/toolchain/arm-linux-androideabi-4.4.x/lib/gcc/arm-linux-androideabi/4.4.3/include/
mmintrin.h 60 /* Pack the four 16-bit values from M1 into the lower four 8-bit values of
61 the result, and the four 16-bit values from M2 into the upper four 8-bit
62 values of the result, all with signed saturation. */
69 /* Pack the two 32-bit values from M1 in to the lower two 16-bit values of
70 the result, and the two 32-bit values from M2 into the upper two 16-bit
71 values of the result, all with signed saturation. */
80 signed saturation for values that do not fit exactly into 32-bits. */
87 /* Pack the four 16-bit values from M1 into the lower four 8-bit values o
    [all...]
  /dalvik/vm/mterp/armv5te/
OP_IGET_CHAR.S 2 %verify "large values are not sign-extended"
OP_IGET_CHAR_JUMBO.S 2 %verify "large values are not sign-extended"
  /development/tools/emulator/opengl/system/renderControl_enc/
renderControl_types.h 5 // values for 'param' argument of rcGetFBParam

Completed in 6080 milliseconds

1 2 34 5 6 7 8 91011>>