/external/chromium_org/chrome/browser/ui/app_list/search/ |
search_webstore_result.h | 21 SearchWebstoreResult(Profile* profile, const std::string& query);
|
tokenized_string_match_unittest.cc | 35 const char* query; member in struct:app_list::test::__anon9526 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::__anon9527 77 EXPECT_TRUE(match.Calculate(base::UTF8ToUTF16(kTestCases[i].query), text));
|
/external/chromium_org/gpu/command_buffer/client/ |
context_support.h | 20 // Runs |callback| when a query created via glCreateQueryEXT() has cleared 22 virtual void SignalQuery(uint32 query, const base::Closure& callback) = 0;
|
/external/chromium_org/net/http/ |
http_util_icu.cc | 20 return url.path() + "?" + url.query();
|
/external/chromium_org/third_party/skia/src/core/ |
SkBBoxHierarchy.h | 35 * bounding boxes, and allows efficient retrieval of intersections with query rectangles. 60 * Populate 'results' with data pointers corresponding to bounding boxes that intersect 'query' 62 virtual void search(const SkIRect& query, SkTDArray<void*>* results) = 0;
|
SkQuadTree.cpp | 33 static U8CPU child_intersect(const SkIRect& query, const SkIPoint& split) { 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, 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, SkTDArray<void*>* results) [all...] |
/external/qemu/android/ |
hw-control.c | 50 /* handle query */ 51 static void hw_control_do_query( HwControl* h, uint8_t* query, int querylen ); 96 uint8_t* query, 101 T("%s: query %4d '%.*s'", __FUNCTION__, querylen, querylen, query ); 103 q = if_starts_with( query, querylen, "power:light:brightness:" );
|
/external/skia/src/core/ |
SkBBoxHierarchy.h | 35 * bounding boxes, and allows efficient retrieval of intersections with query rectangles. 60 * Populate 'results' with data pointers corresponding to bounding boxes that intersect 'query' 62 virtual void search(const SkIRect& query, SkTDArray<void*>* results) = 0;
|
SkQuadTree.cpp | 33 static U8CPU child_intersect(const SkIRect& query, const SkIPoint& split) { 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, 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, SkTDArray<void*>* results) [all...] |
/external/wpa_supplicant_8/hs20/server/www/ |
cert-enroll.php | 17 $row = $db->query("SELECT rowid,* FROM sessions WHERE id='$id'")->fetch();
|
/frameworks/base/core/java/com/android/internal/content/ |
SelectionBuilder.java | 96 * Execute query using the current internal state as {@code WHERE} clause. 99 public Cursor query(SQLiteDatabase db, String table, String[] columns, String orderBy) { method in class:SelectionBuilder 100 return query(db, table, columns, null, null, orderBy, null); 104 * Execute query using the current internal state as {@code WHERE} clause. 106 public Cursor query(SQLiteDatabase db, String table, String[] columns, String groupBy, method in class:SelectionBuilder 108 return db.query(table, columns, getSelection(), getSelectionArgs(), groupBy, having,
|
/packages/apps/UnifiedEmail/src/com/android/mail/ |
ConversationListContext.java | 37 * This includes the folder the user selected to view the list, or the search query for the 41 public static final String EXTRA_SEARCH_QUERY = "query"; 56 * The search query whose results we are displaying, if any. 86 * Builds a context object for viewing a conversation list for a search query. 89 String query) { 90 return new ConversationListContext(account, Preconditions.checkNotNull(query), folder); 98 * @param query 101 private ConversationListContext(Account a, String query, Folder f) { 103 searchQuery = query;
|
/external/chromium_org/base/metrics/ |
statistics_recorder.cc | 132 void StatisticsRecorder::WriteHTMLGraph(const std::string& query, 138 GetSnapshot(query, &snapshot); 148 void StatisticsRecorder::WriteGraph(const std::string& query, 152 if (query.length()) 153 StringAppendF(output, "Collections of histograms for %s\n", query.c_str()); 158 GetSnapshot(query, &snapshot); 168 std::string StatisticsRecorder::ToJSON(const std::string& query) { 173 if (!query.empty()) { 174 output += "\"query\":"; 175 EscapeJSONString(query, true, &output) [all...] |
/external/chromium_org/chrome/browser/search_engines/ |
template_url_service_android.cc | 150 base::string16 query(ConvertJavaStringToUTF16(env, jquery)); 156 !query.empty()) { 158 TemplateURLRef::SearchTermsArgs(query), 169 base::string16 query(ConvertJavaStringToUTF16(env, jquery)); 172 if (!query.empty()) { 173 GURL gurl(GetDefaultSearchURLForSearchTerms(GetOriginalProfile(), query)); 190 base::string16 query(ConvertJavaStringToUTF16(env, jquery)); 193 if (default_provider && !query.empty()) { 195 current_url, TemplateURLRef::SearchTermsArgs(query), 207 base::string16 query(ConvertJavaStringToUTF16(env, jquery)) [all...] |
/external/chromium_org/chrome/browser/ui/app_list/search/common/ |
webservice_cache.h | 52 // Checks the current cache and returns the value for the |query| if it's 54 // A query consists of a query 'type' and the query itself. The two current 56 // The type silos the query into it's own separate domain, preventing any 58 const CacheResult Get(QueryType type, const std::string& query); 60 // Puts the new result to the query. 62 const std::string& query, 100 // Prepends a type string to the given query and returns a new query string [all...] |
/external/chromium_org/chrome/browser/ui/search/ |
instant_search_prerenderer.h | 63 // given |query|. 64 void Commit(const base::string16& query); 69 const base::string16& query) const; 75 // Returns the last prefetched search query. 90 // Returns true if the |query| matches the last prefetched search query or if 92 bool QueryMatchesPrefetch(const base::string16& query) const;
|
/external/chromium_org/remoting/host/setup/ |
oauth_helper.cc | 69 url::Component query = url_parsed.query; local 72 while (ExtractQueryKeyValue(url.c_str(), &query, &key, &value)) {
|
/external/chromium_org/third_party/libjingle/source/talk/examples/call/ |
friendinvitesendtask.cc | 41 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/ |
discoitemsquerytask.cc | 50 const XmlElement* query = stanza->FirstNamed(QN_DISCO_ITEMS_QUERY); local 51 if (query) { 53 for (const buzz::XmlChild* child = query->FirstChild(); child;
|
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ |
SearchActivity.java | 54 private static final String INSTANCE_KEY_QUERY = "query"; 194 String query = savedInstanceState.getString(INSTANCE_KEY_QUERY); 195 setQuery(query, false); 210 String query = intent.getStringExtra(SearchManager.QUERY); local 214 setQuery(query, selectAll); 269 // Close all open suggestion cursors. The query will be redone in onResume() 323 protected void setQuery(String query, boolean selectAll) { 324 mSearchActivityView.setQuery(query, selectAll); 331 String query = CharMatcher.WHITESPACE.trimAndCollapseFrom(getQuery(), ' ') local 435 String query = suggestion.getSuggestionQuery(); local 470 final String query = CharMatcher.WHITESPACE.trimLeadingFrom(getQuery()); local [all...] |
/external/chromium_org/chrome/browser/media/ |
media_browsertest.cc | 35 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/ |
two_phase_testserver.py | 51 _, _, 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/ |
people_provider_browsertest.cc | 191 std::string RunQuery(const std::string& query, 193 people_provider_->Start(base::UTF8ToUTF16(query)); 251 const char* query; member in struct:app_list::test::__anon9520 261 RunQuery(kTestCases[i].query, 263 << "Case " << i << ": q=" << kTestCases[i].query; 278 "http://hostname/?query=q",
|
/external/chromium_org/components/policy/core/browser/ |
url_blacklist_manager.cc | 53 // 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.substr(value.begin, value.len) 111 std::string query; member in struct:policy::URLBlacklist::FilterComponents [all...] |
/external/chromium_org/third_party/WebKit/Tools/RebaselineLogServer/ |
main.py | 64 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)
|