Searched refs:query (Results 201 - 225 of 634) sorted by relevance

1234567891011>>

/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.p2.directorywatcher_1.0.203.R36x_v20101027.jar ... Collection) public org.eclipse.equinox.p2.query.IQueryResult query (org.eclipse.equinox.p2 ...
/external/chromium-trace/catapult/third_party/mapreduce/mapreduce/
H A Dproperty_range.py46 It supports splitting the range into n shards and generating a query that
189 """Make a query of entities within this range.
191 Query options are not supported. They should be specified when the query
195 ns: namespace of this query.
201 query = db.Query(self.model_class, namespace=ns)
203 query.filter("%s %s" % (f[0], f[1]), f[2])
205 query = self.model_class.query(namespace=ns)
207 query = query
[all...]
/external/mesa3d/src/mesa/drivers/dri/radeon/
H A Dradeon_context.c135 struct radeon_query_object *query = radeon->query.current; local
139 OUT_BATCH_RELOC(0, query->bo, query->curr_offset, 0, RADEON_GEM_DOMAIN_GTT, 0);
141 query->curr_offset += sizeof(uint32_t);
142 assert(query->curr_offset < RADEON_QUERY_PAGE_SIZE);
143 query->emitted_begin = GL_FALSE;
/external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/demos/tunes_db/server/
H A Dtunes_db.py176 of the query.
296 of the query.
355 customize_query: Function (request, query) -> None that adds additional
356 filters to Datastore query based on specifics of that search message.
378 query = info_class.search(name_prefix)
379 query.order('name')
381 customize_query(request, query)
384 # TODO(rafek): Pure query cursors are not safe for model with
385 # query restrictions. Would technically need to be encrypted.
386 query
[all...]
/external/jetty/src/java/org/eclipse/jetty/server/
H A DDispatcher.java70 * @param query
72 public Dispatcher(ContextHandler contextHandler, String uri, String pathInContext, String query) argument
77 _dQuery=query;
143 String query=_dQuery;
145 if (query!=null)
155 UrlEncoded.decodeTo(query,parameters,baseRequest.getCharacterEncoding());
179 attr._query=query;
233 // process any query string from the dispatch URL
234 String query=_dQuery;
235 if (query!
[all...]
/external/autotest/client/tests/kvm/tests/
H A Dqmp_basic.py185 bad_json.append("{ \"execute\": \"query-version\", }")
186 bad_json.append("{ 1: \"query-version\" }")
187 bad_json.append("{ true: \"query-version\" }")
188 bad_json.append("{ []: \"query-version\" }")
189 bad_json.append("{ {}: \"query-version\" }")
207 resp = monitor.cmd_qmp("query-status", id=id_key)
214 resp = monitor.cmd_qmp("query-status", id=id_key)
282 resp = monitor.cmd_obj({ "execute": "query-version" })
285 resp = monitor.cmd_obj({ "arguments": {}, "execute": "query-version" })
289 resp = monitor.cmd_obj({ "id": id, "execute": "query
[all...]
H A Dqmp_basic_rhel6.py185 bad_json.append("{ \"execute\": \"query-version\", }")
186 bad_json.append("{ 1: \"query-version\" }")
187 bad_json.append("{ true: \"query-version\" }")
188 bad_json.append("{ []: \"query-version\" }")
189 bad_json.append("{ {}: \"query-version\" }")
207 resp = monitor.cmd_qmp("query-status", id=id_key)
214 resp = monitor.cmd_qmp("query-status", id=id_key)
283 resp = monitor.cmd_obj({ "execute": "query-version" })
286 resp = monitor.cmd_obj({ "arguments": {}, "execute": "query-version" })
290 resp = monitor.cmd_obj({ "id": id_key, "execute": "query
[all...]
/external/chromium-trace/catapult/dashboard/dashboard/
H A Dassociate_alerts_test.py139 for anomaly_entity in anomaly.Anomaly.query().fetch():
164 578, anomaly.Anomaly.query(
167 578, anomaly.Anomaly.query(
180 for anomaly_entity in anomaly.Anomaly.query().fetch():
194 for anomaly_entity in anomaly.Anomaly.query().fetch():
H A Demail_summary.py37 sheriffs_to_email_query = sheriff.Sheriff.query(
67 recent_anomalies = anomaly.Anomaly.query(
H A Dsend_stoppage_alert_emails.py71 sheriffs_to_email_query = sheriff.Sheriff.query(
101 return stoppage_alert.StoppageAlert.query(
/external/chromium-trace/catapult/third_party/apiclient/googleapiclient/
H A Dmodel.py57 query_params: dict, parameters that appear in the query
61 A tuple of (headers, path_params, query, body)
65 query: string, query part of the request URI
97 alt_param: The value to supply as the "alt" query parameter for requests.
105 def _log_request(self, headers, path_params, query, body):
118 logging.info('query: %s', query)
127 query_params: dict, parameters that appear in the query
131 A tuple of (headers, path_params, query, bod
[all...]
/external/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/provider/
H A DScriptProvider.java92 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, method in class:ScriptProvider
98 String query = uri.getLastPathSegment().toLowerCase();
99 return querySearchSuggestions(query);
105 private Cursor querySearchSuggestions(String query) { argument
114 if (!scriptName.contains(query)) {
/external/mesa3d/src/gallium/drivers/r300/
H A Dr300_emit.c558 struct r300_query *query = r300->query_current; local
561 if (!query)
572 query->begin_emitted = TRUE;
576 struct r300_query *query)
597 OUT_CS_REG(R300_ZB_ZPASS_ADDR, (query->num_results + 3) * 4);
602 OUT_CS_REG(R300_ZB_ZPASS_ADDR, (query->num_results + 2) * 4);
609 OUT_CS_REG(R300_ZB_ZPASS_ADDR, (query->num_results + 1) * 4);
614 OUT_CS_REG(R300_ZB_ZPASS_ADDR, (query->num_results + 0) * 4);
629 struct r300_query *query)
635 OUT_CS_REG(R300_ZB_ZPASS_ADDR, query
575 r300_emit_query_end_frag_pipes(struct r300_context *r300, struct r300_query *query) argument
628 rv530_emit_query_end_single_z(struct r300_context *r300, struct r300_query *query) argument
641 rv530_emit_query_end_double_z(struct r300_context *r300, struct r300_query *query) argument
660 struct r300_query *query = r300->query_current; local
[all...]
/external/autotest/contrib/
H A Dsheriff_host_utils.py5 the specified query, and rank them according to frequence across these hosts.
10 --query 'labels=pool:suites,board:lumpy status="Repair Failed"'
13 ./sheriff_host_utils --limit 5 --query 'status="Repair Failed"'
36 '--query \'status="Repair Failed" invalid=0 locked=0\'')
48 parser.add_argument('--query', default=default_query,
49 help='Search query.Eg: --query %s' % default_query)
54 def _parse_query(query):
55 """Parses query string for a host.
60 --query 'labl
[all...]
/external/autotest/scheduler/shard/
H A Dsimple_heartbeat_server.py114 for query in parsed_path.query.split('&'):
115 split_query = query.split('=')
137 self.wfile.write('Serialize: %s,\nJob query: %s\nHost query: %s\n'
179 print ('Starting heartbeat server, query eg: http://localhost:%s/lumpy' %
/external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/demos/guestbook/server/
H A Dguestbook.py119 query = Greeting.all().order('-date')
124 query.filter('date <=', when)
127 for note_model in query.fetch(request.limit):
/external/deqp/framework/platform/X11/
H A DtcuX11.cpp95 XVisualInfo query; local
96 query.visualid = visualID;
98 XVisualInfo* response = XGetVisualInfo(m_display, VisualIDMask, &query, &numVisuals);
/external/opencv3/modules/features2d/test/ocl/
H A Dtest_brute_force_matcher.cpp67 Mat query, train; local
80 // Generate query descriptors randomly.
87 // copy each query descriptor to train set countFactor times
107 queryBuf.convertTo(query, CV_32F);
109 query.copyTo(uquery);
/external/autotest/frontend/client/src/autotest/tko/
H A DSavedQueriesControl.java40 private static final String DELETE_QUERY = "Delete query...";
85 "Enter query name:", "Save query");
88 "Select query:", "Delete query");
109 for (JSONObject query : new JSONArrayList<JSONObject>(result.isArray())) {
110 int id = (int) query.get("id").isNumber().doubleValue();
111 list.addItem(query.get("name").isString().stringValue(),
190 notifyManager.showError("No saved query with ID " + idString);
195 JSONObject query
[all...]
H A DTestGroupDataSource.java49 public void query(JSONObject params, DataCallback callback) { method in class:TestGroupDataSource
50 super.query(getFullRequestParams(params), callback);
/external/libdrm/amdgpu/
H A Damdgpu_gpu_info.c45 request.query = info_id;
59 request.query = AMDGPU_INFO_CRTC_FROM_ID;
75 request.query = AMDGPU_INFO_READ_MMR_REG;
93 request.query = AMDGPU_INFO_HW_IP_COUNT;
109 request.query = AMDGPU_INFO_HW_IP_INFO;
128 request.query = AMDGPU_INFO_FW_VERSION;
251 /* query visible only vram heap */
254 else /* query total vram heap */
/external/autotest/client/common_lib/cros/graphite/
H A Dautotest_es.py32 the query (json dict) we send to es is quite complicated (but flexible).
34 For example, the below query returns job_id, host_id, and job_start
39 'query': {
41 'query': {
58 To send a query once it is created, call execute_query() to send it to the
59 intended elasticsearch server. The query() function can be used to construct a
60 query with certain parameters and execute it all in one call.
141 def query(host=METADATA_ES_SERVER, port=ES_PORT, timeout=DEFAULT_TIMEOUT, function
145 its query() function. For an explanation of each, see those functions in
150 return esmd.query(*arg
[all...]
/external/autotest/client/site_tests/documentscan_AppTestWithFakeLorgnette/
H A Ddocumentscan_AppTestWithFakeLorgnette.py85 def _query_scan_element(self, query):
88 @param query string javascript query to execute on the DIV element.
95 ''' % (self._APP_WINDOW_ID, self._APP_SCANNED_IMAGE_ELEMENT, query)
/external/autotest/site_utils/
H A Dhost_label_utils.py12 2. query: Query for hosts and their labels information at a given day, e.g.,
13 ./site_utils/host_label_utils.py query -n 172.27.213.193 -l peppy
65 results = autotest_es.query(
87 results = autotest_es.query(
128 help=('collect or query. Action collect will collect '
130 'query will query for hosts and their labels '
135 ' time. The option is applicable to query only. '
139 help=('Name of the host to query label information for.'
140 'The option is applicable to query onl
[all...]
/external/chromium-trace/catapult/dashboard/dashboard/models/
H A Dalert.py80 grouped_alerts = alert_class.query(
106 grouped_alerts = alert_class.query(alert_class.group == group.key).fetch()

Completed in 1177 milliseconds

1234567891011>>