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

<<11121314151617181920>>

  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
MaterialSearchViewController.java 50 // into the search query). Both the search action bar and the suggestion list are visible.
207 // For non-search view mode, clear the query term for search
264 public void onQueryTextChanged(String query) {
265 mSearchSuggestionList.setQuery(query);
279 public void onSearchPerformed(String query) {
280 query = query.trim();
281 if (!TextUtils.isEmpty(query)) {
283 mController.executeSearch(query);
304 public void saveRecentQuery(String query) {
    [all...]
  /external/tensorflow/tensorflow/contrib/data/python/kernel_tests/
sql_dataset_op_test.py 36 self.query, output_types).repeat(num_repeats)
46 self.query = array_ops.placeholder(dtypes.string, shape=[])
104 self.query: "SELECT first_name, last_name, motto FROM students "
113 # Test that SqlDataset works on a join query.
121 self.query:
140 self.query:
159 self.query: "SELECT first_name, last_name, motto FROM students "
169 self.query: "SELECT first_name, last_name, state FROM people "
187 self.query: "SELECT first_name, last_name, motto FROM students "
203 self.query: "SELECT first_name, last_name, motto FROM students
    [all...]
  /external/syslinux/gpxe/src/net/udp/
dns.c 69 /** Current query packet */
70 struct dns_query query; member in struct:dns_request
71 /** Location of query info structure within current packet
73 * The query info structure is located immediately after the
101 * Compare DNS reply name against the query name from the original request
112 const char *qname = dns->query.payload;
157 * Find an RR in a reply packet corresponding to our query
291 /* Increment query ID */
292 dns->query.dns.id = htons ( ++qid );
294 DBGC ( dns, "DNS %p sending query ID %d\n", dns, qid )
    [all...]
  /frameworks/base/core/java/android/app/
SearchManager.java 85 * to obtain the query string from Intent.ACTION_SEARCH.
87 public final static String QUERY = "query";
93 * to obtain the query string typed in by the user.
94 * This may be different from the value of {@link #QUERY}
96 * In that case, {@link #QUERY} will contain the value of
125 * to obtain the keycode that the user used to trigger this query. It will be zero if the
140 * the initial query should be selected when the global search activity is started, so
141 * that the user can easily replace it with another query.
177 * Flag to specify that the entry can be used for query refinement, i.e., the query tex
    [all...]
  /frameworks/native/libs/vr/libbufferhubqueue/tests/
buffer_hub_queue_producer-test.cpp 189 EXPECT_EQ(NO_ERROR, mProducer->query(NATIVE_WINDOW_WIDTH, &value));
192 EXPECT_EQ(NO_ERROR, mProducer->query(NATIVE_WINDOW_HEIGHT, &value));
195 EXPECT_EQ(NO_ERROR, mProducer->query(NATIVE_WINDOW_FORMAT, &value));
199 mProducer->query(NATIVE_WINDOW_MIN_UNDEQUEUED_BUFFERS, &value));
204 mProducer->query(NATIVE_WINDOW_CONSUMER_RUNNING_BEHIND, &value));
208 mProducer->query(NATIVE_WINDOW_CONSUMER_USAGE_BITS, &value));
215 // One past the end of the last 'query' enum value. Update this if we add more
221 EXPECT_EQ(BAD_VALUE, mProducer->query(/*what*/ -1, &value));
222 EXPECT_EQ(BAD_VALUE, mProducer->query(/*what*/ 0xDEADBEEF, &value));
224 mProducer->query(NATIVE_WINDOW_QUERY_LAST_OFF_BY_ONE, &value))
    [all...]
  /art/tools/ahat/src/main/com/android/ahat/
BitmapHandler.java 39 Query query = new Query(exchange.getRequestURI()); local
40 long id = query.getLong("id", 0);
DominatedList.java 39 * @param query the current page query
44 Doc doc, Query query, String id, Collection<AhatInstance> instances) {
47 HeapTable.render(doc, query, id, new TableConfig(), snapshot, insts);
SitePrinter.java 27 public static void printSite(AhatSnapshot snapshot, Doc doc, Query query, String id, Site site) {
61 HeapTable.render(doc, query, id, table, snapshot, path);
  /art/tools/ahat/src/test/com/android/ahat/
PerformanceTest.java 50 Query query = new Query(DocString.uri(uri)); local
53 handler.handle(doc, query);
  /cts/hostsidetests/appsecurity/test-apps/EphemeralTestApp/EphemeralApp1/src/com/android/cts/ephemeralapp1/
EphemeralActivity.java 41 final String query = intent.getStringExtra(SearchManager.QUERY); local
44 suggestions.saveRecentQuery(query, null);
  /cts/hostsidetests/appsecurity/test-apps/EphemeralTestApp/EphemeralApp2/src/com/android/cts/ephemeralapp2/
EphemeralActivity.java 40 final String query = intent.getStringExtra(SearchManager.QUERY); local
43 suggestions.saveRecentQuery(query, null);
  /cts/hostsidetests/appsecurity/test-apps/EphemeralTestApp/NormalApp/src/com/android/cts/normalapp/
NormalActivity.java 43 final String query = intent.getStringExtra(SearchManager.QUERY); local
46 suggestions.saveRecentQuery(query, null);
  /cts/tests/tests/permission2/src/android/permission2/cts/
ContactsProviderTest.java 33 * Verifies that query(ContactsContract.Contacts.CONTENT_URI) only requires
38 getContext().getContentResolver().query(ContactsContract.Contacts.CONTENT_URI,
59 * Verifies that query(ContactsContract.Profile.CONTENT_URI) only requires
64 getContext().getContentResolver().query(ContactsContract.Profile.CONTENT_URI,
  /cts/tests/tests/provider/src/android/provider/cts/
Settings_SystemTest.java 70 StringBuilder query = new StringBuilder(); local
71 query.append("appops get ");
72 query.append(getInstrumentation().getContext().getPackageName());
73 query.append(" android:write_settings");
74 String queryStr = query.toString();
93 * first query the exist settings in System table, and then insert five
100 // first query exist rows
101 Cursor c = cr.query(System.CONTENT_URI, null, null, null, null);
121 c = cr.query(System.CONTENT_URI, null, null, null, null);
136 c = cr.query(System.CONTENT_URI, null, null, null, null)
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/contacts/
ContactsContract_DumpFileProviderTest.java 79 mResolver.query(uri, null, null, null, null);
85 mResolver.query(uri, null, null, null, null);
  /developers/build/prebuilts/gradle/BasicContactables/Application/src/main/java/com/example/android/basiccontactables/
MainActivity.java 28 * and uses it as a query to search the contacts database via the Contactables
34 public static final String QUERY_KEY = "query";
61 // SearchManager.QUERY is the key that a SearchManager will use to send a query string
63 String query = intent.getStringExtra(SearchManager.QUERY); local
65 // We need to create a bundle containing the query string to send along to the
68 bundle.putString(QUERY_KEY, query);
72 // Start the loader with the new query, and an object that will handle all callbacks.
  /developers/samples/android/content/contacts/BasicContactables/Application/src/main/java/com/example/android/basiccontactables/
MainActivity.java 28 * and uses it as a query to search the contacts database via the Contactables
34 public static final String QUERY_KEY = "query";
61 // SearchManager.QUERY is the key that a SearchManager will use to send a query string
63 String query = intent.getStringExtra(SearchManager.QUERY); local
65 // We need to create a bundle containing the query string to send along to the
68 bundle.putString(QUERY_KEY, query);
72 // Start the loader with the new query, and an object that will handle all callbacks.
  /development/samples/BusinessCard/src/com/example/android/businesscard/
ContactAccessorSdk3_4.java 57 Cursor cursor = contentResolver.query(contactUri,
68 cursor = contentResolver.query(phoneUri,
ContactAccessorSdk5.java 63 Cursor cursor = contentResolver.query(contactUri,
75 cursor = contentResolver.query(Phone.CONTENT_URI,
  /development/samples/browseable/BasicContactables/src/com.example.android.basiccontactables/
MainActivity.java 28 * and uses it as a query to search the contacts database via the Contactables
34 public static final String QUERY_KEY = "query";
61 // SearchManager.QUERY is the key that a SearchManager will use to send a query string
63 String query = intent.getStringExtra(SearchManager.QUERY); local
65 // We need to create a bundle containing the query string to send along to the
68 bundle.putString(QUERY_KEY, query);
72 // Start the loader with the new query, and an object that will handle all callbacks.
  /external/autotest/frontend/
setup_test_environment.py 80 for query in connection.queries:
81 print query['sql'] + ';\n'
  /external/autotest/server/
afe_urls.py 73 scheme, netloc, path, query, _fragment = self._root_url_parts
76 scheme, netloc, path, query, fragment).geturl()
  /external/caliper/examples/src/main/java/examples/
ContainsBenchmark.java 55 for (Object query : queries) {
56 set.contains(query);
  /external/deqp/modules/gles2/functional/
es2fImplementationLimitTests.cpp 45 // Query function template.
47 T query (const glw::Functions& gl, deUint32 param);
81 // Query function implementations.
83 GLint query<GLint> (const glw::Functions& gl, deUint32 param) function in namespace:deqp::gles2::Functional::LimitQuery
91 GLfloat query<GLfloat> (const glw::Functions& gl, deUint32 param) function in namespace:deqp::gles2::Functional::LimitQuery
99 NegInt query<NegInt> (const glw::Functions& gl, deUint32 param) function in namespace:deqp::gles2::Functional::LimitQuery
101 return NegInt(query<GLint>(gl, param));
105 Boolean query<Boolean> (const glw::Functions& gl, deUint32 param) function in namespace:deqp::gles2::Functional::LimitQuery
113 FloatRange query<FloatRange> (const glw::Functions& gl, deUint32 param) function in namespace:deqp::gles2::Functional::LimitQuery
159 const T value = query<T>(m_context.getRenderContext().getFunctions(), m_limit)
    [all...]
  /external/freetype/src/cache/
ftccache.h 101 FT_Pointer query,
183 FT_Pointer query,
190 FT_Pointer query,
210 #define FTC_CACHE_LOOKUP_CMP( cache, nodecmp, hash, query, node, error ) \
234 _nodcomp( _node, query, _cache, &_list_changed ) ) \
279 error = FTC_Cache_NewNode( _cache, _hash, query, &_node ); \
287 #define FTC_CACHE_LOOKUP_CMP( cache, nodecmp, hash, query, node, error ) \
289 error = FTC_Cache_Lookup( FTC_CACHE( cache ), hash, query, \

Completed in 1419 milliseconds

<<11121314151617181920>>