/external/icu4c/test/cintltst/ |
cposxtst.c | 41 const char* DATA[] = { 71 for (i=0; DATA[i]!=NULL; i+=4) { 72 int32_t set_num = T_CString_stringToInteger(DATA[i], 10); 73 int32_t msg_num = T_CString_stringToInteger(DATA[i+1], 10); 80 u_uastrcpy(exp, DATA[i+2]); 92 str, DATA[i+2]); 95 if (len != (int32_t) uprv_strlen(DATA[i+2])) { 97 len, uprv_strlen(DATA[i+2])); 100 if (uprv_strcmp(err, DATA[i+3]) != 0) { 102 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}; 85 return c.getBlob(c.getColumnIndexOrThrow(Columns.DATA)); [all...] |
/external/doclava/res/assets/templates/ |
lists.cs | 1 var DATA = [
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
DataRowHandlerForIm.java | 25 * Handler for IM address data rows. 36 return values.containsKey(Im.DATA); 45 builder.appendContentFromColumn(Im.DATA, IndexBuilder.SEPARATOR_SLASH);
|
DataRowHandlerForEmail.java | 27 * Handler for email address data rows. 39 String email = values.getAsString(Email.DATA); 58 if (values.containsKey(Email.DATA)) { 62 String address = values.getAsString(Email.DATA);
|
LegacyContactImporter.java | 35 import android.provider.ContactsContract.Data; 160 // Upgrade to version 78 was the latest that wiped out data. Might as well follow suit 191 * At this point there should be no data in the contacts provider, but in case 330 + "(SELECT data FROM contact_methods WHERE " 445 String INSERT_SQL = "INSERT INTO " + Tables.DATA + "(" + 446 Data.RAW_CONTACT_ID + "," + 477 String INSERT_SQL = "INSERT INTO " + Tables.DATA + "(" + 478 Data.RAW_CONTACT_ID + "," + 690 String INSERT_SQL = "INSERT INTO " + Tables.DATA + "(" + 691 Data.RAW_CONTACT_ID + "," [all...] |
/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:
|
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/arpa/ |
tftp.h | 23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 38 #define SEGSIZE 512 /* data segment size */ 45 #define DATA 03 /* data packet */ 56 char th_data[1]; /* data or error string */
|
/external/icu4c/test/intltest/ |
transtst.cpp | 403 const char* DATA[] = { 412 int32_t DATA_length = (int32_t)(sizeof(DATA) / sizeof(DATA[0])); 425 expect(*fwd, DATA[i], DATA[i+1]); 426 expect(*rev, DATA[i+1], DATA[i]); 449 const char* DATA[] = { 460 keyboardAux(*t, DATA, (int32_t)(sizeof(DATA)/sizeof(DATA[0]))) 819 const UnicodeString* data = syms.getMonths(count); local [all...] |
tzregts.cpp | 597 int32_t DATA [] = { 619 UBool shouldBeGood = (DATA[i] == GOOD); 620 int32_t month = DATA[i+1]; 621 int32_t day = DATA[i+2]; 622 int32_t dayOfWeek = DATA[i+3]; 623 int32_t time = DATA[i+4]; 705 int32_t DATA [] = { 716 int32_t savings = DATA[i]; 717 UBool valid = DATA[i+1] == GOOD; 769 int32_t DATA []= [all...] |
dtifmtts.cpp | 295 const char* 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 | 78 values.put(Playlists.DATA, externalPlaylistPath); 93 c.getString(c.getColumnIndex(Playlists.DATA))); 111 c.getString(c.getColumnIndex(Playlists.DATA))); 124 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...] |
/external/zlib/nintendods/ |
Makefile | 15 # DATA is a list of directories containing data files 21 DATA := data 56 $(foreach dir,$(DATA),$(CURDIR)/$(dir)) 63 BINFILES := $(foreach dir,$(DATA),$(notdir $(wildcard $(dir)/*.*)))
|
/frameworks/base/core/tests/coretests/src/android/app/activity/ |
LocalProvider.java | 34 private static final int DATA = 1; 40 sURLMatcher.addURI("*", "data", DATA); 41 sURLMatcher.addURI("*", "data/#", DATA_ID); 54 db.execSQL("CREATE TABLE data (" + 60 db.execSQL("INSERT INTO data (text, integer) VALUES ('first data', 100);"); 67 ", which will destroy all old data"); 68 db.execSQL("DROP TABLE IF EXISTS data"); 91 case DATA [all...] |
/packages/apps/Contacts/tests/src/com/android/contacts/detail/ |
ContactDetailFragmentTests.java | 43 values.put(Im.DATA, TEST_ADDRESS); 59 values.put(Im.DATA, TEST_ADDRESS); 77 values.put(Im.DATA, TEST_ADDRESS); 98 values.put(Im.DATA, TEST_ADDRESS); 104 final Uri data = entry.intent.getData(); local 105 assertEquals("imto", data.getScheme()); 106 assertEquals(TEST_PROTOCOL, data.getAuthority()); 107 assertEquals(TEST_ADDRESS, data.getPathSegments().get(0)); 119 values.put(Email.DATA, TEST_ADDRESS);
|
/external/flac/libFLAC/ia32/ |
nasm.h | 25 ; PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR 36 %idefine data_section section .data align=32 class=DATA use32 37 %idefine bss_section section .bss align=32 class=DATA use32 41 %idefine data_section section .data 46 %idefine data_section section .data 50 %idefine data_section section .data align=32
|
/libcore/luni/src/main/java/org/apache/harmony/security/pkcs7/ |
ContentInfo.java | 46 public static final int[] DATA = new int[] {1, 2, 840, 113549, 1, 7, 1}; 119 if (Arrays.equals(ci.oid, DATA)) { 135 if (Arrays.equals(oid, DATA)) {
|
/libcore/luni/src/test/java/libcore/java/security/ |
SignatureTest.java | 35 private final byte[] DATA = new byte[20]; 103 sig.update(DATA); 109 sig.update(DATA); 142 byte[] data = new byte[len / 2]; 144 data[i / 2] = (byte) ((Character.digit(s.charAt(i), 16) << 4) 147 return data;
|