Searched refs:query (Results 151 - 175 of 634) sorted by relevance

1234567891011>>

/external/guice/extensions/persist/src/com/google/inject/persist/jpa/
H A DJpaFinderProxy.java65 //execute as query (named params or otherwise)
164 //determine finder query characteristics
166 String query = finder.query();
167 if (!"".equals(query.trim())) {
168 finderDescriptor.setQuery(query);
247 //should we treat the query as having ? instead of :named params
255 private String query; field in class:JpaFinderProxy.FinderDescriptor
258 void setQuery(String query) { argument
259 this.query
[all...]
/external/apache-http/src/org/apache/http/client/utils/
H A DURIUtils.java66 * @param query
83 final String query,
104 if (query != null) {
106 buffer.append(query);
117 * and port are taken from the target host, but whose path, query and
122 * Contains the path, query and fragment to use.
78 createURI( final String scheme, final String host, int port, final String path, final String query, final String fragment) argument
H A DURLEncodedUtils.java65 * URI's query portion. For example, a URI of
74 * encoding to use while parsing the query
78 final String query = uri.getRawQuery();
79 if (query != null && query.length() > 0) {
81 parse(result, new Scanner(query), encoding);
/external/autotest/contrib/
H A Dcrbug_shell.py91 def do_query_filter(self, query):
92 print 'Adding query %s' % query
93 self.queries.append(query)
115 # Populate cached issues if this is a first time query. If we have
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/bin/
H A Dlss324 query = b.list(prefix=prefix, delimiter="/", marker=marker)
27 query = b.list(delimiter="/", marker=marker)
30 for k in query:
/external/guice/extensions/persist/test/com/google/inject/persist/jpa/
H A DJpaWorkManagerTest.java73 final Query query = injector.getInstance(EntityManager.class)
76 query.setParameter("text", UNIQUE_TEXT_3);
77 final Object o = query.getSingleResult();
/external/libchrome/base/test/
H A Dtrace_event_analyzer.h178 Query(const Query& query);
416 // Return true if the given event matches this query tree.
417 // This is a recursive method that walks the query tree.
548 // QueryNode allows Query to store a ref-counted query tree.
551 explicit QueryNode(const Query& query);
552 const Query& query() const { return query_; } function in class:trace_analyzer::QueryNode
595 // |first| - Eligible |first| events match this query.
596 // |second| - Eligible |second| events match this query.
597 // |match| - This query is run on the |first| event. The OTHER_* EventMember
598 // queries will point to an eligible |second| event. The query
703 CountMatches(const TraceEventVector& events, const Query& query) argument
[all...]
/external/opencv3/samples/cpp/
H A Dshape_example.cpp62 std::cout<<"Using first image as query."<<std::endl;
73 Mat query=imread(queryName.str(), IMREAD_GRAYSCALE); local
75 resize(query, queryToShow, sz2Sh);
78 vector<Point> contQuery = simpleContour(query);
/external/v8/tools/testrunner/server/
H A Dlocal_handler.py37 def LocalQuery(query):
41 compression.Send(query, sock)
47 assert data[0] == query[0]
H A Dstatus_handler.py36 def _StatusQuery(peer, query):
42 compression.Send(query, sock)
48 assert data[0] == query[0]
/external/autotest/frontend/tko/
H A Dmodels.py26 def _get_group_query_sql(self, query, group_by):
27 compiler = query.query.get_compiler(using=query.db)
31 # insert GROUP BY clause into query
32 group_fields = self._get_field_names(group_by, query.query.extra_select)
54 def execute_group_query(self, query, group_by):
55 """Performs the given query grouped by the specified fields.
57 The given query'
[all...]
/external/autotest/client/cros/cellular/
H A Dtest_endpoint.py32 parsed_query = urlparse.parse_qs(url.query)
/external/autotest/utils/
H A Dsite_check_dut_usage.py56 query = ('select queued_time, started_time, finished_time, '
63 query += ' and tko_machines.machine_group=%s'
66 query += ' and tko_machines.hostname=%s'
70 query, [self._start_time, self._end_time, filter_value])
/external/chromium-trace/catapult/dashboard/dashboard/
H A Ddump_graph_json.py64 q = graph_data.Row.query()
72 alerts = anomaly.Anomaly.query().filter(
143 q = graph_data.Row.query()
154 q = anomaly.Anomaly.query(
H A Dlist_monitored_tests.py34 sheriffed_query = graph_data.Test.query(
/external/chromium-trace/catapult/dashboard/dashboard/models/
H A Dbug_label_patterns_test.py19 1, len(bug_label_patterns.BugLabelPatterns.query().fetch()))
/external/chromium-trace/catapult/perf_insights/perf_insights/endpoints/cloud_mapper/
H A Djob_info.py17 query = ndb.StringProperty(indexed=True) variable in class:JobInfo
/external/kernel-headers/original/uapi/linux/
H A Duvcvideo.h61 __u8 query; /* Video Class-Specific Request Code, */ member in struct:uvc_xu_control_query
/external/oauth/core/src/main/java/net/oauth/client/httpclient4/
H A DHttpMethodResponse.java99 String query = httpRequest.getURI().getQuery();
100 if (query != null && query.length() > 0) {
101 request.append("?").append(query);
/external/selinux/libsemanage/src/
H A Dbooleans_policydb.c47 .query = (record_policydb_table_query_t) sepol_bool_query,
H A Dinterfaces_policydb.c43 .query = (record_policydb_table_query_t) sepol_iface_query,
H A Dnodes_policydb.c42 .query = (record_policydb_table_query_t) sepol_node_query,
H A Dports_policydb.c42 .query = (record_policydb_table_query_t) sepol_port_query,
H A Dusers_base_policydb.c42 .query = (record_policydb_table_query_t) sepol_user_query,
/external/skia/include/views/
H A DSkEventSink.h41 /** Returns true if the sink (or one of its subclasses) understands the event as a query.
44 bool doQuery(SkEvent* query);

Completed in 1999 milliseconds

1234567891011>>