HomeSort by relevance Sort by last modified time
    Searched refs:Query (Results 126 - 150 of 347) sorted by null

1 2 3 4 56 7 8 91011>>

  /packages/providers/DownloadProvider/tests/src/com/android/providers/downloads/
PublicApiFunctionalTest.java 262 Cursor cursor = mManager.query(new DownloadManager.Query());
265 cursor = mManager.query(new DownloadManager.Query().setFilterById(download2.mId));
268 cursor = mManager.query(new DownloadManager.Query()
272 cursor = mManager.query(new DownloadManager.Query()
277 cursor = mManager.query(new DownloadManager.Query()
    [all...]
  /external/llvm/lib/Analysis/
ValueTracking.cpp 68 struct Query {
86 Query(const DataLayout &DL, AssumptionCache *AC, const Instruction *CxtI,
90 Query(const Query &Q, const Value *NewExcl)
123 unsigned Depth, const Query &Q);
130 Query(DL, AC, safeCxtI(V, CxtI), DT));
149 unsigned Depth, const Query &Q);
156 Query(DL, AC, safeCxtI(V, CxtI), DT));
160 const Query &Q);
167 Query(DL, AC, safeCxtI(V, CxtI), DT))
    [all...]
  /frameworks/base/core/java/android/app/
DownloadManager.java 805 public static class Query {
    [all...]
  /external/swiftshader/src/Renderer/
Renderer.hpp 93 struct Query
97 Query(Type type) : building(false), reference(0), data(0), type(type)
248 std::list<Query*> *queries;
394 void addQuery(Query *query);
395 void removeQuery(Query *query);
486 std::list<Query*> queries;
  /external/autotest/client/cros/cellular/
prologix_scpi_driver_test_noautorun.py 125 scpi_connection.Query('*IDN')
191 response = scpi_connection.Query('*IDN?')
  /external/autotest/frontend/client/src/autotest/tko/
TkoUtils.java 8 import autotest.common.table.DataSource.Query;
91 static void doCsvRequest(RpcDataSource dataSource, Query query, JSONObject extraParams) {
93 JSONObject arguments = query.getParams();
  /external/llvm/lib/CodeGen/
LiveIntervalUnion.cpp 104 bool LiveIntervalUnion::Query::isSeenInterference(LiveInterval *VirtReg) const {
111 // query's live virtual register.
113 // The query state is one of:
119 unsigned LiveIntervalUnion::Query::
  /external/mesa3d/src/mesa/drivers/dri/i915/
intel_pixel_copy.c 183 if (ctx->Query.CurrentOcclusionObject)
184 ctx->Query.CurrentOcclusionObject->Result += width * height;
  /external/mesa3d/src/mesa/drivers/dri/i965/
intel_pixel_copy.c 185 if (ctx->Query.CurrentOcclusionObject)
186 ctx->Query.CurrentOcclusionObject->Result += width * height;
intel_pixel_draw.c 138 if (ctx->Query.CurrentOcclusionObject)
139 ctx->Query.CurrentOcclusionObject->Result += width * height;
brw_conditional_render.c 29 * Support for conditional rendering based on query objects
52 struct brw_query_object *query,
57 assert(query->bo != NULL);
67 query->bo,
73 query->bo,
99 struct brw_query_object *query = (struct brw_query_object *) q; local
122 /* If there are already samples from a BLT operation or if the query object
126 if (query->Base.Result || query->Base.Ready)
127 set_predicate_enable(brw, (query->Base.Result != 0) ^ inverted)
    [all...]
  /external/swiftshader/src/D3D9/
Direct3DQuery9.cpp 30 query = new sw::Query(sw::Query::FRAGMENTS_PASSED);
34 query = 0;
40 if(query)
42 device->removeQuery(query);
44 delete query;
161 query->begin();
162 device->addQuery(query);
167 query->end()
    [all...]
  /frameworks/base/core/tests/coretests/src/android/app/
DownloadManagerStressTest.java 19 import android.app.DownloadManager.Query;
95 Cursor cursor = mDownloadManager.query(new Query());
  /packages/apps/Contacts/tests/src/com/android/contacts/interactions/
ContactDeletionInteractionTest.java 36 import com.android.contacts.test.mocks.MockContentProvider.Query;
133 private Query expectQuery() {
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
SystemBroadcastReceiver.java 118 final DownloadManager.Query q = new DownloadManager.Query();
119 // Query all the download statuses except the succeeded ones.
124 final Cursor c = downloadManagerWrapper.query(q);
  /art/tools/ahat/src/
ObjectsHandler.java 38 public void handle(Doc doc, Query query) throws IOException {
39 int id = query.getInt("id", 0);
40 int depth = query.getInt("depth", 0);
41 String className = query.get("class", null);
42 String heapName = query.get("heap", null);
61 SubsetSelector<AhatInstance> selector = new SubsetSelector(query, OBJECTS_ID, insts);
OverviewHandler.java 38 public void handle(Doc doc, Query query) throws IOException {
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Table/
Table.py 2 # This file is used to create/update/query/erase a common table
50 ## Query table
52 # Query all records of the table
54 def Query(self):
63 EdkLogger.verbose("Query tabel %s DONE!" % self.Table)
  /external/autotest/frontend/client/src/autotest/common/table/
ArrayDataSource.java 46 private Query theQuery = new ArrayQuery(); // only need one for each instance
78 public void query(JSONObject params, DataCallback callback) { method in class:ArrayDataSource
DynamicTable.java 5 import autotest.common.table.DataSource.Query;
53 private Query currentQuery;
238 dataSource.query(params, this);
242 public void onQueryReady(Query query) {
243 currentQuery = query;
245 query.getTotalResultCount(this);
299 public Query getCurrentQuery() {
  /prebuilts/go/darwin-x86/src/database/sql/
example_test.go 17 rows, err := db.Query("SELECT name FROM users WHERE age=?", age)
71 rows, err := db.Query(q, age)
sql_test.go 106 exec(t, db, "PANIC|Query|WIPE") // should run successfully: Exec does not call Query
111 expectPanic("Query Query", func() { db.Query("PANIC|Query|SELECT|people|age,name|") })
112 expectPanic("Query NumInput", func() { db.Query("PANIC|NumInput|SELECT|people|age,name|") })
113 expectPanic("Query Close", func() {
114 rows, err := db.Query("PANIC|Close|SELECT|people|age,name|"
    [all...]
  /prebuilts/go/linux-x86/src/database/sql/
example_test.go 17 rows, err := db.Query("SELECT name FROM users WHERE age=?", age)
71 rows, err := db.Query(q, age)
sql_test.go 106 exec(t, db, "PANIC|Query|WIPE") // should run successfully: Exec does not call Query
111 expectPanic("Query Query", func() { db.Query("PANIC|Query|SELECT|people|age,name|") })
112 expectPanic("Query NumInput", func() { db.Query("PANIC|NumInput|SELECT|people|age,name|") })
113 expectPanic("Query Close", func() {
114 rows, err := db.Query("PANIC|Close|SELECT|people|age,name|"
    [all...]
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/extras/tycho-p2-extras-plugin/0.18.1/
tycho-p2-extras-plugin-0.18.1.jar 

Completed in 1095 milliseconds

1 2 3 4 56 7 8 91011>>