HomeSort by relevance Sort by last modified time
    Searched defs:query (Results 251 - 275 of 350) sorted by null

<<11121314

  /external/mesa3d/src/amd/vulkan/
radv_query.c 47 /* Otherwise we need to change the query reset procedure */
550 &device->meta_state.query.ds_layout);
557 .pSetLayouts = &device->meta_state.query.ds_layout,
565 &device->meta_state.query.p_layout);
581 .layout = device->meta_state.query.p_layout,
587 &device->meta_state.query.occlusion_query_pipeline);
603 .layout = device->meta_state.query.p_layout,
609 &device->meta_state.query.pipeline_statistics_query_pipeline);
621 if (device->meta_state.query.pipeline_statistics_query_pipeline)
623 device->meta_state.query.pipeline_statistics_query_pipeline
835 unsigned query = firstQuery + i; local
967 unsigned query = firstQuery + i; local
989 unsigned query = firstQuery + i; local
1008 unsigned query = firstQuery + i; local
    [all...]
  /external/mesa3d/src/gallium/drivers/rbug/
rbug_context.c 144 struct pipe_query *query; local
147 query = pipe->create_query(pipe,
151 return query;
156 struct pipe_query *query)
163 query);
169 struct pipe_query *query)
176 ret = pipe->begin_query(pipe, query);
183 struct pipe_query *query)
191 query);
199 struct pipe_query *query,
    [all...]
  /external/mesa3d/src/gallium/drivers/trace/
tr_context.c 48 struct pipe_query *query; member in struct:trace_query
53 trace_query(struct pipe_query *query)
55 return (struct trace_query *)query;
60 trace_query_unwrap(struct pipe_query *query)
62 if (query) {
63 return trace_query(query)->query;
117 struct pipe_query *query; local
125 query = pipe->create_query(pipe, query_type, index);
127 trace_dump_ret(ptr, query);
155 struct pipe_query *query = tr_query->query; local
223 struct pipe_query *query = tr_query->query; local
    [all...]
  /external/python/apitools/apitools/base/py/
base_api.py 89 query_params: (repeated) query parameters for this method.
101 downloading the request via the `alt=media` query
150 # * base will never contain params, query, or fragment
173 self.query_params = urllib.parse.parse_qs(components.query or '')
183 query_params = urllib.parse.parse_qs(urlparts.query)
198 if components.path or components.query or components.fragment:
205 def query(self): member in class:_UrlBuilder
206 # TODO(craigcitro): In the case that some of the query params are
218 self.__scheme, self.__netloc, self.relative_path, self.query, ''))
544 """Construct a dictionary of query parameters for this request.""
    [all...]
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/
ContactsFacade.java 109 Cursor cursor = mService.getContentResolver().query(phoneData, null, null, null, null);
124 Cursor cursor = mContentResolver.query(CONTACTS_URI, null, null, null, null);
139 Cursor cursor = mContentResolver.query(CONTACTS_URI, columns, null, null, null);
170 String[] query = queryList.toArray(new String[queryList.size()]); local
171 Cursor cursor = mContentResolver.query(CONTACTS_URI, query, null, null, null);
202 mContentResolver.query(
241 Cursor cursor = mContentResolver.query(uri, columns, null, null, null);
256 Cursor cursor = mContentResolver.query(CONTACTS_URI, null, null, null, null);
277 mContentResolver.query(
    [all...]
  /external/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/activity/
ApiBrowser.java 102 private void updateAndFilterMethodDescriptors(final String query) {
117 if (query == null) {
120 return descriptor.getName().toLowerCase().contains(query.toLowerCase());
129 final String query = intent.getStringExtra(SearchManager.QUERY); local
130 ((TextView) findViewById(R.id.left_text)).setText(query);
131 updateAndFilterMethodDescriptors(query);
  /frameworks/av/media/codec2/vndk/
C2Store.cpp 140 // query min and max usage as well as block size via supported values
142 std::vector<C2FieldSupportedValuesQuery> query = { local
146 c2_status_t res = store->querySupportedValues_sm(query);
148 if (query[0].status == C2_OK) {
149 const C2FieldSupportedValues &fsv = query[0].values;
158 if (query[1].status == C2_OK) {
159 const C2FieldSupportedValues &fsv = query[1].values;
709 ALOGD("failed to query interface for kind and domain: %d", res);
723 ALOGD("failed to query interface: %d", res);
727 ALOGD("failed to query interface: unexpected vector size: %zu", params.size())
    [all...]
  /frameworks/av/media/codec2/vndk/util/
C2InterfaceHelper.cpp 763 c2_status_t C2InterfaceHelper::query( function in class:C2InterfaceHelper
823 for (C2FieldSupportedValuesQuery &query : fields) {
824 C2_LOG(VERBOSE) << "querying field " << query.field();
825 C2Param::Index ix = _C2ParamInspector::GetIndex(query.field());
829 query.status = C2_BAD_INDEX;
834 _C2ParamInspector::GetOffset(query.field()) - sizeof(C2Param));
837 query.status = C2_NOT_FOUND;
842 << StringPrintf("@%02zx+%02x", offs, _C2ParamInspector::GetSize(query.field()));
844 param->findField(offs, _C2ParamInspector::GetSize(query.field()));
847 query.status = C2_NOT_FOUND
    [all...]
  /cts/tests/tests/database/src/android/database/cts/
DatabaseUtilsTest.java 118 Cursor cursor = mDatabase.query(TABLE_NAME, TEST_PROJECTION,
131 cursor = mDatabase.query(TABLE_NAME, TEST_PROJECTION, null, null, null, null, null);
151 Cursor cursor = db.query(TABLE_NAME, PROJECTION, null, null, null, null, null);
162 Cursor cursor = mDatabase.query(TABLE_NAME, TEST_PROJECTION,
182 Cursor cursor = mDatabase.query(TABLE_NAME, TEST_PROJECTION,
201 Cursor cursor = mDatabase.query(TABLE_NAME, TEST_PROJECTION, null, null, null, null, null);
230 Cursor cursor = mDatabase.query(TABLE_NAME, TEST_PROJECTION, null, null, null, null, null);
259 Cursor cursor = mDatabase.query(TABLE_NAME, TEST_PROJECTION,
274 cursor = mDatabase.query("boolean_test", new String[] {"value"},
290 Cursor cursor = mDatabase.query(TABLE_NAME, TEST_PROJECTION
445 String query = "SELECT age FROM " + TABLE_NAME; local
560 String query = "SELECT name FROM " + TABLE_NAME; local
596 String query = "SELECT data FROM blob_test"; local
    [all...]
  /cts/tests/tests/net/src/android/net/cts/
DnsResolverTest.java 150 // In order to test query with null network, add null as an element.
151 // Test cases which query with null network will go on default network.
170 // Check QR field.(query (0), or a response (1)).
190 * A query callback that ensures that the query is cancelled and that onAnswer is never
191 * called. If the query succeeds before it is cancelled, needRetry will return true so the
382 // Start a DNS query and the cancel it immediately. Use VerifyCancelCallback to expect
383 // that the query is cancelled before it succeeds. If it is not cancelled before it
403 assertTrue(msg + " query was not cancelled",
411 // Start a DNS query and the cancel it immediately. Use VerifyCancelCallback to expec
    [all...]
  /development/apps/DumpViewer/app/src/main/java/com/android/dumpviewer/
DumpActivity.java 471 final String query = mAcSearchQuery.getText().toString(); local
472 if (query.length() == 0) {
477 mSearchHistory.add(query);
479 if (query.equals(mLastQuery)) {
482 mWebView.findAllAsync(query);
484 mLastQuery = query;
  /device/generic/car/emulator/audio/driver/
audio_hw.c 173 struct str_parms *query = str_parms_create_str(keys); local
179 ret = str_parms_get_str(query, AUDIO_PARAMETER_STREAM_ROUTING, value, sizeof(value));
189 str_parms_destroy(query);
676 struct str_parms *query = str_parms_create_str(keys); local
682 ret = str_parms_get_str(query, AUDIO_PARAMETER_STREAM_ROUTING, value, sizeof(value));
690 str_parms_destroy(query);
    [all...]
  /device/generic/goldfish-opengl/shared/OpenglCodecCommon/
GLClientState.cpp 1132 CubeMapDef query; local
    [all...]
  /external/guice/extensions/persist/lib/
hibernate-search.jar 
  /external/ims/rcs/presencepolling/src/com/android/service/ims/presence/
EABContactManager.java 98 // Data Query Columns, which match the DATA_QUERY_PROJECTION
430 public static class Query {
453 public Query setFilterById(long... ids) {
462 public Query setFilterByNumber(String number) {
471 public Query setFilterByTime(String selection) {
484 public Query setFilterByTime(String column, long last) {
497 public Query setFilterByEarliestTime(String column, long earliest) {
516 public Query orderBy(String column, int direction) {
533 * Run this query using the given ContentResolver.
534 * @param projection the projection to pass to ContentResolver.query()
653 public Cursor query(Query query) { method in class:EABContactManager
686 Query query = new Query().setFilterByNumber(number) local
    [all...]
  /external/libevent/test/
regress_util.c 1429 struct tm query; local
    [all...]
  /external/libxml2/
nanohttp.c 129 char *query; /* the query string */ member in struct:xmlNanoHTTPCtxt
303 if (ctxt->query != NULL) {
304 xmlFree(ctxt->query);
305 ctxt->query = NULL;
332 if (uri->query != NULL)
333 ctxt->query = xmlMemStrdup(uri->query);
429 if (ctxt->query != NULL) xmlFree(ctxt->query);
    [all...]
  /external/mdnsresponder/mDNSPosix/
NetMonitor.c 79 // Query and Answer operations are actually subdivided into two classes:
80 // Browse query/answer and
81 // Resolve query/answer
85 // The "Browse" variants of query/answer
90 // The "Resolve" variants of query/answer
133 static int NumPktQ, NumPktL, NumPktR, NumPktB; // Query/Legacy/Response/Bad
164 HostPkt_Q = 0, // Query
165 HostPkt_L = 1, // Legacy Query
300 DNSMessage query; local
301 mDNSu8 *qptr = query.data
    [all...]
  /external/mesa3d/src/egl/drivers/dri2/
platform_wayland.c 701 EGLBoolean query; local
704 query = dri2_dpy->image->queryImage(image, __DRI_IMAGE_ATTRIB_FOURCC,
706 if (query)
709 query = dri2_dpy->image->queryImage(image, __DRI_IMAGE_ATTRIB_FORMAT,
711 if (!query)
732 EGLBoolean query; local
736 query = dri2_dpy->image->queryImage(image, __DRI_IMAGE_ATTRIB_WIDTH, &width);
737 query &= dri2_dpy->image->queryImage(image, __DRI_IMAGE_ATTRIB_HEIGHT,
739 query &= get_fourcc(dri2_dpy, image, &fourcc);
740 if (!query)
    [all...]
  /external/mesa3d/src/gallium/drivers/r300/
r300_emit.c 648 struct r300_query *query = r300->query_current; local
651 if (!query)
662 query->begin_emitted = TRUE;
666 struct r300_query *query)
687 OUT_CS_REG(R300_ZB_ZPASS_ADDR, (query->num_results + 3) * 4);
692 OUT_CS_REG(R300_ZB_ZPASS_ADDR, (query->num_results + 2) * 4);
699 OUT_CS_REG(R300_ZB_ZPASS_ADDR, (query->num_results + 1) * 4);
704 OUT_CS_REG(R300_ZB_ZPASS_ADDR, (query->num_results + 0) * 4);
719 struct r300_query *query)
725 OUT_CS_REG(R300_ZB_ZPASS_ADDR, query->num_results * 4)
750 struct r300_query *query = r300->query_current; local
    [all...]
  /external/mesa3d/src/gallium/drivers/r600/
r600_query.c 60 struct r600_query_sw *query = (struct r600_query_sw *)rquery; local
62 rscreen->b.fence_reference(&rscreen->b, &query->fence, NULL);
63 FREE(query);
88 default: unreachable("query type does not correspond to winsys id");
95 struct r600_query_sw *query = (struct r600_query_sw *)rquery; local
98 switch(query->b.type) {
103 query->begin_result = rctx->num_draw_calls;
106 query->begin_result = rctx->num_decompress_calls;
109 query->begin_result = rctx->num_mrt_draw_calls;
112 query->begin_result = rctx->num_prim_restart_calls
245 struct r600_query_sw *query = (struct r600_query_sw *)rquery; local
399 struct r600_query_sw *query = (struct r600_query_sw *)rquery; local
470 struct r600_query_sw *query; local
485 struct r600_query_hw *query = (struct r600_query_hw *)rquery; local
612 struct r600_query_hw *query = CALLOC_STRUCT(r600_query_hw); local
910 struct r600_query_hw *query = (struct r600_query_hw *)ctx->render_cond; local
1030 struct r600_query_hw *query = (struct r600_query_hw *)rquery; local
1059 struct r600_query_hw *query = (struct r600_query_hw *)rquery; local
1325 struct r600_query_hw *query = (struct r600_query_hw *)rquery; local
1596 struct r600_query_hw *query = (struct r600_query_hw *)rquery; local
1764 struct r600_query_hw *query; local
1775 struct r600_query_hw *query; local
1799 struct r600_query_hw *query; local
    [all...]
  /external/mesa3d/src/gallium/drivers/radeon/
r600_query.c 61 struct r600_query_sw *query = (struct r600_query_sw *)rquery; local
63 sscreen->b.fence_reference(&sscreen->b, &query->fence, NULL);
64 FREE(query);
90 default: unreachable("query type does not correspond to winsys id");
97 struct r600_query_sw *query = (struct r600_query_sw *)rquery; local
100 switch(query->b.type) {
105 query->begin_result = rctx->num_draw_calls;
108 query->begin_result = rctx->num_decompress_calls;
111 query->begin_result = rctx->num_mrt_draw_calls;
114 query->begin_result = rctx->num_prim_restart_calls
255 struct r600_query_sw *query = (struct r600_query_sw *)rquery; local
419 struct r600_query_sw *query = (struct r600_query_sw *)rquery; local
490 struct r600_query_sw *query; local
505 struct r600_query_hw *query = (struct r600_query_hw *)rquery; local
634 struct r600_query_hw *query = CALLOC_STRUCT(r600_query_hw); local
948 struct r600_query_hw *query = (struct r600_query_hw *)ctx->render_cond; local
1086 struct r600_query_hw *query = (struct r600_query_hw *)rquery; local
1117 struct r600_query_hw *query = (struct r600_query_hw *)rquery; local
1366 struct r600_query_hw *query = (struct r600_query_hw *)rquery; local
1637 struct r600_query_hw *query = (struct r600_query_hw *)rquery; local
1840 struct r600_query_hw *query; local
1851 struct r600_query_hw *query; local
1873 struct r600_query_hw *query; local
    [all...]
r600_texture.c 2194 struct r600_query_hw *query = (struct r600_query_hw*) local
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_performance_query.c 32 * that we can snapshot at the beginning and end of a query.
114 * results of an OA metrics query we need to consider all the periodic
132 * These nodes may hold samples for query A:
135 * These nodes may hold samples for query B:
138 * These nodes may hold samples for query C:
164 * When a query starts we take a reference on the current tail of
166 * relate to the newly-started query. A pointer to this node is
167 * also saved in the query object's ->oa.samples_head.
169 * E.g. starting query A while there are two nodes in .sample_buffers:
177 * Moving forward to when the B query starts with no new buffer nodes
241 const struct brw_perf_query_info *query; member in struct:brw_perf_query_object
425 const struct brw_perf_query_info *query = local
459 const struct brw_perf_query_info *query = local
484 const struct brw_perf_query_info *query = obj->query; local
612 const struct brw_perf_query_info *query = obj->query; local
1044 const struct brw_perf_query_info *query = obj->query; local
1401 const struct brw_perf_query_info *query = obj->query; local
1445 const struct brw_perf_query_info *query = obj->query; local
1515 const struct brw_perf_query_info *query = local
1633 struct brw_perf_query_info *query = append_query_info(brw); local
1827 struct brw_perf_query_info *query = entry->data; local
1864 const struct brw_perf_query_info *query = entry->data; local
    [all...]
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
HttpUrl.java 53 * As another example, this code prints the human-readable query parameters of a Twitter search:
121 * <h4>Query</h4>
122 * The query is optional: it can be null, empty, or non-empty. For many HTTP URLs the query string
124 * query as the single string, or as individual name-value parameters. With name-value parameters
128 * The fragment is optional: it can be null, empty, or non-empty. Unlike host, port, path, and query
133 * string {@code cute #puppies} is encoded as {@code cute%20%23puppies} when used as a query
144 * start of the URL's query. But within the query and fragment components, the {@code ?} character
149 * .query("_Who?_"
519 public String query() { method in class:HttpUrl
791 public Builder query(String query) { method in class:HttpUrl.Builder
    [all...]

Completed in 3440 milliseconds

<<11121314