HomeSort by relevance Sort by last modified time
    Searched refs:Query (Results 51 - 75 of 179) sorted by null

1 23 4 5 6 7 8

  /external/chromium_org/third_party/angle_dx11/src/libGLESv2/renderer/
Query11.cpp 37 queryDesc.Query = D3D11_QUERY_OCCLUSION;
119 return GL_TRUE; // prevent blocking when query is null
Fence11.cpp 44 queryDesc.Query = D3D11_QUERY_EVENT;
  /packages/providers/DownloadProvider/tests/src/com/android/providers/downloads/
AbstractPublicApiTest.java 57 Cursor cursor = mManager.query(new DownloadManager.Query().setFilterById(mId));
73 Cursor cursor = mManager.query(new DownloadManager.Query().setFilterById(mId));
84 Cursor cursor = mManager.query(new DownloadManager.Query().setFilterById(mId));
169 Cursor cursor = mManager.query(new DownloadManager.Query().setFilterById(mId));
PublicApiFunctionalTest.java 261 Cursor cursor = mManager.query(new DownloadManager.Query());
264 cursor = mManager.query(new DownloadManager.Query().setFilterById(download2.mId));
267 cursor = mManager.query(new DownloadManager.Query()
271 cursor = mManager.query(new DownloadManager.Query()
276 cursor = mManager.query(new DownloadManager.Query()
    [all...]
  /external/chromium_org/v8/test/cctest/
test-decls.cc 75 virtual v8::Handle<Integer> Query(Local<String> key);
140 int get, int set, int query,
159 CHECK_EQ(query, query_count());
200 info.GetReturnValue().Set(context->Query(key));
221 v8::Handle<Integer> DeclarationContext::Query(Local<String> key) {
276 virtual v8::Handle<Integer> Query(Local<String> key) {
331 virtual v8::Handle<Integer> Query(Local<String> key) {
402 virtual v8::Handle<Integer> Query(Local<String> key) {
487 virtual v8::Handle<Integer> Query(Local<String> key) {
535 virtual v8::Handle<Integer> Query(Local<String> key)
    [all...]
  /external/chromium_org/ppapi/api/
ppb_file_io.idl 115 * Query() queries info about the file opened by this FileIO object. The
124 * completion of Query().
130 int32_t Query([in] PP_Resource file_io,
  /external/chromium_org/ppapi/cpp/
file_ref.cc 166 int32_t FileRef::Query(const CompletionCallbackWithOutput<PP_FileInfo>& cc) {
169 return get_interface<PPB_FileRef_1_1>()->Query(
file_io.cc 64 int32_t FileIO::Query(PP_FileInfo* result_buf,
67 return get_interface<PPB_FileIO_1_1>()->Query(
70 return get_interface<PPB_FileIO_1_0>()->Query(
  /external/llvm/lib/CodeGen/
LiveIntervalUnion.cpp 103 bool LiveIntervalUnion::Query::isSeenInterference(LiveInterval *VirtReg) const {
110 // query's live virtual register.
112 // The query state is one of:
118 unsigned LiveIntervalUnion::Query::
  /frameworks/base/core/tests/coretests/src/android/app/
DownloadManagerStressTest.java 19 import android.app.DownloadManager.Query;
93 Cursor cursor = mDownloadManager.query(new Query());
DownloadManagerFunctionalTest.java 19 import android.app.DownloadManager.Query;
129 Cursor cursor = mDownloadManager.query(new Query().setFilterById(requestId));
311 Cursor cursor = mDownloadManager.query(new Query().setFilterById(dlRequest));
  /packages/apps/Contacts/tests/src/com/android/contacts/interactions/
ContactDeletionInteractionTest.java 33 import com.android.contacts.common.test.mocks.MockContentProvider.Query;
140 private Query expectQuery() {
  /external/chromium/base/win/
event_trace_controller.h 127 static HRESULT Query(const wchar_t* session_name,
  /external/chromium_org/base/win/
event_trace_controller.h 126 static HRESULT Query(const wchar_t* session_name,
  /external/chromium_org/content/browser/renderer_host/pepper/
pepper_external_file_ref_backend.h 38 virtual int32_t Query(ppapi::host::ReplyMessageContext context) OVERRIDE;
pepper_internal_file_ref_backend.h 42 virtual int32_t Query(ppapi::host::ReplyMessageContext context) OVERRIDE;
pepper_file_ref_host.h 39 virtual int32_t Query(ppapi::host::ReplyMessageContext context) = 0;
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/pepper/
all_interfaces.h 32 METHOD3(FileIoInterface, int32_t, Query, PP_Resource, PP_FileInfo*,
48 METHOD3(FileRefInterface, int32_t, Query, PP_Resource, PP_FileInfo*,
  /external/chromium_org/ppapi/c/
ppb_file_ref.h 183 * Query() queries info about a file or directory. You must have access to
191 * completion of Query().
195 int32_t (*Query)(PP_Resource file_ref,
  /external/chromium_org/chrome/test/perf/frame_rate/
frame_rate_tests.cc 121 using trace_analyzer::Query;
129 Query::EventNameIs("SwapBuffers") &&
130 Query::EventHasNumberArg("GLImpl"));
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
mount_node_html5fs.cc 162 int32_t result = mount_->ppapi()->GetFileRefInterface()->Query(
252 ->Query(fileio_resource_, &info, PP_BlockUntilComplete());
270 // First query the FileRef to see if it is a file or directory.
273 mount_->ppapi()->GetFileRefInterface()->Query(fileref_resource_,
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
DownloadStorageProvider.java 20 import android.app.DownloadManager.Query;
167 cursor = mDm.query(new Query().setFilterById(Long.parseLong(docId)));
189 cursor = mDm.query(new DownloadManager.Query().setOnlyIncludeVisibleInDownloadsUi(true)
212 cursor = mDm.query(
213 new DownloadManager.Query().setOnlyIncludeVisibleInDownloadsUi(true));
234 cursor = mDm.query(new DownloadManager.Query().setOnlyIncludeVisibleInDownloadsUi(true)
  /frameworks/base/core/java/android/app/
DownloadManager.java 763 public static class Query {
786 public Query setFilterById(long... ids) {
796 public Query setFilterByStatus(int flags) {
802 * Controls whether this query includes downloads not visible in the system's Downloads UI.
803 * @param value if true, this query will only include downloads that should be displayed in
804 * the system's Downloads UI; if false (the default), this query will include
809 public Query setOnlyIncludeVisibleInDownloadsUi(boolean value) {
995 public Cursor query(Query query) { method in class:DownloadManager
1027 Query query = new Query().setFilterById(id); local
1079 Query query = new Query().setFilterById(id); local
    [all...]
  /external/chromium_org/chrome/test/perf/rendering/
throughput_tests.cc 303 using trace_analyzer::Query;
347 Query::EventNameIs("SwapBuffers"), &events_gpu) > 0u);
360 Query query_sw = Query::EventNameIs("TestFrameTickSW");
361 Query query_gpu = Query::EventNameIs("TestFrameTickGPU");
  /packages/apps/Dialer/tests/src/com/android/dialer/interactions/
PhoneNumberInteractionTest.java 35 import com.android.contacts.common.test.mocks.MockContentProvider.Query;
234 private Query expectQuery(Uri contactUri) {
238 private Query expectQuery(Uri uri, boolean isDataUri) {

Completed in 1559 milliseconds

1 23 4 5 6 7 8