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

12 3 4 5 6 7 8

  /external/chromium_org/cc/scheduler/
texture_uploader.cc 42 TextureUploader::Query::Query(WebKit::WebGraphicsContext3D* context)
51 TextureUploader::Query::~Query() { context_->deleteQueryEXT(query_id_); }
53 void TextureUploader::Query::Begin() {
59 void TextureUploader::Query::End() {
63 bool TextureUploader::Query::IsPending() {
70 unsigned TextureUploader::Query::Value() {
99 for (ScopedPtrDeque<Query>::iterator it = pending_queries_.begin();
123 available_queries_.push_back(Query::Create(context_))
    [all...]
  /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/llvm/lib/Transforms/Utils/
SpecialCaseList.cpp 47 bool match(StringRef Query) const {
48 return Strings.count(Query) || (RegEx && RegEx->match(Query));
197 const StringRef Query,
205 if (II->getValue().match(Query)) {
215 const StringRef Query,
222 return II->getValue().match(Query);
  /external/v8/test/cctest/
test-decls.cc 71 virtual v8::Handle<Integer> Query(Local<String> key);
127 int get, int set, int query,
140 CHECK_EQ(query, query_count());
177 return context->Query(key);
197 v8::Handle<Integer> DeclarationContext::Query(Local<String> key) {
252 virtual v8::Handle<Integer> Query(Local<String> key) {
307 virtual v8::Handle<Integer> Query(Local<String> key) {
378 virtual v8::Handle<Integer> Query(Local<String> key) {
463 virtual v8::Handle<Integer> Query(Local<String> key) {
511 virtual v8::Handle<Integer> Query(Local<String> key)
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
DictionaryDownloadProgressBar.java 20 import android.app.DownloadManager.Query;
124 final Query query = new Query().setFilterById(mId); local
128 final Cursor cursor = mDownloadManager.query(query);
  /external/marisa-trie/lib/marisa/
trie-search.cc 75 return lookup_<const Query &>(Query(ptr, length));
92 return find_<const Query &>(Query(ptr, length),
110 return find_<const Query &>(Query(ptr, length),
125 return find_first_<const Query &>(Query(ptr, length), key_length);
139 return find_last_<const Query &>(Query(ptr, length), key_length)
    [all...]
  /external/chromium_org/ppapi/cpp/
file_ref.h 152 /// Query() queries info about a file or directory. You must have access to
156 /// to be called upon completion of Query().
159 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().
78 int32_t Query(PP_FileInfo* result_buf,
  /external/chromium_org/ppapi/thunk/
ppb_file_io_thunk.cc 49 int32_t Query(PP_Resource file_io,
52 VLOG(4) << "PPB_FileIO::Query()";
56 return enter.SetResult(enter.object()->Query(info, enter.callback()));
147 &Query,
160 &Query,
ppb_file_ref_thunk.cc 119 int32_t Query(PP_Resource file_ref,
122 VLOG(4) << "PPB_FileRef::Query()";
126 return enter.SetResult(enter.object()->Query(info,
172 &Query,
ppb_file_io_api.h 26 virtual int32_t Query(PP_FileInfo* info,
ppb_file_ref_api.h 38 virtual int32_t Query(PP_FileInfo* info,
43 // We define variants of Query and ReadDirectoryEntries because
48 // plugins, and Query and ReadDirectoryEntries must not be called in
  /external/chromium_org/gpu/command_buffer/client/
query_tracker_unittest.cc 95 QuerySync* GetSync(QueryTracker::Query* query) {
96 return query->info_.sync;
99 QuerySyncManager::Bucket* GetBucket(QueryTracker::Query* query) {
100 return query->info_.bucket;
113 // Check we can create a Query.
114 QueryTracker::Query* query = query_tracker_->CreateQuery( local
116 ASSERT_TRUE(query != NULL)
133 QueryTracker::Query* query = query_tracker_->CreateQuery( local
178 QueryTracker::Query* query = query_tracker_->CreateQuery( local
    [all...]
  /external/chromium_org/gpu/command_buffer/service/
query_manager_unittest.cc 63 QueryManager::Query* CreateQuery(
73 QueryManager::Query* query, GLuint service_id, uint32 submit_count) {
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));
157 // Check we can create a Query.
158 scoped_refptr<QueryManager::Query> query(
484 QueryManager::Query* query = manager->CreateQuery( local
518 QueryManager::Query* query = manager->CreateQuery( local
544 QueryManager::Query* query = manager->CreateQuery( local
    [all...]
  /frameworks/base/core/tests/hosttests/test-apps/DownloadManagerTestApp/src/com/android/frameworks/downloadmanagertests/
DownloadManagerBaseTest.java 20 import android.app.DownloadManager.Query;
90 Cursor cursor = dm.query(new Query().setFilterById(id));
290 * @param id The download id to query on (wait for)
294 doWaitForDownloadsOrTimeout(new Query().setFilterById(id),
303 * @param id The download id to query on (wait for)
315 * @param id The download id to query on (wait for)
321 doWaitForDownloadsOrTimeout(new Query().setFilterById(id), poll, timeoutMillis);
335 doWaitForDownloadsOrTimeout(new Query(), poll, timeoutMillis);
343 * @param id The id of the download to query agains
558 Query query = new Query(); local
    [all...]
  /external/marisa-trie/v0_1_5/lib/marisa_alpha/
trie-search.cc 76 return lookup_<const Query &>(Query(ptr, length));
94 return find_<const Query &>(Query(ptr, length),
113 return find_<const Query &>(Query(ptr, length),
129 return find_first_<const Query &>(Query(ptr, length), key_length);
144 return find_last_<const Query &>(Query(ptr, length), key_length)
    [all...]
  /external/llvm/lib/Analysis/
InstructionSimplify.cpp 44 struct Query {
49 Query(const DataLayout *td, 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,
190 unsigned OpcToExtract, const Query &Q
    [all...]
  /external/llvm/lib/CodeGen/
LiveRegMatrix.cpp 57 Queries.reset(new LiveIntervalUnion::Query[NumRegUnits]);
128 LiveIntervalUnion::Query &LiveRegMatrix::query(LiveInterval &VirtReg, function in class:LiveRegMatrix
130 LiveIntervalUnion::Query &Q = Queries[RegUnit];
150 if (query(VirtReg, *Units).checkInterference())
  /external/chromium/base/win/
scoped_comptr.h 90 template <class Query>
91 HRESULT QueryInterface(Query** p) {
  /external/chromium_org/base/win/
scoped_comptr.h 89 template <class Query>
90 HRESULT QueryInterface(Query** p) {
  /external/chromium_org/ppapi/api/
ppb_file_ref.idl 172 * Query() queries info about a file or directory. You must have access to
180 * completion of Query().
185 int32_t Query([in] PP_Resource file_ref,
  /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().
144 int32_t (*Query)(PP_Resource file_io,
303 int32_t (*Query)(PP_Resource file_io,
  /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 2191 milliseconds

12 3 4 5 6 7 8