Searched refs:query (Results 126 - 150 of 849) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/libjingle/source/talk/examples/call/
H A Dfriendinvitesendtask.cc41 XmlElement* query = new XmlElement(QN_ROSTER_QUERY); local
45 query->AddElement(item);
46 iq->AddElement(query);
/external/chromium_org/third_party/libjingle/source/talk/xmpp/
H A Ddiscoitemsquerytask.cc50 const XmlElement* query = stanza->FirstNamed(QN_DISCO_ITEMS_QUERY); local
51 if (query) {
53 for (const buzz::XmlChild* child = query->FirstChild(); child;
/external/chromium_org/third_party/skia/src/core/
H A DSkQuadTree.cpp33 static U8CPU child_intersect(const SkIRect& query, const SkIPoint& split) { argument
36 if (query.fRight < split.fX) {
38 } else if(query.fLeft >= split.fX) {
41 if (query.fBottom < split.fY) {
43 } else if(query.fTop >= split.fY) {
113 void SkQuadTree::search(Node* node, const SkIRect& query, argument
117 if (SkIRect::IntersectsNoEmptyCheck(entry->fBounds, query)) {
124 U8CPU intersect = child_intersect(query, node->fSplitPoint);
127 this->search(node->fChildren[index], query, results);
171 void SkQuadTree::search(const SkIRect& query, SkTDArra argument
[all...]
/external/skia/src/core/
H A DSkQuadTree.cpp33 static U8CPU child_intersect(const SkIRect& query, const SkIPoint& split) { argument
36 if (query.fRight < split.fX) {
38 } else if(query.fLeft >= split.fX) {
41 if (query.fBottom < split.fY) {
43 } else if(query.fTop >= split.fY) {
113 void SkQuadTree::search(Node* node, const SkIRect& query, argument
117 if (SkIRect::IntersectsNoEmptyCheck(entry->fBounds, query)) {
124 U8CPU intersect = child_intersect(query, node->fSplitPoint);
127 this->search(node->fChildren[index], query, results);
171 void SkQuadTree::search(const SkIRect& query, SkTDArra argument
[all...]
/external/chromium_org/chrome/browser/media/
H A Dmedia_browsertest.cc35 std::string query = ""; local
38 query = itr->first + "=" + itr->second;
41 query.append("&" + itr->first + "=" + itr->second);
46 gurl = test_server()->GetURL("files/media/" + html_page + "?" + query);
52 gurl = content::GetFileUrlWithQuery(test_file_path, query);
/external/chromium_org/chrome/browser/safe_browsing/
H A Dtwo_phase_testserver.py51 _, _, url_path, _, query, _ = urlparse.urlparse(self.path)
52 query_args = urlparse.parse_qs(query)
62 base64.urlsafe_b64encode(query))
68 _, _, url_path, _, query, _ = urlparse.urlparse(self.path)
73 initial_path, metadata_hash, config_query_b64 = query.split(',', 2)
/external/chromium_org/chrome/browser/ui/app_list/search/people/
H A Dpeople_provider_browsertest.cc191 std::string RunQuery(const std::string& query, argument
193 people_provider_->Start(base::UTF8ToUTF16(query));
251 const char* query; member in struct:app_list::test::__anon4900
261 RunQuery(kTestCases[i].query,
263 << "Case " << i << ": q=" << kTestCases[i].query;
278 "http://hostname/?query=q",
/external/chromium_org/chrome/browser/ui/app_list/search/
H A Dtokenized_string_match_unittest.cc35 const char* query; member in struct:app_list::test::__anon4906
38 { "", "query" },
48 EXPECT_FALSE(match.Calculate(base::UTF8ToUTF16(kTestCases[i].query), text))
51 << ", query=" << kTestCases[i].query;
58 const char* query; member in struct:app_list::test::__anon4907
77 EXPECT_TRUE(match.Calculate(base::UTF8ToUTF16(kTestCases[i].query), text));
H A Dtokenized_string_match.cc15 // The factors below are applied when the current char of query matches
18 // matched portion is a prefix of both the query and the text, which implies
19 // that the matched chars are at the same position in query and text. This is
21 // of the query and the text does not match, the algorithm moves to the next
23 // be used if the first char of the token matches the current char of the query.
43 // PrefixMatcher matches the chars of a given query as prefix of tokens in
47 PrefixMatcher(const TokenizedString& query, argument
49 : query_iter_(query),
98 // The current score of the processed query chars.
104 // Completed matching ranges of the processed query char
196 Calculate(const TokenizedString& query, const TokenizedString& text) argument
229 Calculate(const base::string16& query, const base::string16& text) argument
[all...]
/external/chromium_org/components/policy/core/browser/
H A Durl_blacklist_manager.cc53 // Tokenise the parameter |query| and add appropriate query element matcher
57 const std::string& query,
60 url::Component query_left = url::MakeRange(0, query.length());
68 // end of the query and watching a video of his choice (the last parameter is
74 while (ExtractQueryKeyValue(query.data(), &query_left, &key, &value)) {
79 if (!value.len && key.len && query[key.end() - 1] == '*') {
83 } else if (value.len && query[value.end() - 1] == '*') {
92 URLQueryElementMatcherCondition(query.substr(key.begin, key.len),
93 query
55 ProcessQueryToConditions( url_matcher::URLMatcherConditionFactory* condition_factory, const std::string& query, bool allow, std::set<URLQueryElementMatcherCondition>* query_conditions) argument
111 std::string query; member in struct:policy::URLBlacklist::FilterComponents
196 FilterToComponents(SegmentURLCallback segment_url, const std::string& filter, std::string* scheme, std::string* host, bool* match_subdomains, uint16* port, std::string* path, std::string* query) argument
288 CreateConditionSet( URLMatcher* url_matcher, int id, const std::string& scheme, const std::string& host, bool match_subdomains, uint16 port, const std::string& path, const std::string& query, bool allow) argument
[all...]
/external/chromium_org/third_party/WebKit/Tools/RebaselineLogServer/
H A Dmain.py64 return LogEntry.query().order(-LogEntry.date)
129 query = logs_query()
134 query = query.filter(LogEntry.date < date)
137 logs = query.fetch(int(num_logs) if num_logs else 3)
/external/chromium_org/ash/shell/
H A Dapp_list.cc158 const base::string16& query)
167 const size_t match_len = query.length();
172 size_t match_start = title.find(query);
177 match_start = title.find(query, match_start + match_len);
289 base::string16 query; variable
290 base::TrimWhitespace(model_->search_box()->text(), base::TRIM_ALL, &query);
291 query = base::i18n::ToLower(query);
294 if (query.empty())
304 query, titl
157 ExampleSearchResult(WindowTypeShelfItem::Type type, const base::string16& query) argument
[all...]
/external/chromium_org/gpu/command_buffer/client/
H A Dquery_tracker.cc129 // There was no error so start the query on the serivce.
134 // set the query as completed and return the error.
210 Query* query = new Query(id, target, info); local
212 queries_.insert(std::make_pair(id, query));
214 return query;
226 Query* query = it->second; local
227 // When you delete a query you can't mark its memory as unused until it's
231 removed_queries_.push_back(query);
245 Query* query = *it; local
246 if (query
[all...]
/external/chromium_org/chrome/browser/ui/search/
H A Dinstant_search_prerenderer.cc103 void InstantSearchPrerenderer::Commit(const base::string16& query) { argument
106 SearchTabHelper::FromWebContents(prerender_contents())->Submit(query);
111 const base::string16& query) const {
112 if (!source || query.empty() || !prerender_handle_ ||
114 !prerender_contents() || !QueryMatchesPrefetch(query)) {
118 // InstantSearchPrerenderer can commit query to the prerendered page only if
156 const base::string16& query) const {
159 return last_instant_suggestion_.text == query;
H A Dinstant_search_prerenderer_unittest.cc203 void SetLastQuery(const base::string16& query) { argument
205 InstantSuggestion(query, std::string());
227 void PrerenderSearchQuery(const base::string16& query) { argument
230 prerenderer->Prerender(InstantSuggestion(query, std::string()));
232 EXPECT_TRUE(prerenderer->CanCommitQuery(GetActiveWebContents(), query));
247 // Assume the prerendered page prefetched search results for the query
282 base::string16 query = ASCIIToUTF16("flowers"); local
283 prerenderer->Prerender(InstantSuggestion(query, std::string()));
284 EXPECT_TRUE(prerenderer->CanCommitQuery(GetActiveWebContents(), query));
295 base::string16 query local
446 base::string16 query = ASCIIToUTF16("flowers"); local
464 base::string16 query = ASCIIToUTF16("flowers"); local
[all...]
/external/chromium_org/gpu/command_buffer/service/
H A Dquery_manager.h129 // The type of query.
157 // Creates a Query for the given query.
161 // Gets the query info for the given query.
164 // Removes a query info for the given query.
167 // Returns false if any query is pointing to invalid shared memory.
168 bool BeginQuery(Query* query);
170 // Returns false if any query is pointing to invalid shared memory.
171 bool EndQuery(Query* query, bas
[all...]
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/speech_rules/
H A Dmath_store.js50 name, dynamic, action, query, cstr) {
56 action, query].concat(cstrList));
100 * @param {string} query Precondition query of the rule.
104 name, dynamic, query, cstr) {
116 this.addAlias_(rule, query, Array.prototype.slice.call(arguments, 3));
123 * @param {string} query Precondition query of the rule.
126 cvox.MathStore.prototype.defineRuleAlias = function(name, query, cstr) {
133 this.addAlias_(rule, query, Arra
[all...]
/external/doclava/res/assets/templates/assets/
H A Dsearch_autocomplete.js161 function rank_autocomplete_results(query) {
162 query = query || '';
190 var queryLower = query.toLowerCase();
231 function highlight_autocomplete_result_labels(query) {
232 query = query || '';
236 var queryLower = query.toLowerCase();
263 var query = document.getElementById('search_autocomplete').value;
264 document.location = toRoot + 'search.html#q=' + query
[all...]
/external/smack/src/org/xbill/DNS/
H A DExtendedResolver.java26 Message query; field in class:ExtendedResolver.Resolution
32 Resolution(ExtendedResolver eres, Message query) { argument
57 this.query = query;
66 inprogress[n] = resolvers[n].sendAsync(query, this);
95 return resolvers[0].send(query);
351 * @param query The query to send.
356 send(Message query) throws IOException { argument
357 Resolution res = new Resolution(this, query);
372 sendAsync(final Message query, final ResolverListener listener) argument
[all...]
/external/chromium_org/chrome/browser/chromeos/timezone/
H A Dtimezone_request.cc123 std::string query(url.query());
124 query += base::StringPrintf(
129 query += "&";
130 query += kKeyString;
131 query += "=";
132 query += net::EscapeQueryParamValue(api_key, true);
136 query += base::StringPrintf(
139 query += "&";
140 query
[all...]
/external/chromium_org/cloud_print/gcp20/prototype/
H A Ddns_sd_server.cc160 if (parser.header().flags & net::dns_protocol::kFlagResponse) // Not a query.
167 DnsQueryRecord query; local
170 bool success = parser.ReadRecord(&query);
172 ProccessQuery(current_ttl, query, &builder);
194 void DnsSdServer::ProccessQuery(uint32 current_ttl, const DnsQueryRecord& query, argument
198 switch (query.qtype) {
201 log = "Processing PTR query";
202 if (query.qname == serv_params_.service_type_ ||
203 query.qname == serv_params_.secondary_service_type_) {
204 builder->AppendPtr(query
[all...]
/external/robolectric/src/main/java/android/net/
H A DUri__FromAndroid.java96 <scheme>://<authority><path>?<query>
263 * Gets the decoded query component from this URI. The query comes after
264 * the query separator ('?') and before the fragment separator ('#'). This
268 * @return the decoded query or null if there isn't one
273 * Gets the encoded query component from this URI. The query comes after
274 * the query separator ('?') and before the fragment separator ('#'). This
278 * @return the encoded query or null if there isn't one
579 private Part query; field in class:Uri__FromAndroid.StringUri
1087 private final Part query; field in class:Uri__FromAndroid.HierarchicalUri
1090 HierarchicalUri(String scheme, Part authority, PathPart path, Part query, Part fragment) argument
1267 private Part query; field in class:Uri__FromAndroid.Builder
1375 query(Part query) argument
1386 query(String query) argument
1393 encodedQuery(String query) argument
[all...]
/external/iputils/ninfod/
H A Dninfod_core.c509 struct icmp6_nodeinfo *query = (struct icmp6_nodeinfo *)p->query; local
511 char *subject = (char *)(query + 1);
561 for (i = 0; i < sizeof(query->icmp6_ni_nonce); i++) {
562 cp += sprintf(cp, " %02x", query->icmp6_ni_nonce[i]);
566 ntohs(query->ni_qtype), ntohs(query->ni_flags), printbuf);
572 switch(htons(query->ni_qtype)) {
575 if (query->ni_code != ICMP6_NI_SUBJ_FQDN) {
578 __func__, query
[all...]
/external/chromium_org/third_party/freetype/src/cache/
H A Dftcglyph.c190 FTC_GQuery query,
196 query->gindex = gindex;
198 FTC_MRULIST_LOOKUP( &cache->families, query, query->family, error );
201 FTC_Family family = query->family;
208 error = FTC_Cache_Lookup( FTC_CACHE( cache ), hash, query, anode );
H A Dftcglyph.h71 * - FTC_GQuery sub-class, e.g. MyQuery, to hold cache-specific query
185 /* returns TRUE iff the query's glyph index correspond to the node; */
186 /* this assumes that the `family' and `hash' fields of the query are */
265 FTC_GQuery query,
281 gindex, query, node, error ) \
284 FTC_GQuery _gquery = (FTC_GQuery)( query ); \
301 FTC_CACHE_LOOKUP_CMP( cache, nodecmp, hash, query, node, error ); \
312 gindex, query, node, error ) \
316 FTC_GQUERY( query ), &node ); \

Completed in 4452 milliseconds

1234567891011>>