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

1234567891011>>

/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.p2.director_2.0.3.R36x_v20101117-1018.jar ... ApplicablePatchQuery extends org.eclipse.equinox.p2.query.ExpressionMatchQuery { private static final org.eclipse.equinox ...
H A Dorg.eclipse.equinox.p2.metadata.repository_1.1.0.v20100513.jar ... result public org.eclipse.equinox.p2.query.IQueryResult query (org.eclipse.equinox.p2 ...
H A Dorg.eclipse.equinox.p2.updatesite_1.0.201.R36x_v20100823.jar ... SITE private static final String IU private static final String QUERY private static final String EXPRESSION private static final String PARAM ...
H A Dorg.eclipse.equinox.p2.garbagecollector_1.0.100.v20100503.jar ... Set set org.eclipse.equinox.p2.query.IQuery query org.eclipse.equinox.p2 ...
/external/webkit/Source/WebCore/loader/icon/
H A DIconDatabase.cpp1210 SQLiteStatement query(m_syncDB, "SELECT PageURL.url, IconInfo.url, IconInfo.stamp FROM PageURL INNER JOIN IconInfo ON PageURL.iconID=IconInfo.iconID;");
1212 if (query.prepare() != SQLResultOk) {
1213 LOG_ERROR("Unable to prepare icon url import query");
1221 int result = query.step();
1223 String pageURL = query.getColumnText(0);
1224 String iconURL = query.getColumnText(1);
1251 currentIcon->setTimestamp(query.getColumnInt(2));
1275 result = query.step();
1810 SQLiteStatement query(m_syncDB, "SELECT IconDatabaseInfo.value FROM IconDatabaseInfo WHERE IconDatabaseInfo.key = \"ImportedSafari2Icons\";");
1811 if (query
[all...]
/external/chromium/chrome/common/extensions/docs/examples/apps/hello-python/httplib2/
H A D__init__.py163 (scheme, authority, path, query, fragment) = parse_uri(uri)
169 (scheme, authority, path, query, fragment) = parse_uri(uri)
178 request_uri = query and "?".join([path, query]) or path
416 (scheme, authority, path, query, fragment) = parse_uri(request_uri)
423 (scheme, authority, path, query, fragment) = parse_uri(request_uri)
428 (scheme, authority, path, query, fragment) = parse_uri(request_uri)
928 (scheme, authority, path, query, fragment) = parse_uri(location)
/external/webkit/Source/WebKit/qt/Api/
H A Dqwebelement.cpp232 \l{Standard CSS2 selector} syntax is used for the query.
247 \l{Standard CSS2 selector} syntax is used for the query.
1534 static QWebElementCollectionPrivate* create(const PassRefPtr<Node> &context, const QString &query);
1542 QWebElementCollectionPrivate* QWebElementCollectionPrivate::create(const PassRefPtr<Node> &context, const QString &query) argument
1549 RefPtr<NodeList> nodes = context->querySelectorAll(query, exception);
1599 match the specified CSS selector \a query.
1601 QWebElementCollection::QWebElementCollection(const QWebElement &contextElement, const QString &query) argument
1603 d = QExplicitlySharedDataPointer<QWebElementCollectionPrivate>(QWebElementCollectionPrivate::create(contextElement.m_element, query));
/external/chromium/chrome/browser/policy/
H A Ddevice_management_service_unittest.cc206 // Simple query parameter parser for testing.
209 explicit QueryParams(const std::string& query) { argument
210 base::SplitStringIntoKeyValuePairs(query, '=', '&', &params_);
263 QueryParams query_params(request_url.query());
/external/chromium/chrome/browser/prerender/
H A Dprerender_manager.cc69 url_parse::Component query = parsed.query; local
71 while (url_parse::ExtractQueryKeyValue(url.spec().c_str(), &query, &key,
75 // We found a url= query string component.
/external/webkit/LayoutTests/dom/html/level1/core/
H A Dselfhtml.js152 function assertURIEquals(assertID, scheme, path, host, file, name, query, fragment, isAbsolute, actual) {
179 if(query != null) assertEquals(assertID, query, actualQuery);
/external/webkit/LayoutTests/dom/html/level2/core/
H A Dselfhtml.js152 function assertURIEquals(assertID, scheme, path, host, file, name, query, fragment, isAbsolute, actual) {
179 if(query != null) assertEquals(assertID, query, actualQuery);
/external/webkit/LayoutTests/dom/html/level2/events/
H A Dselfhtml.js152 function assertURIEquals(assertID, scheme, path, host, file, name, query, fragment, isAbsolute, actual) {
179 if(query != null) assertEquals(assertID, query, actualQuery);
/external/webkit/LayoutTests/dom/html/level2/html/
H A Dselfhtml.js152 function assertURIEquals(assertID, scheme, path, host, file, name, query, fragment, isAbsolute, actual) {
179 if(query != null) assertEquals(assertID, query, actualQuery);
/external/webkit/LayoutTests/dom/xhtml/level1/core/
H A Dselfxhtml.js151 function assertURIEquals(assertID, scheme, path, host, file, name, query, fragment, isAbsolute, actual) {
178 if(query != null) assertEquals(assertID, query, actualQuery);
/external/webkit/LayoutTests/dom/xhtml/level2/core/
H A Dselfxhtml.js151 function assertURIEquals(assertID, scheme, path, host, file, name, query, fragment, isAbsolute, actual) {
178 if(query != null) assertEquals(assertID, query, actualQuery);
/external/webkit/LayoutTests/dom/xhtml/level2/events/
H A Dselfxhtml.js151 function assertURIEquals(assertID, scheme, path, host, file, name, query, fragment, isAbsolute, actual) {
178 if(query != null) assertEquals(assertID, query, actualQuery);
/external/webkit/LayoutTests/dom/xhtml/level2/html/
H A Dselfxhtml.js151 function assertURIEquals(assertID, scheme, path, host, file, name, query, fragment, isAbsolute, actual) {
178 if(query != null) assertEquals(assertID, query, actualQuery);
/external/webkit/LayoutTests/dom/xhtml/level3/core/
H A Dselfxhtml.js151 function assertURIEquals(assertID, scheme, path, host, file, name, query, fragment, isAbsolute, actual) {
178 if(query != null) assertEquals(assertID, query, actualQuery);
/external/webkit/Source/ThirdParty/ANGLE/src/libEGL/
H A DDisplay.cpp628 IDirect3DQuery9 *query; local
629 HRESULT result = mDevice->CreateQuery(D3DQUERYTYPE_EVENT, &query);
632 query->Release();
/external/chromium/chrome/browser/extensions/
H A Dextension_updater_unittest.cc412 // Validate the extension request parameters in the query. It should
416 base::SplitString(url.query(), '=', &parts);
464 // Validate the extension request parameters in the query. It should
468 base::SplitString(url.query(), '=', &parts);
958 // tell them apart and note the query each used.
962 url1_query = fetched_urls[0].query();
963 url2_query = fetched_urls[1].query();
965 url1_query = fetched_urls[1].query();
966 url2_query = fetched_urls[0].query();
971 // First make sure the non-google query ha
[all...]
/external/chromium/net/tools/testserver/
H A Dtestserver.py131 def HandleCommand(self, query, raw_request):
132 return self._sync_handler.HandleCommand(query, raw_request)
728 If the 'replace_text' URL query parameter is present, it is expected to be
761 _, _, url_path, _, query, _ = urlparse.urlparse(self.path)
777 data = self._ReplaceFileData(data, query)
859 _, _, url_path, _, query, _ = urlparse.urlparse(self.path)
860 query_params = cgi.parse_qs(query, True)
/external/chromium/chrome/browser/history/
H A Dtext_database_manager.cc206 // first and we don't want to overwrite it. We could go query for the
289 // avoid another DB query.
413 const string16& query,
426 // Get the query into the proper format for the individual DBs.
428 query_parser_.ParseQuery(query, &fts_query16);
450 // TODO(brettw) allow canceling the query in the middle.
412 GetTextMatches( const string16& query, const QueryOptions& options, std::vector<TextDatabase::Match>* results, Time* first_time_searched) argument
/external/chromium/chrome/browser/webdata/
H A Dautofill_table.cc1625 std::string query = "DELETE FROM autofill_dates WHERE pair_id IN (" local
1628 if (!db_->Execute(query.c_str()))
1631 query = "DELETE FROM autofill WHERE " + autofill_is_too_big;
1633 if (!db_->Execute(query.c_str()))
1645 query = "DELETE FROM credit_cards WHERE (" + credit_cards_is_too_big +
1649 if (!db_->Execute(query.c_str()))
1654 query = "DELETE FROM autofill_profiles WHERE " +
1657 if (!db_->Execute(query.c_str()))
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_interface_ann.cc361 const char *ThreadSanitizerQuery(const char *query) { argument
362 if (internal_strcmp(query, "pure_happens_before") == 0)
/external/mesa3d/docs/
H A DMESA_drm_image.spec139 used to query the attributes of the EGLImage. We don't have a

Completed in 806 milliseconds

1234567891011>>