HomeSort by relevance Sort by last modified time
    Searched refs:query (Results 276 - 300 of 2957) sorted by null

<<11121314151617181920>>

  /packages/apps/SettingsIntelligence/src/com/android/settings/intelligence/search/query/
AccessibilityServiceResultTask.java 17 package com.android.settings.intelligence.search.query;
55 String query) {
56 return new SearchQueryTask(new AccessibilityServiceResultTask(context, manager, query));
60 String query) {
61 super(context, mapManager, query);
68 protected List<? extends SearchResult> query() { method in class:AccessibilityServiceResultTask
InstalledAppResultTask.java 17 package com.android.settings.intelligence.search.query;
51 String query) {
52 return new SearchQueryTask(new InstalledAppResultTask(context, siteMapManager, query));
56 String query) {
57 super(context, siteMapManager, query);
67 protected List<? extends SearchResult> query() { method in class:InstalledAppResultTask
115 * @param wordDiff difference between query length and app name length.
  /external/mesa3d/src/gallium/drivers/ddebug/
dd_context.c 49 dd_query(struct pipe_query *query)
51 return (struct dd_query *)query;
55 dd_query_unwrap(struct pipe_query *query)
57 if (query) {
58 return dd_query(query)->query;
69 struct pipe_query *query; local
71 query = pipe->create_query(pipe, query_type, index);
73 /* Wrap query object. */
74 if (query) {
94 struct pipe_query *query; local
    [all...]
  /art/tools/ahat/src/main/com/android/ahat/
Query.java 25 * A class for getting and modifying query parameters.
27 class Query {
34 public Query(URI uri) {
38 String query = uri.getQuery(); local
39 if (query != null) {
40 for (String param : query.split("&")) {
52 * Return the value of a query parameter with the given name.
53 * If there is no query parameter with that name, returns the default value.
54 * If there are multiple query parameters with that name, the value of the
55 * last query parameter is returned
    [all...]
  /external/autotest/frontend/client/src/autotest/common/table/
DataSource.java 55 public interface Query {
59 * Get the total number of results matching this query. After completion,
76 abstract class DefaultQuery implements Query {
101 public void onQueryReady(Query query);
110 public void onQueryReady(Query query) {}
114 public void query(JSONObject params, final DataCallback callback); method in interface:DataSource
DynamicTableSelectionManager.java 5 import autotest.common.table.DataSource.Query;
20 public void onQueryReady(Query query) {
21 query.getPage(null, null, null, this);
73 attachedDynamicTable.getDataSource().query(params, deselectFilteredCallback);
  /external/libmojo/mojo/public/java/system/src/org/chromium/mojo/system/
DataPipe.java 179 * Change the query bit of this flag. If set query the number of elements available to read.
182 * @param query the new value of the query bit.
185 public ReadFlags query(boolean query) { method in class:DataPipe.ReadFlags
186 return setFlag(FLAG_QUERY, query);
192 * Mutually exclusive with |discard| and |query|.
289 * data or none. In this case, |query| must not be set.
294 * Reads data from the data pipe consumer. May also be used to query the amount of dat
    [all...]
  /frameworks/base/core/java/android/webkit/
MimeTypeMap.java 53 int query = url.lastIndexOf('?'); local
54 if (query > 0) {
55 url = url.substring(0, query);
  /frameworks/base/core/tests/coretests/src/android/app/
SuggestionProvider.java 63 public Cursor query(Uri url, String[] projectionIn, String selection, method in class:SuggestionProvider
68 String query = url.getLastPathSegment(); local
72 addRow(cursor, query + suffix);
  /frameworks/data-binding/extensions/baseAdapters/src/main/java/android/databinding/adapters/
SearchViewBindingAdapter.java 44 public boolean onQueryTextSubmit(String query) {
46 return submit.onQueryTextSubmit(query);
98 boolean onQueryTextSubmit(String query);
  /frameworks/support/media/api24/android/support/v4/media/session/
MediaSessionCompatApi24.java 51 public void onPrepareFromSearch(String query, Bundle extras);
72 public void onPrepareFromSearch(String query, Bundle extras) {
73 mCallback.onPrepareFromSearch(query, extras);
  /packages/apps/SettingsIntelligence/src/com/android/settings/intelligence/search/savedqueries/
SavedQueryLoader.java 55 try (final Cursor cursor = mDatabase.query(
57 new String[]{SavedQueriesColumns.QUERY} /* columns */,
72 cursor.getString(cursor.getColumnIndex(SavedQueriesColumns.QUERY)));
74 .setDataKey(payload.query)
75 .setTitle(payload.query)
  /system/netd/server/dns/
DnsTlsSocket.h 42 // This class is not aware of query-response pairing or anything else about DNS.
44 // This class is not re-entrant: the observer is not permitted to wait for a call to query()
61 // Send a query on the provided SSL socket. |query| contains
62 // the body of a query, not including the ID header. This function will typically return before
63 // the query is actually sent. If this function fails, DnsTlsSocketObserver will be
67 bool query(uint16_t id, const Slice query) override;
98 struct Query {
100 Slice query; member in struct:android::net::DnsTlsSocket::Query
    [all...]
  /system/netd/tests/
dns_tls_test.cpp 96 // Arbitrarily fill the query body with unique data.
103 // Query constants
107 const bytevec QUERY = make_query(ID, SIZE);
122 bytevec make_echo(uint16_t id, const Slice query) {
123 bytevec response(query.size() + 2);
126 // Echo the query as the fake response.
127 memcpy(response.data() + 2, query.base(), query.size());
131 // Simplest possible fake server. This just echoes the query as the response.
135 bool query(uint16_t id, const Slice query) override
    [all...]
  /cts/tests/tests/content/src/android/content/cts/
ContentProviderCursorWindowTest.java 34 getContext().getContentResolver().query(
  /cts/tests/tests/provider/src/android/provider/cts/
Settings_NameValueTableTest.java 35 Cursor c = cr.query(uri, null, null, null, null);
42 c = cr.query(uri, null, null, null, null);
47 // query this row
49 c = cr.query(uri, null, selection, null, null);
59 c = cr.query(uri, null, null, null, null);
  /external/curl/lib/
imap.h 63 char *query; /* Query to search for */ member in struct:IMAP
  /external/jacoco/org.jacoco.cli.test/src/org/jacoco/cli/internal/
XmlDocumentationTest.java 119 private void assertContains(String expected, String query, Document doc)
121 final String actual = eval(query, doc);
125 private String eval(String query, Document doc)
127 return (String) xpath.evaluate(query, doc, XPathConstants.STRING);
  /external/libxml2/python/tests/
tstURI.py 8 uri = libxml2.parseURI("http://example.org:8088/foo/bar?query=simple#fragid")
21 if uri.query() != 'query=simple':
22 print("Error parsing URI: wrong query")
25 print("Error parsing URI: wrong query")
31 if result != "https://example.org:223/foo/bar?query=simple":
  /external/mesa3d/src/amd/vulkan/
radv_query.c 46 /* Otherwise we need to change the query reset procedure */
81 unreachable("creating unhandled query type");
141 unsigned query = firstQuery + i; local
142 char *src = pool->ptr + query * pool->stride;
148 while(!*(volatile uint32_t*)(pool->ptr + pool->availability_offset + 4 * query))
152 available = *(uint32_t*)(pool->ptr + pool->availability_offset + 4 * query);
203 unreachable("trying to get results of unhandled query type");
241 unsigned query = firstQuery + i; local
242 uint64_t local_src_va = va + query * pool->stride;
249 uint64_t avail_va = va + pool->availability_offset + 4 * query;
    [all...]
  /external/mesa3d/src/gallium/drivers/ilo/
ilo_context.h 66 struct pipe_query *query; member in struct:ilo_context::__anon29557
  /external/mesa3d/src/gallium/drivers/nouveau/nv30/
nv30_screen.h 27 struct nouveau_object *query; member in struct:nv30_screen
  /external/oauth/core/src/main/java/net/oauth/client/
URLConnectionClient.java 60 String query = url.getQuery(); local
61 if (query != null && query.length() > 0) {
62 headers.append("?").append(query);
  /external/parameter-framework/asio-1.10.6/include/asio/ip/
resolver_service.hpp 43 /// The query type.
84 /// Resolve a query to a list of entries.
85 iterator_type resolve(implementation_type& impl, const query_type& query,
88 return service_impl_.resolve(impl, query, ec);
91 /// Asynchronously resolve a query to a list of entries.
95 async_resolve(implementation_type& impl, const query_type& query,
102 service_impl_.async_resolve(impl, query, init.handler);
  /external/python/cpython3/Lib/idlelib/idle_test/
test_query.py 1 """Test idlelib.query.
3 Non-gui tests for Query, SectionName, ModuleName, and HelpSource use
9 The appearance of the widgets is checked by the Query and
10 HelpSource htests. These are run by running query.py.
12 Coverage: 94% (100% for Query and SectionName).
21 from idlelib import query
27 "Test Query base class."
30 # Test the following Query methods.
31 entry_ok = query.Query.entry_o
    [all...]

Completed in 1322 milliseconds

<<11121314151617181920>>