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

1 2 3

  /external/doclava/res/assets/templates/
lists.cs 1 var DATA = [
  /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...]
  /external/jsilver/src/com/google/clearsilver/jsilver/compiler/
JavaExpression.java 19 import com.google.clearsilver.jsilver.data.TypeConverter;
41 expression = expression.cast(DATA);
50 expression = expression.cast(DATA);
59 expression = expression.cast(DATA);
74 DATA("Data") {
80 throw new JSilverCompilationException("Cannot cast to 'Data' for expression:\n"
85 // This is a string that represents the name of a Data path.
105 // This is a special type because we only cast from Data, never to it.
493 return callOn(Type.DATA, TemplateTranslator.DATA_CONTEXT, "findVariable", expression
    [all...]
  /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/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/qemu/distrib/sdl-1.2.12/src/audio/
SDL_wave.h 34 #define DATA 0x61746164 /* "data" */
60 Uint8 *data; member in struct:Chunk
  /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 */
  /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)/*.*)))
  /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)) {
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
DownloadEntry.java 16 package com.android.gallery3d.data;
33 public static final String DATA = "_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 */
  /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...]
DrmStore.java 59 * The data stream for the file
60 * <P>Type: DATA STREAM</P>
62 public static final String DATA = "_data";
  /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...]
  /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;
  /external/icu4c/test/intltest/
dtifmtts.cpp 295 const char* DATA[] = {
    [all...]
msfmrgts.cpp     [all...]
loctest.cpp 335 errln("assignment to bogus Locale does not unbogus it or sets bad data");
485 /* Currently, there is no language information in the "tl" data file so this test will fail if default locale is "tl" */
694 // independent of the data directory
799 // table of valid data
    [all...]
tstnorm.cpp 297 // ### TODO read composition exclusion from source/data/unidata file
343 const char* DATA[] = {
352 int32_t DATA_length = (int32_t)(sizeof(DATA) / sizeof(DATA[0]));
356 UnicodeString a(DATA[i], "");
363 UnicodeString exp(DATA[i+1], "");
376 UnicodeString exp = UnicodeString(DATA[i+2], "").unescape();
469 UnicodeString data[2][3]; local
470 data[0][0] = str("\\u05B8\\u05B9\\u05B1\\u0591\\u05C3\\u05B0\\u05AC\\u059F");
471 data[0][1] = str("\\u05B1\\u05B8\\u05B9\\u0591\\u05C3\\u05B0\\u05AC\\u059F")
    [all...]
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/
AttachmentUtilities.java 44 public static final String DATA = "_data";
272 new String[] { Columns.DATA },
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/
IAndroidTarget.java 38 /** OS Path to the "data" folder which contains data & libraries for the SDK tools. */
39 public final static int DATA = 7;
44 /** OS Path to the "data/layoutlib.jar" library. */
46 /** OS Path to the "data/res" folder. */
48 /** OS Path to the "data/fonts" folder. */
50 /** OS Path to the "data/widgets.txt" file. */
52 /** OS Path to the "data/activity_actions.txt" file. */
54 /** OS Path to the "data/broadcast_actions.txt" file. */
56 /** OS Path to the "data/service_actions.txt" file. *
    [all...]
  /cts/tests/tests/os/src/android/os/cts/
ParcelFileDescriptorTest.java 68 // read the data that was wrote previously
85 final int DATA = 1;
94 out.write(DATA);
109 assertEquals(DATA, in.read());
124 byte[] data = new byte[] { 0 };
125 assertFileDescriptorContent(data, ParcelFileDescriptor.fromData(data, null));
126 data = new byte[] { 0, 1, 2, 3 };
127 assertFileDescriptorContent(data, ParcelFileDescriptor.fromData(data, null))
    [all...]
  /cts/tools/dex-tools/src/dex/reader/
DexFileReader.java 53 private static final int DATA = 8;
91 readSize(DATA);
92 readOffset(DATA);
  /external/skia/gpu/src/
GrGpu.cpp 229 static const GrPoint DATA[] = {
241 static const size_t SIZE = sizeof(DATA);
246 if (!fUnitSquareVertexBuffer->updateData(DATA, SIZE)) {
638 // the client doesn't have valid data in the pool
648 // the client doesn't have valid data in the pool

Completed in 1730 milliseconds

1 2 3