Searched refs:query (Results 26 - 50 of 849) sorted by relevance

1234567891011>>

/external/chromium_org/content/common/gpu/client/
H A Dgpu_context_tests.h32 void TestSignalQuery(blink::WebGLId query) { argument
35 query,
62 unsigned query = context_->createQueryEXT(); local
63 context_->beginQueryEXT(GL_COMMANDS_ISSUED_CHROMIUM, query);
66 TestSignalQuery(query);
67 context_->deleteQueryEXT(query);
74 blink::WebGLId query = context_->createQueryEXT();
75 TestSignalQuery(query);
76 context_->deleteQueryEXT(query);
/external/chromium_org/gpu/command_buffer/tests/
H A Dgl_query_unittest.cc85 GLuint query = 0; local
86 glGenQueriesEXT(1, &query);
91 glBeginQueryEXT(GL_GET_ERROR_QUERY_CHROMIUM, query);
99 glGetQueryObjectuivEXT(query, GL_QUERY_RESULT_AVAILABLE_EXT, &result);
101 glGetQueryObjectuivEXT(query, GL_QUERY_RESULT_EXT, &query_status);
109 GLuint query = 0; local
110 glGenQueriesEXT(1, &query);
115 // First test a query with a ~1ms "latency".
119 glBeginQueryEXT(GL_LATENCY_QUERY_CHROMIUM, query);
130 glGetQueryObjectuivEXT(query, GL_QUERY_RESULT_AVAILABLE_EX
159 GLuint query; local
179 GLuint query; local
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/
H A Dr600_query.c88 static void r600_emit_query_begin(struct r600_context *ctx, struct r600_query *query) argument
93 r600_need_cs_space(ctx, query->num_cs_dw * 2, TRUE);
95 /* Get a new query buffer if needed. */
96 if (query->buffer.results_end + query->result_size > query->buffer.buf->b.b.width0) {
98 *qbuf = query->buffer;
99 query->buffer.buf = r600_new_query_buffer(ctx, query->type);
100 query
146 r600_emit_query_end(struct r600_context *ctx, struct r600_query *query) argument
204 r600_emit_query_predication(struct r600_context *ctx, struct r600_query *query, int operation, bool flag_wait) argument
255 struct r600_query *query; local
299 r600_destroy_query(struct pipe_context *ctx, struct pipe_query *query) argument
335 r600_begin_query(struct pipe_context *ctx, struct pipe_query *query) argument
375 r600_end_query(struct pipe_context *ctx, struct pipe_query *query) argument
407 r600_get_query_buffer_result(struct r600_context *ctx, struct r600_query *query, struct r600_query_buffer *qbuf, boolean wait, union pipe_query_result *result) argument
498 r600_get_query_result(struct pipe_context *ctx, struct pipe_query *query, boolean wait, union pipe_query_result *result) argument
522 r600_render_condition(struct pipe_context *ctx, struct pipe_query *query, uint mode) argument
566 struct r600_query *query; local
576 struct r600_query *query; local
587 struct r600_query *query; local
598 struct r600_query *query; local
[all...]
/external/mesa3d/src/gallium/drivers/r600/
H A Dr600_query.c88 static void r600_emit_query_begin(struct r600_context *ctx, struct r600_query *query) argument
93 r600_need_cs_space(ctx, query->num_cs_dw * 2, TRUE);
95 /* Get a new query buffer if needed. */
96 if (query->buffer.results_end + query->result_size > query->buffer.buf->b.b.width0) {
98 *qbuf = query->buffer;
99 query->buffer.buf = r600_new_query_buffer(ctx, query->type);
100 query
146 r600_emit_query_end(struct r600_context *ctx, struct r600_query *query) argument
204 r600_emit_query_predication(struct r600_context *ctx, struct r600_query *query, int operation, bool flag_wait) argument
255 struct r600_query *query; local
299 r600_destroy_query(struct pipe_context *ctx, struct pipe_query *query) argument
335 r600_begin_query(struct pipe_context *ctx, struct pipe_query *query) argument
375 r600_end_query(struct pipe_context *ctx, struct pipe_query *query) argument
407 r600_get_query_buffer_result(struct r600_context *ctx, struct r600_query *query, struct r600_query_buffer *qbuf, boolean wait, union pipe_query_result *result) argument
498 r600_get_query_result(struct pipe_context *ctx, struct pipe_query *query, boolean wait, union pipe_query_result *result) argument
522 r600_render_condition(struct pipe_context *ctx, struct pipe_query *query, uint mode) argument
566 struct r600_query *query; local
576 struct r600_query *query; local
587 struct r600_query *query; local
598 struct r600_query *query; local
[all...]
/external/jsilver/src/com/google/clearsilver/jsilver/examples/basic/
H A Diterate.cs1 Query : <?cs var:query ?>
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeonsi/
H A Dr600_query.c33 static void r600_destroy_query(struct pipe_context *ctx, struct pipe_query *query) argument
37 r600_context_query_destroy(rctx, (struct r600_query *)query);
40 static void r600_begin_query(struct pipe_context *ctx, struct pipe_query *query) argument
43 struct r600_query *rquery = (struct r600_query *)query;
47 r600_query_begin(rctx, (struct r600_query *)query);
51 static void r600_end_query(struct pipe_context *ctx, struct pipe_query *query) argument
54 struct r600_query *rquery = (struct r600_query *)query;
61 struct pipe_query *query,
65 struct r600_query *rquery = (struct r600_query *)query;
71 struct pipe_query *query,
60 r600_get_query_result(struct pipe_context *ctx, struct pipe_query *query, boolean wait, union pipe_query_result *vresult) argument
70 r600_render_condition(struct pipe_context *ctx, struct pipe_query *query, uint mode) argument
[all...]
H A Dr600_hw_context.c44 /* if backend_map query is supported by the kernel */
279 static boolean r600_query_result(struct r600_context *ctx, struct r600_query *query, boolean wait) argument
281 unsigned results_base = query->results_start;
284 map = ctx->ws->buffer_map(query->buffer->cs_buf, ctx->cs,
291 switch (query->type) {
293 while (results_base != query->results_end) {
294 query->result.u64 +=
296 results_base = (results_base + 16) % query->buffer->b.b.width0;
300 while (results_base != query->results_end) {
301 query
360 r600_query_begin(struct r600_context *ctx, struct r600_query *query) argument
447 r600_query_end(struct r600_context *ctx, struct r600_query *query) argument
491 r600_query_predication(struct r600_context *ctx, struct r600_query *query, int operation, int flag_wait) argument
536 struct r600_query *query; local
586 r600_context_query_destroy(struct r600_context *ctx, struct r600_query *query) argument
592 r600_context_query_result(struct r600_context *ctx, struct r600_query *query, boolean wait, void *vresult) argument
628 struct r600_query *query; local
638 struct r600_query *query; local
[all...]
/external/mesa3d/src/gallium/drivers/radeonsi/
H A Dr600_query.c33 static void r600_destroy_query(struct pipe_context *ctx, struct pipe_query *query) argument
37 r600_context_query_destroy(rctx, (struct r600_query *)query);
40 static void r600_begin_query(struct pipe_context *ctx, struct pipe_query *query) argument
43 struct r600_query *rquery = (struct r600_query *)query;
47 r600_query_begin(rctx, (struct r600_query *)query);
51 static void r600_end_query(struct pipe_context *ctx, struct pipe_query *query) argument
54 struct r600_query *rquery = (struct r600_query *)query;
61 struct pipe_query *query,
65 struct r600_query *rquery = (struct r600_query *)query;
71 struct pipe_query *query,
60 r600_get_query_result(struct pipe_context *ctx, struct pipe_query *query, boolean wait, union pipe_query_result *vresult) argument
70 r600_render_condition(struct pipe_context *ctx, struct pipe_query *query, uint mode) argument
[all...]
H A Dr600_hw_context.c44 /* if backend_map query is supported by the kernel */
279 static boolean r600_query_result(struct r600_context *ctx, struct r600_query *query, boolean wait) argument
281 unsigned results_base = query->results_start;
284 map = ctx->ws->buffer_map(query->buffer->cs_buf, ctx->cs,
291 switch (query->type) {
293 while (results_base != query->results_end) {
294 query->result.u64 +=
296 results_base = (results_base + 16) % query->buffer->b.b.width0;
300 while (results_base != query->results_end) {
301 query
360 r600_query_begin(struct r600_context *ctx, struct r600_query *query) argument
447 r600_query_end(struct r600_context *ctx, struct r600_query *query) argument
491 r600_query_predication(struct r600_context *ctx, struct r600_query *query, int operation, int flag_wait) argument
536 struct r600_query *query; local
586 r600_context_query_destroy(struct r600_context *ctx, struct r600_query *query) argument
592 r600_context_query_result(struct r600_context *ctx, struct r600_query *query, boolean wait, void *vresult) argument
628 struct r600_query *query; local
638 struct r600_query *query; local
[all...]
/external/chromium_org/third_party/WebKit/Tools/TestResultServer/model/
H A Dtestfile.py67 query = TestFile.all()
69 query = query.filter("master =", master)
71 query = query.filter("builder =", builder)
73 query = query.filter("test_type =", test_type)
75 query = query.filter("name =", name)
78 query
[all...]
/external/wpa_supplicant_8/hs20/server/www/
H A Dadd-free.php17 $row = $db->query("SELECT rowid,* FROM sessions WHERE id='$id'")->fetch();
26 $row = $db->query("SELECT value FROM osu_config WHERE realm='$realm' AND field='free_account'")->fetch();
33 $row = $db->query("SELECT password FROM users WHERE identity='$user' AND realm='$realm'")->fetch();
/external/chromium_org/third_party/angle/tests/angle_tests/
H A DOcclusionQueriesTest.cpp71 GLuint query = 0; local
72 glGenQueriesEXT(1, &query);
73 glBeginQueryEXT(GL_ANY_SAMPLES_PASSED_EXT, query);
85 glGetQueryObjectuivEXT(query, GL_QUERY_RESULT_AVAILABLE_EXT, &ready);
89 glGetQueryObjectuivEXT(query, GL_QUERY_RESULT_EXT, &result);
93 glDeleteQueriesEXT(1, &query);
105 GLuint query = 0; local
106 glGenQueriesEXT(1, &query);
107 glBeginQueryEXT(GL_ANY_SAMPLES_PASSED_EXT, query);
116 glGetQueryObjectuivEXT(query, GL_QUERY_RESULT_EX
132 GLuint query = 0; local
[all...]
/external/smack/src/org/xbill/DNS/
H A DSimpleResolver.java10 * An implementation of Resolver that sends one query to one server.
42 * Creates a SimpleResolver that will query the specified host
61 * Creates a SimpleResolver. The host to query is either found by using
81 /** Sets the default host (initially localhost) to query */
195 verifyTSIG(Message query, Message response, byte [] b, TSIG tsig) { argument
198 int error = tsig.verify(response, b, query.getTSIG());
204 applyEDNS(Message query) { argument
205 if (queryOPT == null || query.getOPT() != null)
207 query.addRecord(queryOPT, Section.ADDITIONAL);
211 maxUDPSize(Message query) { argument
227 send(Message query) argument
309 sendAsync(final Message query, final ResolverListener listener) argument
329 sendAXFR(Message query) argument
[all...]
H A DResolver.java78 * @param query The query to send.
82 Message send(Message query) throws IOException; argument
89 * @param query The query to send
93 Object sendAsync(final Message query, final ResolverListener listener); argument
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/resources/
H A DDatabaseQueryView.js37 this.element.classList.add("query");
42 this._promptElement.className = "database-query-prompt";
134 var query = this._prompt.text;
135 if (!query.length)
138 this._prompt.pushHistoryItem(query);
141 this.database.executeSql(query, this._queryFinished.bind(this, query), this._queryError.bind(this, query));
144 _queryFinished: function(query, columnNames, values)
147 var trimmedQuery = query
[all...]
/external/libcxx/test/utilities/meta/meta.unary.prop.query/
H A DAndroid.mk17 test_makefile := external/libcxx/test/utilities/meta/meta.unary.prop.query/Android.mk
19 test_name := utilities/meta/meta.unary.prop.query/alignment_of
23 test_name := utilities/meta/meta.unary.prop.query/rank
27 test_name := utilities/meta/meta.unary.prop.query/extent
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DMediaQueryMatcher.cpp34 MediaQueryMatcher::Listener::Listener(PassRefPtrWillBeRawPtr<MediaQueryListListener> listener, PassRefPtrWillBeRawPtr<MediaQueryList> query) argument
36 , m_query(query)
92 PassRefPtrWillBeRawPtr<MediaQueryList> MediaQueryMatcher::matchMedia(const String& query) argument
97 RefPtrWillBeRawPtr<MediaQuerySet> media = MediaQuerySet::create(query);
103 void MediaQueryMatcher::addListener(PassRefPtrWillBeRawPtr<MediaQueryListListener> listener, PassRefPtrWillBeRawPtr<MediaQueryList> query) argument
109 if (*m_listeners[i]->listener() == *listener && m_listeners[i]->query() == query)
113 m_listeners.append(adoptPtrWillBeNoop(new Listener(listener, query)));
116 void MediaQueryMatcher::removeListener(MediaQueryListListener* listener, MediaQueryList* query) argument
122 if (*m_listeners[i]->listener() == *listener && m_listeners[i]->query()
[all...]
/external/chromium_org/chrome/browser/chromeos/drive/
H A Dsearch_metadata.h24 // |at_most_num_matches| that contain |query| in their base names. Search is
27 // |callback| must not be null. Must be called on UI thread. Empty |query|
33 const std::string& query,
38 // Finds |query| in |text| while ignoring cases or accents. Cases of non-ASCII
41 // Returns true if |query| is found. |highlighted_text| will have the original
47 base::i18n::FixedPatternStringSearchIgnoringCaseAndAccents* query,
/external/chromium_org/chrome/browser/ui/app_list/search/
H A Dtokenized_string_match.h19 // the other one as the query. It matches the query against the text,
33 bool Calculate(const TokenizedString& query, const TokenizedString& text);
36 bool Calculate(const base::string16& query, const base::string16& text);
42 // Score in range of [0,1] representing how well the query matches the text.
H A Dhistory_data.cc18 // A struct used to sort query entries by time.
20 EntrySortData() : query(NULL), update_time(NULL) {}
21 EntrySortData(const std::string* query, argument
23 : query(query),
27 const std::string* query; member in struct:app_list::__anon4892::EntrySortData
52 void HistoryData::Add(const std::string& query, const std::string& result_id) { argument
53 Associations::iterator assoc_it = associations_.find(query);
55 // Creates a primary association if query is seen for the first time.
57 Data& data = associations_[query];
173 const std::string& query = *entries[i].query; local
[all...]
/external/chromium_org/chrome/browser/ui/app_list/search/common/
H A Dwebservice_search_provider.cc47 bool WebserviceSearchProvider::IsValidQuery(const base::string16& query) { argument
48 // If |query| contains sensitive data, bail out and do not create the place
50 if (IsSensitiveInput(query) ||
51 (query.size() < kMinimumQueryLength) ||
59 // Returns whether or not the user's input string, |query|, might contain any
61 bool WebserviceSearchProvider::IsSensitiveInput(const base::string16& query) { argument
62 const GURL query_as_url(query);
85 !query_as_url.query().empty() ||
/external/chromium_org/third_party/skia/bench/
H A DQuadTreeBench.cpp108 SkIRect query; variable
111 query.fLeft = rand.nextU() % GENERATE_EXTENTS;
112 query.fTop = rand.nextU() % GENERATE_EXTENTS;
113 query.fRight = query.fLeft + (GENERATE_EXTENTS / 20);
114 query.fBottom = query.fTop + (GENERATE_EXTENTS / 20);
117 query.fLeft = rand.nextU() % GENERATE_EXTENTS;
118 query.fTop = rand.nextU() % GENERATE_EXTENTS;
119 query
[all...]
H A DRTreeBench.cpp118 SkIRect query; variable
121 query.fLeft = rand.nextU() % GENERATE_EXTENTS;
122 query.fTop = rand.nextU() % GENERATE_EXTENTS;
123 query.fRight = query.fLeft + (GENERATE_EXTENTS / 20);
124 query.fBottom = query.fTop + (GENERATE_EXTENTS / 20);
127 query.fLeft = rand.nextU() % GENERATE_EXTENTS;
128 query.fTop = rand.nextU() % GENERATE_EXTENTS;
129 query
[all...]
/external/skia/bench/
H A DQuadTreeBench.cpp108 SkIRect query; variable
111 query.fLeft = rand.nextU() % GENERATE_EXTENTS;
112 query.fTop = rand.nextU() % GENERATE_EXTENTS;
113 query.fRight = query.fLeft + (GENERATE_EXTENTS / 20);
114 query.fBottom = query.fTop + (GENERATE_EXTENTS / 20);
117 query.fLeft = rand.nextU() % GENERATE_EXTENTS;
118 query.fTop = rand.nextU() % GENERATE_EXTENTS;
119 query
[all...]
H A DRTreeBench.cpp118 SkIRect query; variable
121 query.fLeft = rand.nextU() % GENERATE_EXTENTS;
122 query.fTop = rand.nextU() % GENERATE_EXTENTS;
123 query.fRight = query.fLeft + (GENERATE_EXTENTS / 20);
124 query.fBottom = query.fTop + (GENERATE_EXTENTS / 20);
127 query.fLeft = rand.nextU() % GENERATE_EXTENTS;
128 query.fTop = rand.nextU() % GENERATE_EXTENTS;
129 query
[all...]

Completed in 1209 milliseconds

1234567891011>>