HomeSort by relevance Sort by last modified time
    Searched refs:DATA (Results 1 - 25 of 583) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/icu4c/test/cintltst/
cposxtst.c 39 const char* DATA[] = {
69 for (i=0; DATA[i]!=NULL; i+=4) {
70 int32_t set_num = T_CString_stringToInteger(DATA[i], 10);
71 int32_t msg_num = T_CString_stringToInteger(DATA[i+1], 10);
78 u_uastrcpy(exp, DATA[i+2]);
90 str, DATA[i+2]);
93 if (len != (int32_t) uprv_strlen(DATA[i+2])) {
95 len, uprv_strlen(DATA[i+2]));
98 if (uprv_strcmp(err, DATA[i+3]) != 0) {
100 err, DATA[i+3])
    [all...]
utransts.c 274 log_data_err("FAIL: in instantiation for id=%s -> %s (Are you missing data?)\n", TransID[i], u_errorName(status));
302 log_data_err("FAIL: construction -> %s (Are you missing data?)\n", u_errorName(status));
493 const char* DATA[] = {
502 int32_t DATA_length = sizeof(DATA) / sizeof(DATA[0]);
514 /*u_uastrcpy(filt, DATA[i]);*/
515 u_charsToUChars(DATA[i], filt, (int32_t)strlen(DATA[i])+1);
524 /*u_uastrcpy(buf, DATA[i+1]);*/
525 u_charsToUChars(DATA[i+1], buf, (int32_t)strlen(DATA[i+1])+1)
    [all...]
  /frameworks/base/core/java/android/provider/
SyncStateContract.java 30 * The ContentProvider contract for associating data with ana data array account.
31 * This may be used by providers that want to store this data in a standard way.
36 * A reference to the name of the account to which this data belongs
42 * A reference to the type of the account to which this data belongs
48 * The sync data associated with this account.
51 public static final String DATA = "data";
59 private static final String[] DATA_PROJECTION = new String[]{Columns.DATA, Columns._ID};
79 return c.getBlob(c.getColumnIndexOrThrow(Columns.DATA));
    [all...]
  /build/tools/droiddoc/templates/
lists.cs 1 var DATA = [
  /external/tcpdump/
tftp.h 28 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
43 #define SEGSIZE 512 /* data segment size */
50 #define DATA 03 /* data packet */
62 char th_data[1]; /* data or error string */
print-tftp.c 51 { DATA, "DATA" }, /* data packet */
135 case DATA:
  /external/icu4c/test/intltest/
transtst.cpp 397 const char* DATA[] = {
406 int32_t DATA_length = (int32_t)(sizeof(DATA) / sizeof(DATA[0]));
419 expect(*fwd, DATA[i], DATA[i+1]);
420 expect(*rev, DATA[i+1], DATA[i]);
443 const char* DATA[] = {
454 keyboardAux(*t, DATA, (int32_t)(sizeof(DATA)/sizeof(DATA[0])))
813 const UnicodeString* data = syms.getMonths(count); local
    [all...]
tzregts.cpp 484 /* Because of better historical timezone support based on Olson data,
486 * As of Mar 2007, ICU timezone transition data is represented by 32-bit.
487 * When we support 64-bit Olson transition data, the actual offset in
496 * the reference data.
611 int32_t DATA [] = {
633 UBool shouldBeGood = (DATA[i] == GOOD);
634 int32_t month = DATA[i+1];
635 int32_t day = DATA[i+2];
636 int32_t dayOfWeek = DATA[i+3];
637 int32_t time = DATA[i+4]
    [all...]
dtifmtts.cpp 277 const char* DATA[] = {
    [all...]
calregts.cpp 951 int32_t DATA [] = {
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/
MediaStore_VideoTest.java 75 values.put(VideoColumns.DATA, valueOfData);
82 Cursor c = Video.query(mContentResolver, newUri, new String[] { VideoColumns.DATA });
85 assertEquals(valueOfData, c.getString(c.getColumnIndex(VideoColumns.DATA)));
MediaStore_Audio_PlaylistsTest.java 76 values.put(Playlists.DATA, externalPlaylistPath);
92 c.getString(c.getColumnIndex(Playlists.DATA)));
109 c.getString(c.getColumnIndex(Playlists.DATA)));
123 values.put(Playlists.DATA, "/data/data/com.android.cts.stub/files/my_favorites.pl");
MediaStore_Images_ThumbnailsTest.java 100 values.put(Thumbnails.DATA, path);
111 assertEquals(path, c.getString(c.getColumnIndex(Thumbnails.DATA)));
124 assertEquals(path, c.getString(c.getColumnIndex(Thumbnails.DATA)));
204 values.put(Thumbnails.DATA, externalImgPath);
220 assertEquals(externalImgPath, c.getString(c.getColumnIndex(Thumbnails.DATA)));
229 values.put(Thumbnails.DATA, externalImgPath2);
237 // can not insert any data, so other operations can not be tested
  /development/samples/ApiDemos/src/com/example/android/apis/view/
List14.java 40 * The ViewHolder pattern consists in storing a data structure in the tag of the view returned by
41 * getView(). This data structures contains references to the views we want to bind data to, thus
67 return DATA.length;
71 * Since the data comes from an array, just returning the index is
72 * sufficent to get at the data. If we were using a more complex data
109 // we want to bind data to.
121 // Bind the data efficiently with the holder.
122 holder.text.setText(DATA[position])
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/audio/
SDL_wave.h 34 #define DATA 0x61746164 /* "data" */
60 Uint8 *data; member in struct:Chunk
  /external/bluetooth/glib/gio/tests/
unix-streams.c 15 * goods or services; loss of use, data, or profits; or business
31 #define DATA "abcdefghijklmnopqrstuvwxyz"
51 while (offset < sizeof (DATA))
53 nwrote = g_output_stream_write (out, DATA + offset,
54 sizeof (DATA) - offset,
82 char buf[sizeof (DATA)];
89 while (total < sizeof (DATA))
109 g_assert_cmpstr (buf, ==, DATA);
118 char main_buf[sizeof (DATA)];
204 * the writer thread, write data synchronously in small chunks
    [all...]
  /frameworks/base/core/tests/coretests/src/android/app/activity/
LocalProvider.java 35 private static final int DATA = 1;
41 sURLMatcher.addURI("*", "data", DATA);
42 sURLMatcher.addURI("*", "data/#", DATA_ID);
55 db.execSQL("CREATE TABLE data (" +
61 db.execSQL("INSERT INTO data (text, integer) VALUES ('first data', 100);");
68 ", which will destroy all old data");
69 db.execSQL("DROP TABLE IF EXISTS data");
92 case DATA
    [all...]
  /dalvik/libcore/security/src/main/java/org/apache/harmony/security/pkcs7/
ContentInfo.java 48 public static final int[] DATA = new int[] {1, 2, 840, 113549, 1, 7, 1};
126 if (Arrays.equals(ci.oid, DATA)) {
142 if (Arrays.equals(oid, DATA)) {
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
LegacyContactImporter.java 35 import android.provider.ContactsContract.Data;
157 // Upgrade to version 78 was the latest that wiped out data. Might as well follow suit
188 * At this point there should be no data in the contacts provider, but in case
327 + "(SELECT data FROM contact_methods WHERE "
446 String INSERT_SQL = "INSERT INTO " + Tables.DATA + "(" +
447 Data.RAW_CONTACT_ID + "," +
478 String INSERT_SQL = "INSERT INTO " + Tables.DATA + "(" +
479 Data.RAW_CONTACT_ID + "," +
692 String INSERT_SQL = "INSERT INTO " + Tables.DATA + "(" +
693 Data.RAW_CONTACT_ID + ","
    [all...]
ContactsDatabaseHelper.java 46 import android.provider.ContactsContract.Data;
91 public static final String DATA = "data";
103 public static final String DATA_JOIN_MIMETYPES = "data "
104 + "JOIN mimetypes ON (data.mimetype_id = mimetypes._id)";
106 public static final String DATA_JOIN_RAW_CONTACTS = "data "
107 + "JOIN raw_contacts ON (data.raw_contact_id = raw_contacts._id)";
109 public static final String DATA_JOIN_MIMETYPE_RAW_CONTACTS = "data "
110 + "JOIN mimetypes ON (data.mimetype_id = mimetypes._id) "
111 + "JOIN raw_contacts ON (data.raw_contact_id = raw_contacts._id)"
    [all...]
LegacyApiSupport.java 49 import android.provider.ContactsContract.Data;
119 " LEFT OUTER JOIN data name ON (raw_contacts._id = name.raw_contact_id"
122 + " LEFT OUTER JOIN data organization ON (raw_contacts._id = organization.raw_contact_id"
125 + " LEFT OUTER JOIN data email ON (raw_contacts._id = email.raw_contact_id"
128 + " LEFT OUTER JOIN data note ON (raw_contacts._id = note.raw_contact_id"
131 + " LEFT OUTER JOIN data phone ON (raw_contacts._id = phone.raw_contact_id"
136 " JOIN mimetypes ON (mimetypes._id = data.mimetype_id)"
137 + " JOIN raw_contacts ON (raw_contacts._id = data.raw_contact_id)"
175 "(CASE WHEN " + Data.MIMETYPE + "='" + Im.CONTENT_ITEM_TYPE + "'"
176 + " THEN (CASE WHEN " + Tables.DATA + "." + Im.PROTOCOL + "=" + Im.PROTOCOL_CUSTO
    [all...]
  /frameworks/base/core/tests/coretests/src/android/pim/vcard/
VCardExporterTests.java 452 .put(Email.DATA, "sample@example.com");
469 .put(Email.DATA, "type_home@example.com")
472 .put(Email.DATA, "type_work@example.com")
475 .put(Email.DATA, "type_mobile@example.com")
478 .put(Email.DATA, "type_other@example.com")
499 .put(Email.DATA, "type_home@example.com")
503 .put(Email.DATA, "type_notype@example.com")
605 * Tests that the vCard composer honors formatted data when it is available
671 .put(Im.DATA, "aim");
    [all...]
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/
IAndroidTarget.java 40 /** OS Path to the "data" folder which contains data & libraries for the SDK tools. */
41 public final static int DATA = 7;
46 /** OS Path to the "data/layoutlib.jar" library. */
48 /** OS Path to the "data/res" folder. */
50 /** OS Path to the "data/fonts" folder. */
52 /** OS Path to the "data/widgets.txt" file. */
54 /** OS Path to the "data/activity_actions.txt" file. */
56 /** OS Path to the "data/broadcast_actions.txt" file. */
58 /** OS Path to the "data/service_actions.txt" file. *
    [all...]
  /frameworks/base/core/java/com/android/internal/content/
SyncStateContentProviderHelper.java 64 + SyncStateContract.Columns.DATA + " TEXT,"
104 public int update(SQLiteDatabase db, long rowId, Object data) {
110 + " SET " + SyncStateContract.Columns.DATA + "=?"
112 new Object[]{data});
  /frameworks/base/media/java/android/media/
Ringtone.java 48 MediaStore.Audio.Media.DATA,
54 DrmStore.Audio.DATA,
186 throw new IOException("No data source set.");

Completed in 1896 milliseconds

1 2 3 4 5 6 7 8 91011>>