HomeSort by relevance Sort by last modified time
    Searched full:data (Results 651 - 675 of 53578) sorted by null

<<21222324252627282930>>

  /external/webkit/LayoutTests/fast/encoding/
meta-in-body-expected.txt 2 This test checks that the charset sniffer scans at least 1024 bytes of data to find a meta tag, even if it is not in the head section.
  /external/webkit/LayoutTests/storage/
sql-data-types.html 3 <script type="text/javascript" src="sql-data-types.js"></script>
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/RegExp/
regress-216591.js 60 string = 'a {result.data.DATA} b';
63 expectedmatch = Array('{result.data.DATA}', 'result.data.', 'data.', 'DATA');
69 * [ ] perl -e '"a {result.data.DATA} b" =~ /\{(([a-z0-9\-_]+?\.)+?)([a-z0-9\-_]+?)\}/i; print("$&, $1, $2, $3");'
70 * {result.data.DATA}, result.data., data., DAT
    [all...]
  /external/webkit/Tools/QueueStatusServer/templates/
releasepatch.html 1 <form name="release_patch" enctype="multipart/form-data" method="post">
submittoews.html 1 <form name="submit_to_ews" enctype="multipart/form-data" method="post">
  /external/webkit/Tools/TestWebKitAPI/Tests/WebKit2/
simple-form.html 9 <input name=foo value="Some unimportant data">
  /external/webkit/Tools/iExploder/iexploder-1.7.2/src/protocols/
webkit 4 data:
  /external/wpa_supplicant_8/src/crypto/
aes-eax.c 21 * @hdr: Header data to be authenticity protected
22 * @hdr_len: Length of the header data bytes
23 * @data: Data to encrypt in-place
24 * @data_len: Length of data in bytes
30 u8 *data, size_t data_len, u8 *tag)
62 if (aes_128_ctr_encrypt(key, nonce_mac, data, data_len))
65 os_memcpy(buf + 16, data, data_len);
85 * @hdr: Header data to be authenticity protected
86 * @hdr_len: Length of the header data byte
    [all...]
  /frameworks/av/media/libstagefright/codecs/common/include/
voAudio.h 34 #define VO_PID_AUDIO_FORMAT (VO_PID_AUDIO_BASE | 0X0001) /*!< The format data of audio in track */
52 VO_AUDIO_CodingADPCM, /**< Any variant of ADPCM encoded data */
53 VO_AUDIO_CodingAMRNB, /**< Any variant of AMR encoded data */
54 VO_AUDIO_CodingAMRWB, /**< Any variant of AMR encoded data */
55 VO_AUDIO_CodingAMRWBP, /**< Any variant of AMR encoded data */
56 VO_AUDIO_CodingQCELP13, /**< Any variant of QCELP 13kbps encoded data */
57 VO_AUDIO_CodingEVRC, /**< Any variant of EVRC encoded data */
58 VO_AUDIO_CodingAAC, /**< Any variant of AAC encoded data, 0xA106 - ISO/MPEG-4 AAC, 0xFF - AAC */
59 VO_AUDIO_CodingAC3, /**< Any variant of AC3 encoded data */
60 VO_AUDIO_CodingFLAC, /**< Any variant of FLAC encoded data */
    [all...]
  /frameworks/base/core/java/android/database/
package.html 3 Contains classes to explore data returned through a content provider.
5 If you need to manage data in a private database, use the {@link
12 <p>All databases are stored on the device in <code>/data/data/&lt;package_name&gt;/databases</code>
  /frameworks/base/docs/html/google/backup/
index.jd 6 href="{@docRoot}guide/topics/data/backup.html">data backup</a> framework, which allows you
7 to copy a user's persistent app data to remote "cloud" storage. Backing up persistent data
9 higher. The backup service is <em>not</em> designed for synchronizing application data with other
10 clients or saving data that you'd like to access at random during the
14 transport on most devices that include Google Play Store and backs up your app data to Google
24 Service does not guarantee that it will always back up data using this service
26 data backup in your application, then it will back up using whichever transport is enabled
30 <p>For more information about how data backup works on Android and how to use it in your app
    [all...]
  /frameworks/base/docs/html/training/
best-security.jd 9 keep your app's data secure.</p
  /frameworks/native/libs/binder/
IServiceManager.cpp 147 Parcel data, reply; local
148 data.writeInterfaceToken(IServiceManager::getInterfaceDescriptor());
149 data.writeString16(name);
150 remote()->transact(CHECK_SERVICE_TRANSACTION, data, &reply);
157 Parcel data, reply; local
158 data.writeInterfaceToken(IServiceManager::getInterfaceDescriptor());
159 data.writeString16(name);
160 data.writeStrongBinder(service);
161 data.writeInt32(allowIsolated ? 1 : 0);
162 status_t err = remote()->transact(ADD_SERVICE_TRANSACTION, data, &reply)
172 Parcel data, reply; local
    [all...]
  /frameworks/native/libs/gui/
IDisplayEventConnection.cpp 49 Parcel data, reply; local
50 data.writeInterfaceToken(IDisplayEventConnection::getInterfaceDescriptor());
51 remote()->transact(GET_DATA_CHANNEL, data, &reply);
56 Parcel data, reply; local
57 data.writeInterfaceToken(IDisplayEventConnection::getInterfaceDescriptor());
58 data.writeInt32(count);
59 remote()->transact(SET_VSYNC_RATE, data, &reply);
63 Parcel data, reply; local
64 data.writeInterfaceToken(IDisplayEventConnection::getInterfaceDescriptor());
65 remote()->transact(REQUEST_NEXT_VSYNC, data, &reply, IBinder::FLAG_ONEWAY)
    [all...]
  /hardware/ti/wlan/lib/
shlist.c 12 listPtr->data = (void *)0L;
23 if( func( val, item->data ) ) {
28 if( item->data == val ) {
83 fprintf(stderr, "Del %lx\n", (unsigned long)(item->data));
87 if( func && item->data ) {
88 func( (void *)(item->data) );
91 head->data = (void *)((unsigned long)(head->data) - 1);
101 item->data = val;
107 fprintf(stderr, "Ins First %lx\n", (unsigned long)(item->data));
    [all...]
  /libcore/luni/src/main/java/java/sql/
SQLXML.java 40 * Returns a stream that can be used to read binary data from this SQL {@code XML} object.
41 * @throws SQLException if an error occurs accessing the data
46 * Returns a stream that can be used to write binary data to this SQL {@code XML} object.
47 * @throws SQLException if an error occurs accessing the data
52 * Returns a reader that can be used to read character data from this SQL {@code XML} object.
53 * @throws SQLException if an error occurs accessing the data
58 * Returns a writer that can be used to write character data to this SQL {@code XML} object.
59 * @throws SQLException if an error occurs accessing the data
64 * Returns this object's data as an XML string.
65 * @throws SQLException if an error occurs accessing the data
    [all...]
  /ndk/tests/device/test-stlport_shared-exception/jni/
delayslot1.cpp 14 char data[100]; member in struct:S
15 S () : c (data) {};
17 c = data;
18 data[0] = s.c[0];
  /ndk/tests/device/test-stlport_static-exception/jni/
delayslot1.cpp 14 char data[100]; member in struct:S
15 S () : c (data) {};
17 c = data;
18 data[0] = s.c[0];
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.7/lib/gcc/arm-eabi/4.7/
crtend.o 
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.7/lib/gcc/arm-eabi/4.7/thumb/
crtend.o 
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.7/lib/gcc/arm-eabi/4.7/thumb/thumb2/
crtend.o 
  /prebuilts/gcc/darwin-x86/x86/i686-linux-android-4.6/i686-linux-android/lib/ldscripts/
i386linux.xbn 1 /* Script for -N: mix text and data on same page; don't align data */
25 .data :
31 *(.data)
  /prebuilts/gcc/darwin-x86/x86/i686-linux-android-4.6/lib/gcc/i686-linux-android/4.6/
crtend.o 
crtendS.o 
  /prebuilts/gcc/darwin-x86/x86/i686-linux-android-4.7/i686-linux-android/lib/ldscripts/
i386linux.xbn 1 /* Script for -N: mix text and data on same page; don't align data */
25 .data :
31 *(.data)

Completed in 725 milliseconds

<<21222324252627282930>>