Searched refs:query (Results 51 - 75 of 634) sorted by relevance

1234567891011>>

/external/skia/src/core/
H A DSkBBoxHierarchy.h17 * boxes and allows efficient retrieval of intersections with query rectangles.
30 * Populate results with the indices of bounding boxes interesecting that query.
32 virtual void search(const SkRect& query, SkTDArray<int>* results) const = 0;
/external/wpa_supplicant_8/hs20/server/www/
H A Dredirect.php15 $row = $db->query("SELECT rowid,* FROM sessions WHERE id='$id'")->fetch();
H A Dsignup.php18 $row = $db->query("SELECT realm FROM sessions WHERE id='$id'")->fetch();
26 $row = $db->query("SELECT value FROM osu_config WHERE realm='$realm' AND field='free_account'")->fetch();
H A Dusers.php22 $row = $db->query("SELECT dump FROM eventlog WHERE rowid=$id")->fetch();
41 $row = $db->query("SELECT $mo FROM users WHERE rowid=$id")->fetch();
49 $row = $db->query("SELECT cert_pem FROM users WHERE rowid=$id")->fetch();
128 $row = $db->query("SELECT rowid,* FROM users WHERE rowid=$id")->fetch();
267 $res = $db->query("SELECT rowid,* FROM eventlog ORDER BY timestamp DESC LIMIT $limit");
269 $res = $db->query("SELECT rowid,* FROM eventlog WHERE (user='$user' OR user='$osu_user') AND realm='$realm' ORDER BY timestamp DESC LIMIT $limit");
271 $res = $db->query("SELECT rowid,* FROM eventlog WHERE user='$user' AND realm='$realm' ORDER BY timestamp DESC LIMIT $limit");
308 $res = $db->query('SELECT rowid,* FROM users WHERE phase2=1');
/external/opencv3/modules/cudafeatures2d/src/
H A Dbrute_force_matcher.cpp58 template <typename T> void matchL1_gpu(const PtrStepSzb& query, const PtrStepSzb& train, const PtrStepSzb& mask,
61 template <typename T> void matchL2_gpu(const PtrStepSzb& query, const PtrStepSzb& train, const PtrStepSzb& mask,
64 template <typename T> void matchHamming_gpu(const PtrStepSzb& query, const PtrStepSzb& train, const PtrStepSzb& mask,
68 template <typename T> void matchL1_gpu(const PtrStepSzb& query, const PtrStepSzb& trains, const PtrStepSz<PtrStepb>& masks,
71 template <typename T> void matchL2_gpu(const PtrStepSzb& query, const PtrStepSzb& trains, const PtrStepSz<PtrStepb>& masks,
74 template <typename T> void matchHamming_gpu(const PtrStepSzb& query, const PtrStepSzb& trains, const PtrStepSz<PtrStepb>& masks,
81 template <typename T> void matchL1_gpu(const PtrStepSzb& query, const PtrStepSzb& train, int k, const PtrStepSzb& mask,
84 template <typename T> void matchL2_gpu(const PtrStepSzb& query, const PtrStepSzb& train, int k, const PtrStepSzb& mask,
87 template <typename T> void matchHamming_gpu(const PtrStepSzb& query, const PtrStepSzb& train, int k, const PtrStepSzb& mask,
91 template <typename T> void match2L1_gpu(const PtrStepSzb& query, cons
[all...]
/external/autotest/database/
H A Ddatabase_connection.py51 def execute(self, query, parameters=None):
54 self._cursor.execute(query, parameters)
100 def execute(self, query, parameters=None):
103 query = query.replace('%s', '?')
111 query = self._last_insert_id_re.sub(' LAST_INSERT_ROWID()', query)
112 return super(_SqliteBackend, self).execute(query, parameters)
129 def execute(self, query, parameters=None):
131 return super(_DjangoBackend, self).execute(query,
[all...]
/external/skia/tests/
H A DRTreeTest.cpp28 static bool verify_query(SkRect query, SkRect rects[], SkTDArray<int>& found) { argument
32 if (SkRect::Intersects(query, rects[i])) {
50 SkRect query = random_rect(rand); local
51 tree.search(query, &hits);
52 REPORTER_ASSERT(reporter, verify_query(query, rects, hits));
/external/opencv3/modules/cudafeatures2d/src/cuda/
H A Dbf_knnmatch.cu305 __device__ void loadQueryToSmem(int queryIdx, const PtrStepSz<T>& query, U* s_query)
311 s_query[threadIdx.y * MAX_DESC_LEN + loadX] = loadX < query.cols ? query.ptr(::min(queryIdx, query.rows - 1))[loadX] : 0;
316 __device__ void loopUnrolledCached(int queryIdx, const PtrStepSz<T>& query, int imgIdx, const PtrStepSz<T>& train, const Mask& mask,
354 if (queryIdx < query.rows && trainIdx < train.rows && mask(queryIdx, trainIdx))
377 __global__ void matchUnrolledCached(const PtrStepSz<T> query, const PtrStepSz<T> train, const Mask mask, int2* bestTrainIdx, float2* bestDistance)
386 loadQueryToSmem<BLOCK_SIZE, MAX_DESC_LEN>(queryIdx, query, s_query);
393 loopUnrolledCached<BLOCK_SIZE, MAX_DESC_LEN, Dist>(queryIdx, query, 0, train, mask, s_query, s_train, myBestDistance1, myBestDistance2, myBestTrainIdx1, myBestTrainIdx2, myBestTrainIdx1, myBestTrainIdx2);
402 if (queryIdx < query
[all...]
/external/chromium-trace/catapult/perf_insights/perf_insights_build/
H A Dpi_report_to_html.py28 parser.add_argument('--query')
44 if args.query is None:
45 query = corpus_query.CorpusQuery.FromString('True')
47 query = corpus_query.CorpusQuery.FromString(
48 args.query)
51 return PiReportToHTML(ofile, corpus_driver, pi_report_file, query,
73 def PiReportToHTML(ofile, corpus_driver, pi_report_file, query,
91 results = _MapTraces(corpus_driver, job, query, stop_on_error,
106 def _MapTraces(corpus_driver, job, query, stop_on_error=False,
108 trace_handles = corpus_driver.GetTraceHandlesMatchingQuery(query)
[all...]
/external/chromium-trace/catapult/dashboard/dashboard/
H A Dfind_anomalies.py97 revision. These rows are fetched with t a projection query so they only
100 query = graph_data.Row.query(projection=['revision', 'value'])
101 query = query.filter(graph_data.Row.parent_test == test.key)
103 # The query is ordered in descending order by revision because we want
105 query = query.filter(graph_data.Row.revision > test.last_alerted_revision)
106 query = query
[all...]
H A Dlist_tests.py107 query = graph_data.Test.query(ancestor=test_key)
108 query = query.filter(graph_data.Test.has_rows == True,
110 keys = query.fetch(keys_only=True)
229 query = graph_data.Test.query()
231 query = query.filter(
233 query
[all...]
/external/freetype/src/cache/
H A Dftccmap.c51 /* compute a query/node hash */
56 /* the charmap query */
113 FTC_CMapQuery query = (FTC_CMapQuery)ftcquery; local
122 node->face_id = query->face_id;
123 node->cmap_index = query->cmap_index;
124 node->first = (query->char_code / FTC_CMAP_INDICES_MAX) *
148 /* compare a cmap node to a given query */
156 FTC_CMapQuery query = (FTC_CMapQuery)ftcquery; local
162 if ( node->face_id == query->face_id &&
163 node->cmap_index == query
237 FTC_CMapQueryRec query; local
[all...]
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/cloudsearchdomain/
H A Dlayer1.py75 def search(self, query, cursor=None, expr=None, facet=None,
82 query parser you use. Amazon CloudSearch supports four query
93 query parser syntax.
95 subset of the Apache Lucene query parser syntax defined by the
96 DisMax query parser.
165 :param filter_query: Specifies a structured query that filters the
167 and sorted. You use `filterQuery` in conjunction with the `query`
169 specified in the `query` parameter. Specifying a filter controls
172 parameter supports the full structured query synta
[all...]
/external/autotest/contrib/
H A Dcrbug_crawler.py12 --queries '"first query" "second query"'
48 help=('Search query. Eg: --queries "%s %s"' %
162 def fuzzy_search(self, query='', label='', fast=True):
163 """Returns all issues using one query and/or one label.
165 @param query: A string representing the query.
169 @return: A list of issues matching the query. If fast is
172 if not query and not label:
173 raise ValueError('Require query o
[all...]
/external/glide/library/src/main/java/com/bumptech/glide/load/data/
H A DMediaStoreThumbFetcher.java114 Cursor query(Context context, Uri uri); method in interface:MediaStoreThumbFetcher.ThumbnailQuery
120 private ThumbnailQuery query; field in class:MediaStoreThumbFetcher.ThumbnailStreamOpener
122 public ThumbnailStreamOpener(ThumbnailQuery query) { argument
123 this(DEFAULT_SERVICE, query);
126 public ThumbnailStreamOpener(FileService service, ThumbnailQuery query) { argument
128 this.query = query;
135 final Cursor cursor = query.query(context, uri);
161 public Cursor query(Contex method in class:MediaStoreThumbFetcher.ImageThumbnailQuery
173 public Cursor query(Context context, Uri uri) { method in class:MediaStoreThumbFetcher.VideoThumbnailQuery
[all...]
/external/autotest/frontend/db/backends/afe/
H A Dcompiler.py8 if hasattr(self.query, "_custom_joins"):
9 for join_dict in self.query._custom_joins:
/external/autotest/frontend/db/backends/afe_sqlite/
H A Dcompiler.py8 if hasattr(self.query, "_custom_joins"):
9 for join_dict in self.query._custom_joins:
/external/chromium-trace/catapult/perf_insights/perf_insights/endpoints/
H A Dquery.py29 query = corpus_query.CorpusQuery.FromString(raw_query)
30 (gql, args) = query.AsGQLWhereClause()
38 app = webapp2.WSGIApplication([('/query', QueryPage)])
/external/skia/bench/
H A DRTreeBench.cpp83 SkRect query; variable
84 query.fLeft = rand.nextRangeF(0, GENERATE_EXTENTS);
85 query.fTop = rand.nextRangeF(0, GENERATE_EXTENTS);
86 query.fRight = query.fLeft + 1 + rand.nextRangeF(0, GENERATE_EXTENTS/2);
87 query.fBottom = query.fTop + 1 + rand.nextRangeF(0, GENERATE_EXTENTS/2);
88 fTree.search(query, &hits);
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/integration/sdb/
H A Dtest_connection.py70 query = 'select * from %s where name1="%s"' % (domain_name, same_value)
71 rs = domain.select(query, consistent_read=True)
76 query = 'select * from %s where name2="diff_value_2"' % domain_name
77 rs = domain.select(query, consistent_read=True)
/external/guice/extensions/persist/src/com/google/inject/persist/finder/
H A DFinder.java27 * specified JPAQL query. Provides result auto-boxing and automatic parameter binding.
35 * Returns the configured named query's name. Specify a named query's name
41 * Returns the configured query string. Directly specify a JPAQL query here.
43 String query() default "";
/external/jetty/src/java/org/eclipse/jetty/websocket/
H A DWebSocketServletConnectionD00.java43 String query = request.getQueryString();
44 if (query != null && query.length() > 0)
46 uri += "?" + query;
/external/libchrome/base/metrics/
H A Dstatistics_recorder.h56 // have |query| as a substring are written to |output| (an empty string will
58 static void WriteHTMLGraph(const std::string& query, std::string* output);
59 static void WriteGraph(const std::string& query, std::string* output);
61 // Returns the histograms with |query| as a substring as JSON text (an empty
62 // |query| will process all registered histograms).
63 static std::string ToJSON(const std::string& query);
76 // caller supplied vector (Histograms). Only histograms which have |query| as
79 static void GetSnapshot(const std::string& query, Histograms* snapshot);
/external/parameter-framework/asio/include/asio/ip/
H A Dbasic_resolver.hpp31 * The basic_resolver class template provides the ability to resolve a query
50 /// The query type.
51 typedef basic_resolver_query<InternetProtocol> query; typedef in class:asio::ip::basic_resolver
79 /// Perform forward resolution of a query to a list of entries.
81 * This function is used to resolve a query into a list of endpoint entries.
83 * @param q A query object that determines what endpoints will be returned.
95 iterator resolve(const query& q)
103 /// Perform forward resolution of a query to a list of entries.
105 * This function is used to resolve a query into a list of endpoint entries.
107 * @param q A query objec
[all...]
/external/parameter-framework/asio-1.10.6/include/asio/ip/
H A Dbasic_resolver.hpp31 * The basic_resolver class template provides the ability to resolve a query
50 /// The query type.
51 typedef basic_resolver_query<InternetProtocol> query; typedef in class:asio::ip::basic_resolver
79 /// Perform forward resolution of a query to a list of entries.
81 * This function is used to resolve a query into a list of endpoint entries.
83 * @param q A query object that determines what endpoints will be returned.
95 iterator resolve(const query& q)
103 /// Perform forward resolution of a query to a list of entries.
105 * This function is used to resolve a query into a list of endpoint entries.
107 * @param q A query objec
[all...]

Completed in 765 milliseconds

1234567891011>>