HomeSort by relevance Sort by last modified time
    Searched refs:Query (Results 26 - 50 of 212) sorted by null

12 3 4 5 6 7 8 9

  /external/jmdns/src/javax/jmdns/impl/constants/
DNSOperationCode.java 13 * Query [RFC1035]
15 Query("Query", 0),
17 * IQuery (Inverse Query, Obsolete) [RFC3425]
19 IQuery("Inverse Query", 1),
  /external/llvm/include/llvm/Support/
SpecialCaseList.h 77 /// and @Query satisfies a wildcard expression <E>.
78 bool inSection(const StringRef Section, const StringRef Query,
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
DownloadManagerWrapper.java 20 import android.app.DownloadManager.Query;
81 public Cursor query(final Query query) { method in class:DownloadManagerWrapper
84 return mDownloadManager.query(query);
89 Log.e(TAG, "Can't query the download manager", e);
DictionaryDownloadProgressBar.java 20 import android.app.DownloadManager.Query;
120 final Query query = new Query().setFilterById(mId); local
123 final Cursor cursor = mDownloadManagerWrapper.query(query);
  /external/llvm/lib/Support/
SpecialCaseList.cpp 44 bool match(StringRef Query) const {
45 return Strings.count(Query) || (RegEx && RegEx->match(Query));
160 bool SpecialCaseList::inSection(const StringRef Section, const StringRef Query,
167 return II->getValue().match(Query);
  /cts/tests/tests/app/src/android/app/cts/
DownloadManagerTest.java 19 import android.app.DownloadManager.Query;
113 cursor = mDownloadManager.query(new Query().setFilterById(id));
282 Query query = new Query(); local
283 cursor = mDownloadManager.query(query);
319 Query query = new Query() local
332 Query query = new Query().setFilterById(downloadId); local
348 Query query = new Query().setFilterByStatus(status); local
381 Query query = new Query(); local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
queryobj.c 41 * Allocate a new query object. This is a fallback routine called via
63 * Begin a query. Software driver fallback.
74 * End a query. Software driver fallback.
85 * Wait for query to complete. Software driver fallback.
91 /* For software drivers, _mesa_end_query() should have completed the query.
100 * Check if a query results are ready. Software driver fallback.
113 * Delete a query object. Called via ctx->Driver.DeleteQuery().
136 * Return pointer to the query object binding point for the given target.
145 return &ctx->Query.CurrentOcclusionObject;
150 return &ctx->Query.CurrentOcclusionObject
    [all...]
  /external/mesa3d/src/mesa/main/
queryobj.c 41 * Allocate a new query object. This is a fallback routine called via
63 * Begin a query. Software driver fallback.
74 * End a query. Software driver fallback.
85 * Wait for query to complete. Software driver fallback.
91 /* For software drivers, _mesa_end_query() should have completed the query.
100 * Check if a query results are ready. Software driver fallback.
113 * Delete a query object. Called via ctx->Driver.DeleteQuery().
136 * Return pointer to the query object binding point for the given target.
145 return &ctx->Query.CurrentOcclusionObject;
150 return &ctx->Query.CurrentOcclusionObject
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/messaging/
incognito_connectability.h 59 bool Query(const Extension* extension,
  /external/chromium_org/gpu/command_buffer/service/
gpu_control_service.cc 25 gles2::QueryManager::Query* query = query_manager_->GetQuery(query_id); local
26 if (!query)
29 query->AddCallback(callback);
query_manager_unittest.cc 62 QueryManager::Query* CreateQuery(
71 void QueueQuery(QueryManager::Query* query,
74 EXPECT_CALL(*gl_, BeginQueryARB(query->target(), service_id))
77 EXPECT_CALL(*gl_, EndQueryARB(query->target()))
80 EXPECT_TRUE(manager_->BeginQuery(query));
81 EXPECT_TRUE(manager_->EndQuery(query, submit_count));
158 // Check we can create a Query.
159 scoped_refptr<QueryManager::Query> query(
485 QueryManager::Query* query = manager->CreateQuery( local
519 QueryManager::Query* query = manager->CreateQuery( local
545 QueryManager::Query* query = manager->CreateQuery( local
    [all...]
  /external/chromium_org/ppapi/cpp/
file_ref.h 145 /// Query() queries info about a file or directory. You must have access to
149 /// to be called upon completion of Query().
152 int32_t Query(const CompletionCallbackWithOutput<PP_FileInfo>& callback);
file_io.h 68 /// Query() queries info about the file opened by this FileIO object. This
74 /// completion of Query(). <code>result_buf</code> must remain valid until
76 /// <code>result_buf</code> must remain valid until after Query() returns.
80 int32_t Query(PP_FileInfo* result_buf,
  /external/chromium_org/ppapi/thunk/
ppb_file_io_thunk.cc 47 int32_t Query(PP_Resource file_io,
50 VLOG(4) << "PPB_FileIO::Query()";
54 return enter.SetResult(enter.object()->Query(info, enter.callback()));
145 &Query,
158 &Query,
ppb_file_ref_api.h 39 virtual int32_t Query(PP_FileInfo* info,
ppb_file_io_api.h 26 virtual int32_t Query(PP_FileInfo* info,
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d11/
Fence11.cpp 38 queryDesc.Query = D3D11_QUERY_EVENT;
  /external/chromium_org/gpu/command_buffer/client/
query_tracker_unittest.cc 102 QuerySync* GetSync(QueryTracker::Query* query) {
103 return query->info_.sync;
106 QuerySyncManager::Bucket* GetBucket(QueryTracker::Query* query) {
107 return query->info_.bucket;
122 // Check we can create a Query.
123 QueryTracker::Query* query = query_tracker_->CreateQuery( local
125 ASSERT_TRUE(query != NULL)
142 QueryTracker::Query* query = query_tracker_->CreateQuery( local
208 QueryTracker::Query* query = query_tracker_->CreateQuery( local
    [all...]
  /external/llvm/lib/CodeGen/
LiveRegMatrix.cpp 58 Queries.reset(new LiveIntervalUnion::Query[NumRegUnits]);
69 // No need to clear Queries here, since LiveIntervalUnion::Query doesn't
133 LiveIntervalUnion::Query &LiveRegMatrix::query(LiveInterval &VirtReg, function in class:LiveRegMatrix
135 LiveIntervalUnion::Query &Q = Queries[RegUnit];
155 if (query(VirtReg, *Units).checkInterference())
  /external/llvm/lib/Analysis/
InstructionSimplify.cpp 44 struct Query {
49 Query(const DataLayout *DL, const TargetLibraryInfo *tli,
53 static Value *SimplifyAndInst(Value *, Value *, const Query &, unsigned);
54 static Value *SimplifyBinOp(unsigned, Value *, Value *, const Query &,
56 static Value *SimplifyCmpInst(unsigned, Value *, Value *, const Query &,
58 static Value *SimplifyOrInst(Value *, Value *, const Query &, unsigned);
59 static Value *SimplifyXorInst(Value *, Value *, const Query &, unsigned);
60 static Value *SimplifyTruncInst(Value *, Type *, const Query &, unsigned);
129 unsigned OpcToExpand, const Query &Q,
188 const Query &Q, unsigned MaxRecurse)
    [all...]
  /external/chromium_org/base/win/
scoped_comptr.h 89 template <class Query>
90 HRESULT QueryInterface(Query** p) {
  /external/chromium_org/ppapi/c/
ppb_file_io.h 129 * Query() queries info about the file opened by this FileIO object. The
138 * completion of Query(). <code>info</code> must remain valid until after the
140 * remain valid until after Query() returns.
146 int32_t (*Query)(PP_Resource file_io,
309 int32_t (*Query)(PP_Resource file_io,
ppb_file_ref.h 204 * Query() queries info about a file or directory. You must have access to
212 * completion of Query().
216 int32_t (*Query)(PP_Resource file_ref,
278 int32_t (*Query)(PP_Resource file_ref,
  /frameworks/base/core/tests/hosttests/test-apps/DownloadManagerTestApp/src/com/android/frameworks/downloadmanagertests/
DownloadManagerBaseTest.java 20 import android.app.DownloadManager.Query;
354 * @param id The download id to query on (wait for)
374 Query q = new Query();
377 Cursor cursor = mDownloadManager.query(q);
485 DownloadManager.Query q = new DownloadManager.Query();
487 Cursor response = mDownloadManager.query(q);
489 Log.i(LOG_TAG, String.format("Query to download manager returned nothing for id %d",id));
518 Cursor cursor = mDownloadManager.query(new Query())
540 Query query = new Query(); local
    [all...]
  /frameworks/base/core/tests/coretests/src/android/app/
DownloadManagerBaseTest.java 19 import android.app.DownloadManager.Query;
151 Cursor cursor = dm.query(new Query().setFilterById(id));
486 Cursor cursor = mDownloadManager.query(new Query().setFilterById(requestId));
646 * @param id The download id to query on (wait for)
658 * @param id The download id to query on (wait for)
671 * @param id The download id to query on (wait for)
677 doWaitForDownloadsOrTimeout(new Query().setFilterById(id), poll, timeoutMillis);
691 doWaitForDownloadsOrTimeout(new Query(), poll, timeoutMillis)
997 Query query = new Query(); local
    [all...]

Completed in 1056 milliseconds

12 3 4 5 6 7 8 9