Searched refs:query (Results 451 - 475 of 849) sorted by relevance

<<11121314151617181920>>

/external/skia/platform_tools/nacl/
H A Dhttpd.py87 # A small handler that looks for '?quit=1' query in the path and shuts itself
138 (_, _, path, query, _) = urlparse.urlsplit(self.path)
140 for key_value in query.split('&')])
157 (_, _,path, query, _) = urlparse.urlsplit(self.path)
/external/chromium_org/chrome/browser/search_engines/
H A Dtemplate_url.cc121 // them. |terms| may be escaped as path or query depending on |is_in_query|;
122 // |original_query| is always escaped as query. Returns whether the encoding
150 // Extract query key and host given a list of parameters coming from the URL
151 // query or ref.
155 url::Component query, key, value;
156 query.len = static_cast<int>(params.size());
157 while (url::ExtractQueryKeyValue(params.c_str(), &query, &key, &value)) {
359 if (!gurl.query().empty())
360 query_params.push_back(gurl.query());
492 // Parameter must be present either in the query o
497 url::Component query, key, value; local
1285 url::Component query, key, value; local
[all...]
/external/chromium_org/gpu/command_buffer/service/
H A Dgles2_cmd_decoder_unittest.cc615 QueryManager::Query* query = query_manager->GetQuery(kNewClientId); local
616 EXPECT_TRUE(query == NULL);
633 // After BeginQueriesEXT id name should have query object associated with it.
634 query = query_manager->GetQuery(kNewClientId);
635 ASSERT_TRUE(query != NULL);
636 EXPECT_FALSE(query->pending());
654 EXPECT_TRUE(query->pending());
821 QueryManager::Query* query = query_manager->GetQuery(kNewClientId); local
822 ASSERT_TRUE(query != NULL);
823 EXPECT_FALSE(query
848 QueryManager::Query* query = query_manager->GetQuery(kNewClientId); local
889 QueryManager::Query* query = query_manager->GetQuery(kNewClientId); local
[all...]
/external/chromium_org/native_client_sdk/src/examples/demo/drive/
H A Ddrive.cc165 std::string query; member in struct:ListFilesParams
180 AddQueryParameter(&p.url, "q", params.query, false);
453 p.query = "title = \'";
454 p.query += title;
455 p.query += "\'";
/external/chromium_org/third_party/freetype/src/cache/
H A Dftccache.c446 FT_Pointer query,
461 error = cache->clazz.node_new( &node, query, cache );
485 FT_Pointer query,
512 compare( node, query, cache, &list_changed ) )
557 return FTC_Cache_NewNode( cache, hash, query, anode );
/external/chromium_org/url/
H A Dgurl.cc157 DCHECK(test_url.parsed_.query == parsed_.query);
349 other.parsed_.query.reset();
410 // url's path/query/ref.
412 if (parsed_.query.is_valid())
413 path_len = parsed_.query.end() - parsed_.path.begin;
/external/freetype/src/cache/
H A Dftccache.c446 FT_Pointer query,
461 error = cache->clazz.node_new( &node, query, cache );
485 FT_Pointer query,
512 compare( node, query, cache, &list_changed ) )
557 return FTC_Cache_NewNode( cache, hash, query, anode );
/external/chromium_org/chrome/browser/extensions/api/history/
H A Dhistory_api.cc332 base::string16 search_text = base::UTF8ToUTF16(params->query.text);
338 if (params->query.start_time.get())
339 options.begin_time = GetTime(*params->query.start_time);
340 if (params->query.end_time.get())
341 options.end_time = GetTime(*params->query.end_time);
342 if (params->query.max_results.get())
343 options.max_count = *params->query.max_results;
/external/chromium_org/net/dns/
H A Ddns_response_unittest.cc162 scoped_ptr<DnsQuery> query(new DnsQuery(0xcafe, qname, dns_protocol::kTypeA));
167 0x81, 0x80, // Standard query response, RA, no error
174 // This part is echoed back from the respective query.
211 EXPECT_FALSE(resp.InitParse(query->io_buffer()->size() - 1, *query));
215 scoped_ptr<DnsQuery> other_query(query->CloneWithNewId(0xbeef));
226 EXPECT_TRUE(resp.InitParse(sizeof(response_data), *query));
235 EXPECT_EQ(query->qname(), resp.qname());
236 EXPECT_EQ(query->qtype(), resp.qtype());
280 0x81, 0x80, // Standard query respons
[all...]
H A Ddns_transaction.cc72 // DNS query, waiting for a response, and returning the response that it
84 // Returns the query of this attempt.
136 scoped_ptr<DnsQuery> query)
141 query_(query.Pass()) {}
259 // Our solution is to make another attempt, in case the query truly
300 scoped_ptr<DnsQuery> query)
304 query_(query.Pass()),
514 // The first server to attempt on each query is given by
670 scoped_ptr<DnsQuery> query; local
672 query
134 DnsUDPAttempt(unsigned server_index, scoped_ptr<DnsSession::SocketLease> socket_lease, scoped_ptr<DnsQuery> query) argument
298 DnsTCPAttempt(unsigned server_index, scoped_ptr<StreamSocket> socket, scoped_ptr<DnsQuery> query) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
H A Dlp_rast.c478 * Begin a new occlusion query.
488 assert(task->query == NULL);
490 task->query = pq;
495 * End the current occlusion query.
503 assert(task->query);
504 if (task->query) {
505 task->query->count[task->thread_index] += task->vis_counter;
506 task->query = NULL;
600 if (task->query) {
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_rast.c478 * Begin a new occlusion query.
488 assert(task->query == NULL);
490 task->query = pq;
495 * End the current occlusion query.
503 assert(task->query);
504 if (task->query) {
505 task->query->count[task->thread_index] += task->vis_counter;
506 task->query = NULL;
600 if (task->query) {
/external/chromium_org/chrome/browser/extensions/api/bookmarks/
H A Dbookmarks_api.cc589 if (params->query.as_string) {
590 bookmark_utils::QueryFields query; local
591 query.word_phrase_query.reset(
592 new base::string16(base::UTF8ToUTF16(*params->query.as_string)));
595 query,
600 DCHECK(params->query.as_object);
602 *params->query.as_object;
603 bookmark_utils::QueryFields query; local
604 if (object.query) {
605 query
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/trace/
H A Dtr_context.c128 struct pipe_query *query)
136 trace_dump_arg(ptr, query);
138 pipe->destroy_query(pipe, query);
146 struct pipe_query *query)
154 trace_dump_arg(ptr, query);
156 pipe->begin_query(pipe, query);
164 struct pipe_query *query)
172 trace_dump_arg(ptr, query);
174 pipe->end_query(pipe, query);
182 struct pipe_query *query,
127 trace_context_destroy_query(struct pipe_context *_pipe, struct pipe_query *query) argument
145 trace_context_begin_query(struct pipe_context *_pipe, struct pipe_query *query) argument
163 trace_context_end_query(struct pipe_context *_pipe, struct pipe_query *query) argument
181 trace_context_get_query_result(struct pipe_context *_pipe, struct pipe_query *query, boolean wait, union pipe_query_result *presult) argument
1527 trace_context_render_condition(struct pipe_context *_context, struct pipe_query *query, uint mode) argument
[all...]
/external/mesa3d/src/gallium/drivers/trace/
H A Dtr_context.c128 struct pipe_query *query)
136 trace_dump_arg(ptr, query);
138 pipe->destroy_query(pipe, query);
146 struct pipe_query *query)
154 trace_dump_arg(ptr, query);
156 pipe->begin_query(pipe, query);
164 struct pipe_query *query)
172 trace_dump_arg(ptr, query);
174 pipe->end_query(pipe, query);
182 struct pipe_query *query,
127 trace_context_destroy_query(struct pipe_context *_pipe, struct pipe_query *query) argument
145 trace_context_begin_query(struct pipe_context *_pipe, struct pipe_query *query) argument
163 trace_context_end_query(struct pipe_context *_pipe, struct pipe_query *query) argument
181 trace_context_get_query_result(struct pipe_context *_pipe, struct pipe_query *query, boolean wait, union pipe_query_result *presult) argument
1527 trace_context_render_condition(struct pipe_context *_context, struct pipe_query *query, uint mode) argument
[all...]
/external/chromium_org/chrome/browser/resources/print_preview/search/
H A Ddestination_search.js289 * Filters all destination lists with the given query.
290 * @param {?string} query Query to filter destination lists by.
293 filterLists_: function(query) {
294 this.recentList_.updateSearchQuery(query);
295 this.localList_.updateSearchQuery(query);
296 this.cloudList_.updateSearchQuery(query);
300 * Resets the search query.
471 * destination lists with the given query.
472 * @param {Event} evt Contains the search query.
476 this.filterLists_(evt.query);
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/galahad/
H A Dglhd_context.c73 glhd_error("Occlusion query requested but not supported");
78 glhd_error("Timer query requested but not supported");
87 struct pipe_query *query)
93 query);
98 struct pipe_query *query)
104 query);
109 struct pipe_query *query)
115 query);
120 struct pipe_query *query,
128 query,
86 galahad_context_destroy_query(struct pipe_context *_pipe, struct pipe_query *query) argument
97 galahad_context_begin_query(struct pipe_context *_pipe, struct pipe_query *query) argument
108 galahad_context_end_query(struct pipe_context *_pipe, struct pipe_query *query) argument
119 galahad_context_get_query_result(struct pipe_context *_pipe, struct pipe_query *query, boolean wait, union pipe_query_result *result) argument
972 galahad_context_render_condition(struct pipe_context *_context, struct pipe_query *query, uint mode) argument
[all...]
/external/mesa3d/src/gallium/drivers/galahad/
H A Dglhd_context.c73 glhd_error("Occlusion query requested but not supported");
78 glhd_error("Timer query requested but not supported");
87 struct pipe_query *query)
93 query);
98 struct pipe_query *query)
104 query);
109 struct pipe_query *query)
115 query);
120 struct pipe_query *query,
128 query,
86 galahad_context_destroy_query(struct pipe_context *_pipe, struct pipe_query *query) argument
97 galahad_context_begin_query(struct pipe_context *_pipe, struct pipe_query *query) argument
108 galahad_context_end_query(struct pipe_context *_pipe, struct pipe_query *query) argument
119 galahad_context_get_query_result(struct pipe_context *_pipe, struct pipe_query *query, boolean wait, union pipe_query_result *result) argument
972 galahad_context_render_condition(struct pipe_context *_context, struct pipe_query *query, uint mode) argument
[all...]
/external/chromium_org/sync/tools/testserver/
H A Dchromiumsync.py267 flags or query parameters.
756 next query. Entries is the batch of entries meeting the current
757 timestamp query. Changes_remaining indicates the number of changes
1339 def GetShortClientName(self, query):
1340 parsed = cgi.parse_qs(query[query.find('?')+1:])
1381 query = urlparse.urlparse(path)[4]
1386 for x in urlparse.parse_qs(query).get('type',[])]
1403 query = urlparse.urlparse(path)[4]
1409 error_type = urlparse.parse_qs(query)['erro
[all...]
/external/chromium_org/third_party/libxml/src/
H A Dnanohttp.c141 char *query; /* the query string */ member in struct:xmlNanoHTTPCtxt
299 if (ctxt->query != NULL) {
300 xmlFree(ctxt->query);
301 ctxt->query = NULL;
320 if (uri->query != NULL)
321 ctxt->query = xmlMemStrdup(uri->query);
417 if (ctxt->query != NULL) xmlFree(ctxt->query);
[all...]
/external/libxml2/
H A Dnanohttp.c136 char *query; /* the query string */ member in struct:xmlNanoHTTPCtxt
296 if (ctxt->query != NULL) {
297 xmlFree(ctxt->query);
298 ctxt->query = NULL;
325 if (uri->query != NULL)
326 ctxt->query = xmlMemStrdup(uri->query);
422 if (ctxt->query != NULL) xmlFree(ctxt->query);
[all...]
/external/chromium_org/chrome/browser/net/
H A Dchrome_network_delegate.cc103 // Examines the query string containing parameters and adds the necessary ones
104 // so that SafeSearch is active. |query| is the string to examine and the
105 // return value is the |query| string modified such that SafeSearch is active.
106 std::string AddSafeSearchParameters(const std::string& query) { argument
112 base::SplitString(query, '&', &parameters);
128 // enforces that the SafeSearch query parameters are set to active.
129 // Sets the query part of |new_url| with the new value of the parameters.
136 std::string query = request->url().query();
137 std::string new_query = AddSafeSearchParameters(query);
[all...]
/external/chromium_org/components/test/data/web_database/
H A Dversion_52.sql12 INSERT INTO "keywords" VALUES(3,'Bing','bing.com','http://www.bing.com/s/wlflag.ico','http://www.bing.com/search?setmkt=en-US&q={searchTerms}',1,'',0,0,'UTF-8',1,'http://api.bing.com/osjson.aspx?query={searchTerms}&language={language}',3,0,'',0,'A0226B1A-8662-A160-C4D4-078608DBD17E','[]','','','','','','');
14 INSERT INTO "keywords" VALUES(5,'AOL','aol.com','http://search.aol.com/favicon.ico','http://search.aol.com/aol/search?query={searchTerms}',1,'',0,0,'UTF-8',1,'http://autocomplete.search.aol.com/autocomplete/get?output=json&it=&q={searchTerms}',35,0,'',0,'680838DC-A89F-7598-901A-C6B849F94F67','[]','','','','','','');
15 INSERT INTO "keywords" VALUES(6,'Ask','ask.com','http://sp.ask.com/sh/i/a16/favicon/favicon.ico','http://www.ask.com/web?q={searchTerms}',1,'',0,0,'UTF-8',1,'http://ss.ask.com/query?q={searchTerms}&li=ff',4,0,'',0,'25AC092A-10E6-EA19-11CE-55382548F3DC','[]','','','','','','');
/external/chromium_org/third_party/skia/src/core/
H A DSkRTree.cpp105 void SkRTree::search(const SkIRect& query, SkTDArray<void*>* results) { argument
110 if (!this->isEmpty() && SkIRect::IntersectsNoEmptyCheck(fRoot.fBounds, query)) {
111 this->search(fRoot.fChild.subtree, query, results);
210 // hurt query performance. See get_overlap_increase()
305 void SkRTree::search(Node* root, const SkIRect query, SkTDArray<void*>* results) const { argument
307 if (SkIRect::IntersectsNoEmptyCheck(root->child(i)->fBounds, query)) {
311 this->search(root->child(i)->fChild.subtree, query, results);
/external/skia/src/core/
H A DSkRTree.cpp105 void SkRTree::search(const SkIRect& query, SkTDArray<void*>* results) { argument
110 if (!this->isEmpty() && SkIRect::IntersectsNoEmptyCheck(fRoot.fBounds, query)) {
111 this->search(fRoot.fChild.subtree, query, results);
210 // hurt query performance. See get_overlap_increase()
305 void SkRTree::search(Node* root, const SkIRect query, SkTDArray<void*>* results) const { argument
307 if (SkIRect::IntersectsNoEmptyCheck(root->child(i)->fBounds, query)) {
311 this->search(root->child(i)->fChild.subtree, query, results);

Completed in 832 milliseconds

<<11121314151617181920>>