Home
last modified time | relevance | path

Searched refs:Data (Results 1 – 25 of 155) sorted by relevance

1234567

/frameworks/compile/mclinker/unittests/
DLinearAllocatorTest.cpp20 m_pTestee = new LinearAllocator<Data, CHUNK_SIZE>(); in LinearAllocatorTest()
43 Data* pointer = m_pTestee->allocate(10); in TEST_F()
50 Data* pointer = m_pTestee->allocate(); in TEST_F()
57 Data* pointer = m_pTestee->allocate(CHUNK_SIZE+1); in TEST_F()
64 Data* pointer = m_pTestee->allocate(); in TEST_F()
73 Data* pointer = m_pTestee->allocate(); in TEST_F()
74 Data data(7, 7, 7, 7); in TEST_F()
84 Data* pointer = m_pTestee->allocate(10); in TEST_F()
93 Data* pointer = m_pTestee->allocate(10); in TEST_F()
94 Data data(7, 7, 7, 7); in TEST_F()
[all …]
DRTLinearAllocatorTest.cpp20 m_pTestee = new LinearAllocator<Data, 0>(CHUNK_SIZE); in RTLinearAllocatorTest()
44 Data* pointer = m_pTestee->allocate(10); in TEST_F()
51 Data* pointer = m_pTestee->allocate(); in TEST_F()
58 Data* pointer = m_pTestee->allocate(CHUNK_SIZE+1); in TEST_F()
65 Data* pointer = m_pTestee->allocate(); in TEST_F()
74 Data* pointer = m_pTestee->allocate(); in TEST_F()
75 Data data(7, 7, 7, 7); in TEST_F()
85 Data* pointer = m_pTestee->allocate(10); in TEST_F()
94 Data* pointer = m_pTestee->allocate(10); in TEST_F()
95 Data data(7, 7, 7, 7); in TEST_F()
[all …]
DRTLinearAllocatorTest.h39 struct Data { struct
40 Data() in Data() function
44 Data( unsigned int pOne, unsigned int pTwo, unsigned char pThree, unsigned char pFour) in Data() argument
52 ~Data() in ~Data() argument
68 mcld::LinearAllocator<Data,0>* m_pTestee; argument
DLinearAllocatorTest.h26 struct Data { struct
27 Data() in Data() function
31 Data( unsigned int pOne, unsigned int pTwo, unsigned char pThree, unsigned char pFour) in Data() function
39 ~Data() in ~Data() argument
67 typedef mcld::LinearAllocator<Data, CHUNK_SIZE> Alloc; argument
/frameworks/base/docs/html/training/contacts-provider/
Dretrieve-details.jd57 {@link android.provider.ContactsContract.Data} table for any rows that contain the contact's
58 {@link android.provider.ContactsContract.Data#LOOKUP_KEY}. This column is available in
59 the {@link android.provider.ContactsContract.Data} table, because the Contacts
61 table and the {@link android.provider.ContactsContract.Data} table. The
68 {@link android.provider.ContactsContract.Data} table. Consider the performance impact before
88 {@link android.provider.ContactsContract.Data#_ID Data._ID} if you're binding the result
90 won't work. Also retrieve {@link android.provider.ContactsContract.Data#MIMETYPE Data.MIMETYPE}
96 Data._ID,
97 Data.MIMETYPE,
98 Data.DATA1,
[all …]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DEventLogTags.logtags27 # Data network registration failed after successful voice registration
63 # Data Stall Recovery mode DATA_STALL_RECOVERY_GET_DATA_CALL_LIST
66 # Data Stall Recovery mode DATA_STALL_RECOVERY_CLEANUP
69 # Data Stall Recovery mode DATA_STALL_RECOVERY_REREGISTER
72 # Data Stall Recovery mode DATA_STALL_RECOVERY_RADIO_RESTART
75 # Data Stall Recovery mode DATA_STALL_RECOVERY_RADIO_RESTART_WITH_PROP
/frameworks/opt/vcard/tests/src/com/android/vcard/tests/testutils/
DImportTestProvider.java22 import android.provider.ContactsContract.Data;
45 final String mimeType = expectedContentValues.getAsString(Data.MIMETYPE); in addExpectedContentValues()
85 } else if (uri.equals(Data.CONTENT_URI)) { in applyBatch()
86 final String mimeType = actualContentValues.getAsString(Data.MIMETYPE); in applyBatch()
112 if (actualContentValues.containsKey(Data.RAW_CONTACT_ID)) { in applyBatch()
113 actualContentValues.remove(Data.RAW_CONTACT_ID); in applyBatch()
187 if (Data.MIMETYPE.equals(key)) { in convertToEasilyReadableString()
195 builder.append(Data.MIMETYPE); in convertToEasilyReadableString()
DContactEntry.java19 import android.provider.ContactsContract.Data;
35 contentValues.put(Data.MIMETYPE, mimeType); in addContentValues()
DContentValuesVerifierElem.java19 import android.provider.ContactsContract.Data;
37 contentValues.put(Data.MIMETYPE, mimeType); in addExpected()
DExportTestProvider.java25 import android.provider.ContactsContract.Data;
49 entity.addSubValue(Data.CONTENT_URI, contentValues); in MockEntityIterator()
104 TestCase.assertTrue((Data.CONTACT_ID + "=?").equals(selection)); in queryEntities()
/frameworks/av/media/libeffects/lvm/lib/SpectrumAnalyzer/src/
DLVPSA_Memory.c58 INST_ALLOC Data; in LVPSA_Memory() local
65 InstAlloc_Init( &Data , LVM_NULL); in LVPSA_Memory()
154 InstAlloc_AddMember( &Data, pInitParams->nBands * sizeof(Biquad_1I_Order2_Taps_t) ); in LVPSA_Memory()
155 InstAlloc_AddMember( &Data, pInitParams->nBands * sizeof(QPD_Taps_t) ); in LVPSA_Memory()
156 … pMemoryTable->Region[LVPSA_MEMREGION_PERSISTENT_DATA].Size = InstAlloc_GetTotal(&Data); in LVPSA_Memory()
DLVPSA_Init.c56 INST_ALLOC Data; in LVPSA_Init() local
90 … InstAlloc_Init( &Data , pMemoryTable->Region[LVPSA_MEMREGION_PERSISTENT_DATA].pBaseAddress); in LVPSA_Init()
154 …pLVPSA_Inst->pBP_Taps = InstAlloc_AddMember( &Data, pInitParams->nBands * sizeof(Biq… in LVPSA_Init()
155 …pLVPSA_Inst->pQPD_Taps = InstAlloc_AddMember( &Data, pInitParams->nBands * sizeof(QPD… in LVPSA_Init()
/frameworks/base/core/java/android/provider/
DContactsContract.java1643 public static final class Data implements BaseColumns, DataColumns { class in ContactsContract.Contacts
1647 private Data() {} in Data() method in ContactsContract.Contacts.Data
2758 final Uri dataUri = Uri.withAppendedPath(rawContactUri, Data.CONTENT_DIRECTORY); in getContactLookupUri()
2781 public static final class Data implements BaseColumns, DataColumns { class in ContactsContract.RawContacts
2785 private Data() { in Data() method in ContactsContract.RawContacts.Data
2937 Data.DATA1,
2938 Data.DATA2,
2939 Data.DATA3,
2940 Data.DATA4,
2941 Data.DATA5,
[all …]
/frameworks/compile/libbcc/tests/debuginfo/host-tests/
Daggregate-indirect-arg.cpp15 const void* Data; member in SVal
27 v.Data = 0; in main()
/frameworks/base/docs/html/training/wearables/data-layer/
Dindex.jd1 page.title=Sending and Syncing Data
18 The Wearable Data Layer API, which is part of Google Play services, provides a communication channel
24 <dt><b>Data Items</b></dt>
69 …{@docRoot}training/wearables/data-layer/data-items.html">Accessing the Wearable Data Layer</a></dt>
70 <dd>This lesson shows you how to create a client to access the Data Layer APIs.</dd>
72 … <dt><a href="{@docRoot}training/wearables/data-layer/data-items.html">Syncing Data Items</a></dt>
73 <dd>Data items are objects that are stored in a replicated data store that is automatically
83 …<dt><a href="{@docRoot}training/wearables/data-layer/events.html">Handling Data Layer Events</a></…
Ddata-items.jd1 page.title=Syncing Data Items
10 <li><a href="#SyncData">Sync Data with a Data Map</a></li>
11 <li><a href="#ListenEvents">Listen for Data Item Events</a></li>
54 <h2 id="SyncData">Sync Data with a Data Map</h2>
100 <h2 id="ListenEvents">Listen for Data Item Events</h2>
123 <a href="{@docRoot}training/wearables/data-layer/events.html">Listening for Data Layer Events</a>.
/frameworks/base/docs/html/training/sharing/
Dindex.jd1 page.title=Sharing Simple Data
36 <dt><b><a href="send.html">Sending Simple Data to Other Apps</a></b></dt>
40 <dt><b><a href="receive.html">Receiving Simple Data from Other Apps</a></b></dt>
/frameworks/opt/vcard/java/com/android/vcard/
DVCardEntry.java40 import android.provider.ContactsContract.Data;
163 .newInsert(Data.CONTENT_URI); in constructInsertOperation()
165 builder.withValue(Data.MIMETYPE, StructuredName.CONTENT_ITEM_TYPE); in constructInsertOperation()
323 .newInsert(Data.CONTENT_URI); in constructInsertOperation()
325 builder.withValue(Data.MIMETYPE, Phone.CONTENT_ITEM_TYPE); in constructInsertOperation()
413 .newInsert(Data.CONTENT_URI); in constructInsertOperation()
415 builder.withValue(Data.MIMETYPE, Email.CONTENT_ITEM_TYPE); in constructInsertOperation()
423 builder.withValue(Data.IS_PRIMARY, 1); in constructInsertOperation()
556 .newInsert(Data.CONTENT_URI); in constructInsertOperation()
558 builder.withValue(Data.MIMETYPE, StructuredPostal.CONTENT_ITEM_TYPE); in constructInsertOperation()
[all …]
/frameworks/base/media/mca/filterfw/jni/
Djni_native_frame.cpp77 const uint8_t* data = frame->Data(); in Java_android_filterfw_core_NativeFrame_getNativeData()
121 const uint8_t* data = frame->Data(); in Java_android_filterfw_core_NativeFrame_getNativeInts()
155 const uint8_t* data = frame->Data(); in Java_android_filterfw_core_NativeFrame_getNativeFloats()
232 const uint8_t* src_ptr = frame->Data(); in Java_android_filterfw_core_NativeFrame_getNativeBitmap()
279 return ToJBool(this_frame->WriteData(other_frame->Data(), 0, other_frame->Size())); in Java_android_filterfw_core_NativeFrame_nativeCopyFromNative()
/frameworks/base/docs/html/training/basics/network-ops/
Dindex.jd25 …<li><a href="{@docRoot}training/efficient-downloads/index.html">Transferring Data Without Draining…
27 <li><a href="{@docRoot}training/volley/index.html">Transmitting Network Data Using Volley</a></li>
56 training/volley/index.html">Transmitting Network Data Using Volley</a>
79 <dt><b><a href="xml.html">Parsing XML Data</a></b></dt>
/frameworks/support/v4/java/android/support/v4/content/
DModernAsyncTask.java488 private static class AsyncTaskResult<Data> {
490 final Data[] mData;
492 AsyncTaskResult(ModernAsyncTask task, Data... data) { in AsyncTaskResult()
/frameworks/base/docs/html/guide/topics/ui/layout/
Dlistview.jd79 static final String[] PROJECTION = new String[] {ContactsContract.Data._ID,
80 ContactsContract.Data.DISPLAY_NAME};
84 ContactsContract.Data.DISPLAY_NAME + " NOTNULL) AND (" +
85 ContactsContract.Data.DISPLAY_NAME + " != '' ))";
103 String[] fromColumns = {ContactsContract.Data.DISPLAY_NAME};
122 return new CursorLoader(this, ContactsContract.Data.CONTENT_URI,
/frameworks/base/core/java/android/os/
DAsyncTask.java659 private static class AsyncTaskResult<Data> {
661 final Data[] mData;
663 AsyncTaskResult(AsyncTask task, Data... data) { in AsyncTaskResult()
/frameworks/base/media/mca/filterfw/native/core/
Dnative_frame.h43 const uint8_t* Data() const { in Data() function
/frameworks/base/docs/html/training/basics/data-storage/
Dindex.jd1 page.title=Saving Data
53 <dt><b><a href="databases.html">Saving Data in SQL Databases</a></b></dt>

1234567