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

<<11121314151617181920>>

  /external/libffi/testsuite/libffi.call/
struct4.c 28 void *values[MAX_ARGS]; local
47 values[0] = &ts4_arg;
56 ffi_call (&cif, FFI_FN(struct4), ts4_result, values);
struct6.c 27 void *values[MAX_ARGS]; local
46 values[0] = &ts6_arg;
57 ffi_call(&cif, FFI_FN(struct6), ts6_result, values);
struct7.c 29 void *values[MAX_ARGS]; local
49 values[0] = &ts7_arg;
62 ffi_call(&cif, FFI_FN(struct7), ts7_result, values);
struct9.c 28 void *values[MAX_ARGS]; local
46 values[0] = &ts9_arg;
57 ffi_call(&cif, FFI_FN(struct9), ts9_result, values);
  /external/xmlwriter/src/org/jheer/
XMLWriter.java 154 * @param values the values of the attributes
159 protected void tag(String tag, String[] names, String[] values,
170 escapeString(values[i]);
187 * @param values the values of the attributes
190 public void tag(String tag, String[] names, String[] values, int nattr) throws IOException
192 tag(tag, names, values, nattr, true);
200 * @param values the values of the attribute
    [all...]
  /frameworks/base/core/tests/coretests/src/android/widget/gridview/
GridScrollListener.java 43 String values[] = new String[1000]; local
46 values[i] = ((Integer)i).toString();
52 android.R.layout.simple_list_item_1, values));
  /frameworks/base/core/tests/coretests/src/android/widget/listview/
ListRecyclerProfiling.java 36 String values[] = new String[1000]; local
38 values[i] = ((Integer) i).toString();
46 android.R.layout.simple_list_item_1, values));
ListScrollListener.java 43 String values[] = new String[1000]; local
46 values[i] = ((Integer)i).toString();
51 android.R.layout.simple_list_item_1, values));
  /frameworks/base/telephony/java/com/android/internal/telephony/
IccServiceTable.java 55 Object[] values = getValues(); local
71 if (ordinal < values.length) {
72 builder.append(values[ordinal]);
  /packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/tests/
CrashingIconProvider.java 60 public Uri insert(Uri uri, ContentValues values) {
61 if (DBG) Log.d(TAG, "insert(" + uri + ", " + values + ")");
73 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) {
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
VoicemailTable.java 38 public Uri insert(UriData uriData, ContentValues values);
42 public int update(UriData uriData, ContentValues values, String selection,
57 public void checkAndAddSourcePackageIntoValues(UriData uriData, ContentValues values);
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/util/
TypedUriMatcherImpl.java 32 public TypedUriMatcherImpl(String authority, T[] values) {
34 mValues = values;
37 for (T value : values) {
  /packages/providers/DownloadProvider/tests/permission/src/com/android/providers/downloads/permission/tests/
DownloadProviderPermissionsTest.java 77 ContentValues values = new ContentValues(); local
78 values.put(Downloads.Impl.COLUMN_URI, "foo");
79 mContentResolver.insert(Downloads.Impl.CONTENT_URI, values);
  /sdk/common/src/com/android/resources/
Keyboard.java 46 for (Keyboard kbrd : values()) {
70 for (Keyboard input : values()) {
83 for (Keyboard value : values()) {
  /packages/apps/Mms/src/com/android/mms/transaction/
SmsReceiverService.java 392 ContentValues values = new ContentValues(3); local
394 values.put(Sms.TYPE, Sms.MESSAGE_TYPE_FAILED);
395 values.put(Sms.ERROR_CODE, SmsManager.RESULT_ERROR_GENERIC_FAILURE);
396 values.put(Sms.READ, Integer.valueOf(0));
400 values, "type = " + Sms.MESSAGE_TYPE_OUTBOX, null);
451 ContentValues values = extractContentValues(sms); local
452 values.put(Sms.ERROR_CODE, error);
457 values.put(Inbox.BODY, replaceFormFeeds(sms.getDisplayMessageBody()));
467 values.put(Inbox.BODY, replaceFormFeeds(body.toString()));
491 values, null, null)
512 ContentValues values = extractContentValues(sms); local
580 ContentValues values = new ContentValues(); local
    [all...]
  /packages/apps/Settings/src/com/android/settings/
ApnEditor.java 243 // Fill in all the values from the db in both text editor and summary
305 String []values = mRes.getStringArray(R.array.apn_auth_entries); local
306 mAuthType.setSummary(values[authValIndex]);
329 String[] values = mRes.getStringArray(R.array.apn_protocol_entries); local
331 return values[protocolIndex];
343 String[] values = mRes.getStringArray(R.array.bearer_entries); local
345 return values[mBearerIndex];
359 String []values = mRes.getStringArray(R.array.apn_auth_entries); local
360 mAuthType.setSummary(values[index]);
476 ContentValues values = new ContentValues() local
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/annotation/
Annotations.java 110 Iterator<Annotation> thisIter = annotations.values().iterator();
111 Iterator<Annotation> otherIter = other.annotations.values().iterator();
139 for (Annotation a : annotations.values()) {
199 for (Annotation a : toAdd.annotations.values()) {
211 return Collections.unmodifiableCollection(annotations.values());
  /dalvik/dx/src/com/android/dx/rop/annotation/
Annotations.java 110 Iterator<Annotation> thisIter = annotations.values().iterator();
111 Iterator<Annotation> otherIter = other.annotations.values().iterator();
139 for (Annotation a : annotations.values()) {
199 for (Annotation a : toAdd.annotations.values()) {
211 return Collections.unmodifiableCollection(annotations.values());
  /external/chromium/chrome/browser/
idbbindingutilities_browsertest.cc 30 std::vector<WebKit::WebIDBKey> values; local
33 serialized_values, key_path, &values);
35 ASSERT_EQ(size_t(2), values.size());
36 ASSERT_EQ(WebKit::WebIDBKey::StringType, values[0].type());
37 ASSERT_EQ(UTF8ToUTF16("zoo"), values[0].string());
38 ASSERT_EQ(WebKit::WebIDBKey::InvalidType, values[1].type());
41 values.clear();
44 serialized_values, key_path, &values);
46 ASSERT_EQ(size_t(2), values.size());
47 ASSERT_EQ(WebKit::WebIDBKey::InvalidType, values[0].type())
    [all...]
  /external/chromium/chrome/browser/safe_browsing/
bloom_filter_unittest.cc 37 typedef std::set<SBPrefix> Values;
38 Values values; local
41 values.insert(value);
52 for (Values::const_iterator i = values.begin(); i != values.end(); ++i)
56 // we inserted, but of different values, and calculating what percentage are
62 if (values.count(value))
  /external/doclava/src/com/google/doclava/apicheck/
ApiInfo.java 43 for (ClassInfo cl : mAllClasses.values()) {
59 for (PackageInfo pInfo : mPackages.values()) {
69 for (PackageInfo pInfo : otherApi.mPackages.values()) {
98 for (ClassInfo cl : pInfo.allClasses().values()) {
104 for (ClassInfo cl : mAllClasses.values()) {
  /external/skia/src/core/
SkBuffer.cpp 95 void* sk_buffer_write_int32(void* buffer, const int32_t values[], int count)
100 memcpy((int32_t*)buffer, values, count * sizeof(int32_t));
112 const void* sk_buffer_read_int32(const void* buffer, int32_t values[], int count)
117 if (values)
118 memcpy(values, (const int32_t*)buffer, count * sizeof(int32_t));
  /external/stlport/test/unit/
hash_test.cpp 228 // print all hashed values for that key
317 hmap values; local
319 CPPUNIT_ASSERT( values.insert(val_type("foo", 0)).second );
320 CPPUNIT_ASSERT( values.insert(val_type("bar", 0)).second );
321 CPPUNIT_ASSERT( values.insert(val_type("abc", 0)).second );
323 CPPUNIT_ASSERT( values.insert(hmap::value_type("foo", 0)).second );
324 CPPUNIT_ASSERT( values.insert(hmap::value_type("bar", 0)).second );
325 CPPUNIT_ASSERT( values.insert(hmap::value_type("abc", 0)).second );
328 CPPUNIT_ASSERT( values.erase("foo") == 1 );
329 CPPUNIT_ASSERT( values.erase("bar") == 1 )
334 hmap values; local
    [all...]
  /ndk/tests/device/test-gnustl-full/unit/
hash_test.cpp 228 // print all hashed values for that key
317 hmap values; local
319 CPPUNIT_ASSERT( values.insert(val_type("foo", 0)).second );
320 CPPUNIT_ASSERT( values.insert(val_type("bar", 0)).second );
321 CPPUNIT_ASSERT( values.insert(val_type("abc", 0)).second );
323 CPPUNIT_ASSERT( values.insert(hmap::value_type("foo", 0)).second );
324 CPPUNIT_ASSERT( values.insert(hmap::value_type("bar", 0)).second );
325 CPPUNIT_ASSERT( values.insert(hmap::value_type("abc", 0)).second );
328 CPPUNIT_ASSERT( values.erase("foo") == 1 );
329 CPPUNIT_ASSERT( values.erase("bar") == 1 )
334 hmap values; local
    [all...]
  /ndk/tests/device/test-stlport/unit/
hash_test.cpp 228 // print all hashed values for that key
317 hmap values; local
319 CPPUNIT_ASSERT( values.insert(val_type("foo", 0)).second );
320 CPPUNIT_ASSERT( values.insert(val_type("bar", 0)).second );
321 CPPUNIT_ASSERT( values.insert(val_type("abc", 0)).second );
323 CPPUNIT_ASSERT( values.insert(hmap::value_type("foo", 0)).second );
324 CPPUNIT_ASSERT( values.insert(hmap::value_type("bar", 0)).second );
325 CPPUNIT_ASSERT( values.insert(hmap::value_type("abc", 0)).second );
328 CPPUNIT_ASSERT( values.erase("foo") == 1 );
329 CPPUNIT_ASSERT( values.erase("bar") == 1 )
334 hmap values; local
    [all...]

Completed in 703 milliseconds

<<11121314151617181920>>