Searched refs:query (Results 201 - 225 of 849) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/webrtc/base/
H A Dhttpcommon-inl.h65 const CTYPE* query = strchrn(val, len, static_cast<CTYPE>('?')); local
66 if (!query) {
67 query = val + len;
69 size_t path_length = (query - val);
77 query_.assign(query, len - path_length);
/external/skia/tests/
H A DRTreeTest.cpp44 static bool verify_query(SkIRect query, DataRect rects[], argument
49 if (SkIRect::IntersectsNoEmptyCheck(query, rects[i].rect)) {
74 SkIRect query = random_rect(rand); local
75 tree.search(query, &hits);
76 REPORTER_ASSERT(reporter, verify_query(query, rects, hits));
/external/chromium_org/chrome/browser/chromeos/drive/
H A Dsearch_metadata.cc146 // tested for the match with the query. If
152 // match with the query. This option can not be used with other options.
189 // In particular, if |query| is non-null, only adds files with the name matching
190 // the query.
194 base::i18n::FixedPatternStringSearchIgnoringCaseAndAccents* query,
212 // |options| and matches the query. The base name of the entry must
213 // contain |query| to match the query.
216 (query && !FindAndHighlight(entry.base_name(), query,
191 MaybeAddEntryToResult( ResourceMetadata* resource_metadata, ResourceMetadata::Iterator* it, base::i18n::FixedPatternStringSearchIgnoringCaseAndAccents* query, int options, size_t at_most_num_matches, HiddenEntryClassifier* hidden_entry_classifier, ScopedPriorityQueue<ResultCandidate, ResultCandidateComparator>* result_candidates) argument
304 SearchMetadata( scoped_refptr<base::SequencedTaskRunner> blocking_task_runner, ResourceMetadata* resource_metadata, const std::string& query, int options, int at_most_num_matches, const SearchMetadataCallback& callback) argument
334 FindAndHighlight( const std::string& text, base::i18n::FixedPatternStringSearchIgnoringCaseAndAccents* query, std::string* highlighted_text) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DresourcesPanel.css148 .storage-view.query {
154 .database-query-prompt {
163 .database-user-query::before,
164 .database-query-prompt::before,
165 .database-query-result::before {
180 .database-user-query::before,
181 .database-query-prompt::before,
182 .database-query-result::before {
187 .database-query-prompt::before {
191 .database-user-query {
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/profiler/
H A DCPUProfileView.js176 performSearch: function(query, finishedCallback)
181 query = query.trim();
183 if (!query.length)
188 var greaterThan = (query.startsWith(">"));
189 var lessThan = (query.startsWith("<"));
190 var equalTo = (query.startsWith("=") || ((greaterThan || lessThan) && query.indexOf("=") === 1));
191 var percentUnits = (query.lastIndexOf("%") === (query
[all...]
/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
H A DDatabaseBackendBase.cpp92 static bool retrieveTextResultFromDatabase(SQLiteDatabase& db, const String& query, String& resultString) argument
94 SQLiteStatement statement(db, query);
98 WTF_LOG_ERROR("Error (%i) preparing statement to read text result from database (%s)", result, query.ascii().data());
112 WTF_LOG_ERROR("Error (%i) reading text result from database (%s)", result, query.ascii().data());
116 static bool setTextValueInDatabase(SQLiteDatabase& db, const String& query, const String& value) argument
118 SQLiteStatement statement(db, query);
122 WTF_LOG_ERROR("Failed to prepare statement to set value in database (%s)", query.ascii().data());
130 WTF_LOG_ERROR("Failed to step statement to set value in database (%s)", query.ascii().data());
466 String query(String("SELECT value FROM ") + infoTableName + " WHERE key = '" + versionKey + "';");
470 bool result = retrieveTextResultFromDatabase(m_sqliteDatabase, query, versio
[all...]
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DMediaList.cpp98 // To "parse a media query" for a given string means to follow "the parse
99 // a media query list" steps and return "null" if more than one media query
100 // is returned, or else the returned media query.
103 // Only continue if exactly one media query is found, as described above.
113 MediaQuery* query = m_queries[i].get(); local
114 if (*query == *newQuery)
124 // To "parse a media query" for a given string means to follow "the parse
125 // a media query list" steps and return "null" if more than one media query
140 MediaQuery* query = m_queries[i].get(); local
300 const MediaQuery* query = mediaQueries[i].get(); local
[all...]
/external/apache-http/src/org/apache/http/client/utils/
H A DURIUtils.java61 * @param query
78 final String query,
99 if (query != null) {
101 buffer.append(query);
112 * and port are taken from the target host, but whose path, query and
117 * Contains the path, query and fragment to use.
73 createURI( final String scheme, final String host, int port, final String path, final String query, final String fragment) argument
H A DURLEncodedUtils.java60 * URI's query portion. For example, a URI of
69 * encoding to use while parsing the query
73 final String query = uri.getRawQuery();
74 if (query != null && query.length() > 0) {
76 parse(result, new Scanner(query), encoding);
/external/chromium_org/base/test/
H A Dtrace_event_analyzer.h173 Query(const Query& query);
411 // Return true if the given event matches this query tree.
412 // This is a recursive method that walks the query tree.
543 // QueryNode allows Query to store a ref-counted query tree.
546 explicit QueryNode(const Query& query);
547 const Query& query() const { return query_; } function in class:trace_analyzer::QueryNode
590 // |first| - Eligible |first| events match this query.
591 // |second| - Eligible |second| events match this query.
592 // |match| - This query is run on the |first| event. The OTHER_* EventMember
593 // queries will point to an eligible |second| event. The query
698 CountMatches(const TraceEventVector& events, const Query& query) argument
[all...]
/external/chromium_org/chrome/browser/ui/app_list/search/webstore/
H A Dwebstore_provider.cc48 void WebstoreProvider::Start(const base::string16& query) { argument
50 if (!IsValidQuery(query)) {
55 query_ = base::UTF16ToUTF8(query);
77 // Add a placeholder result which when clicked will run the user's query in a
88 // |query_| can be NULL when the query is scheduled but then canceled.
/external/chromium_org/chrome/browser/ui/search/
H A Dinstant_extended_manual_interactive_uitest.cc128 const ui::KeyboardCode query[] = { local
132 for (size_t i = 0; query[i] != ui::VKEY_UNKNOWN; i++) {
133 ASSERT_TRUE(ui_test_utils::SendKeyPressSync(browser(), query[i],
/external/chromium_org/chrome/browser/ui/webui/options/chromeos/
H A Duser_image_source.cc37 url::Component query = url.parsed_for_possibly_invalid_spec().query; local
40 while (ExtractQueryKeyValue(url_spec.c_str(), &query, &key, &value)) {
/external/chromium_org/content/test/ppapi/
H A Dppapi_test.cc66 std::string query = BuildQuery(std::string(), test_case); local
67 replacements.SetQuery(query.c_str(), url::Component(0, query.size()));
/external/chromium_org/net/tools/flip_server/
H A Dloadtime_measurement.h75 std::vector<std::string> query; local
76 base::SplitString(action, '?', &query);
78 base::SplitString(query[1], '&', &params);
/external/chromium_org/url/
H A Durl_canon_internal_file.h126 source.query, parsed.query, output, &new_parsed->query);
H A Durl_canon_mailtourl.cc21 // mailto: only uses {scheme, path, query} -- clear the rest.
59 CanonicalizeQuery(source.query, parsed.query, NULL,
60 output, &new_parsed->query);
H A Durl_canon_pathurl.cc64 // We allow path URLs to have the path, query and fragment components, but we
69 source.query, parsed.query, '?', output, &new_parsed->query);
/external/chromium_org/v8/tools/testrunner/server/
H A Dlocal_handler.py37 def LocalQuery(query):
41 compression.Send(query, sock)
47 assert data[0] == query[0]
H A Dstatus_handler.py36 def _StatusQuery(peer, query):
42 compression.Send(query, sock)
48 assert data[0] == query[0]
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/omnibox/
H A DAutocompleteController.java69 * @param url The URL of the current tab, used to suggest query refinements.
70 * @param text The text to query autocomplete suggestions for.
102 * Starts a query for suggestions before any input is available from the user.
107 * @param isQueryInOmnibox Whether the location bar is currently showing a search query.
236 * making a Google search query.
244 * @param query User input text.
247 public OmniboxSuggestion getTopSynchronousMatch(String query) { argument
248 return nativeGetTopSynchronousMatch(mNativeAutocompleteControllerAndroid, query);
271 long nativeAutocompleteControllerAndroid, String query);
274 * Given a search query, thi
270 nativeGetTopSynchronousMatch( long nativeAutocompleteControllerAndroid, String query) argument
282 nativeQualifyPartialURLQuery(String query) argument
[all...]
/external/chromium_org/chrome/browser/extensions/updater/
H A Dmanifest_fetch_data.cc31 std::string query = full_url_.has_query() ? local
32 full_url_.query() + "&" : std::string();
33 query += chrome::OmahaQueryParams::Get(chrome::OmahaQueryParams::CRX);
35 replacements.SetQueryStr(query);
/external/chromium_org/chrome/browser/resources/options/
H A Dhome_page_overlay.js101 * the given query. When new suggestions are available, the C++ handler will
103 * @param {string} query List of autocomplete suggestions.
106 requestAutocompleteSuggestions_: function(query) {
107 chrome.send('requestAutocompleteSuggestionsForHomePage', [query]);
/external/chromium_org/chrome/browser/resources/print_preview/
H A Dcomponent.js154 * @param {string} query Selector query to select an element starting from
156 * element that matches the query.
157 * @return {HTMLElement} Element selected by the given query.
159 getChildElement: function(query) {
160 return this.element_.querySelector(query);
/external/chromium_org/chrome/browser/ui/app_list/search/
H A Dapp_search_provider.h32 virtual void Start(const base::string16& query) OVERRIDE;

Completed in 825 milliseconds

1234567891011>>