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

12 3 4 5 6 7 8 91011>>

  /frameworks/support/room/integration-tests/testapp/src/androidTest/java/androidx/room/integration/testapp/dao/
RawDao.java 35 UserAndAllPets getUserAndAllPets(SupportSQLiteQuery query);
38 LiveData<UserAndAllPets> getUserAndAllPetsObservable(SupportSQLiteQuery query);
41 User getUser(SupportSQLiteQuery query);
44 UserAndPet getUserAndPet(SupportSQLiteQuery query);
47 NameAndLastName getUserNameAndLastName(SupportSQLiteQuery query);
50 NameAndLastName getUserNameAndLastNameWithObserved(SupportSQLiteQuery query);
53 int count(SupportSQLiteQuery query);
56 List<User> getUserList(SupportSQLiteQuery query);
59 List<UserAndPet> getUserAndPetList(SupportSQLiteQuery query);
62 LiveData<List<UserAndPet>> getUserAndPetListObservable(SupportSQLiteQuery query);
    [all...]
  /art/tools/ahat/src/main/com/android/ahat/
AhatHandler.java 29 * Handle the given query, rendering the page to the given document.
31 void handle(Doc doc, Query query) throws IOException;
  /external/mesa3d/src/gallium/winsys/svga/drm/
vmw_query.h 33 /** Guest-backed query */
46 struct svga_winsys_gb_query *query);
50 struct svga_winsys_gb_query *query,
56 struct svga_winsys_gb_query *query,
63 struct svga_winsys_gb_query *query,
  /packages/apps/Launcher3/src/com/android/launcher3/allapps/search/
SearchAlgorithm.java 26 void doSearch(String query, AllAppsSearchBarController.Callbacks callback);
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
SuggestionCursorProvider.java 21 * Interface for objects that can produce a SuggestionCursor given a query.
34 * @param query The user query.
38 C getSuggestions(String query, int queryLimit);
SuggestionsProvider.java 20 * Provides a set of suggestion results for a query..
26 * Gets suggestions for a query.
28 * @param query The query.
29 * @param source The source to query. Must be non-null.
31 Suggestions getSuggestions(String query, Source source);
  /platform_testing/libraries/app-helpers/interfaces/common/src/android/platform/helpers/
IMapsHelper.java 23 * Best effort attempt to go to the query screen (if not currently there),
26 public void doSearch(String query);
IPlayStoreHelper.java 23 * Looks for the search bar or button by scrolling up or pressing back. It then enters a query,
26 public void doSearch(String query);
  /external/mesa3d/src/gallium/drivers/radeon/
r600_query.c 54 struct r600_query_sw *query = (struct r600_query_sw *)rquery; local
56 screen->fence_reference(screen, &query->fence, NULL);
57 FREE(query);
77 default: unreachable("query type does not correspond to winsys id");
84 struct r600_query_sw *query = (struct r600_query_sw *)rquery; local
86 switch(query->b.type) {
91 query->begin_result = rctx->num_draw_calls;
94 query->begin_result = rctx->num_spill_draw_calls;
97 query->begin_result = rctx->num_compute_calls;
100 query->begin_result = rctx->num_spill_compute_calls
179 struct r600_query_sw *query = (struct r600_query_sw *)rquery; local
282 struct r600_query_sw *query = (struct r600_query_sw *)rquery; local
343 struct r600_query_sw *query; local
358 struct r600_query_hw *query = (struct r600_query_hw *)rquery; local
483 struct r600_query_hw *query = CALLOC_STRUCT(r600_query_hw); local
743 struct r600_query_hw *query = (struct r600_query_hw *)ctx->render_cond; local
856 struct r600_query_hw *query = (struct r600_query_hw *)rquery; local
885 struct r600_query_hw *query = (struct r600_query_hw *)rquery; local
1125 struct r600_query_hw *query = (struct r600_query_hw *)rquery; local
1376 struct r600_query_hw *query = (struct r600_query_hw *)rquery; local
1540 struct r600_query_hw *query; local
1551 struct r600_query_hw *query; local
1575 struct r600_query_hw *query; local
    [all...]
  /device/generic/goldfish/camera/
QemuClient.cpp 42 * Qemu query
91 /* Query name cannot be NULL or an empty string. */
93 ALOGE("%s: NULL or an empty string is passed as query name.",
104 /* Preallocated buffer was too small. Allocate a bigger query buffer. */
107 ALOGE("%s: Unable to allocate %zu bytes for query buffer",
114 /* At this point mQuery buffer is big enough for the query. */
126 /* Save query completion status. */
138 ALOGE("%s: Invalid reply to the query", __FUNCTION__);
149 ALOGE("%s: Invalid query reply: '%s'", __FUNCTION__, mReplyBuffer);
159 ALOGE("%s: Invalid query reply: '%s'", __FUNCTION__, mReplyBuffer)
    [all...]
  /development/samples/SampleSyncAdapter/samplesyncadapter_server/model/
datastore.py 40 query = cls.gql('WHERE handle = :1', username)
41 return query.get()
47 query = cls.gql('WHERE handle = :1', username)
48 return query.get().updated
54 query = cls.gql('WHERE handle = :1', username)
55 return query.get().key().id()
61 query = cls.gql('WHERE handle = :1', username)
62 return query.get().status
  /external/autotest/frontend/migrations/
062_drone_sets_unique.py 40 query = ('SELECT * FROM afe_drone_sets_drones '
42 rows = manager.execute(query)
  /frameworks/base/packages/StatementService/src/com/android/statementservice/retriever/
AbstractAssetMatcher.java 22 * An asset matcher that can match asset with the given query.
40 * <p> For web namespace, {@code query} will match assets that have the same 'site' field.
42 * <p> For Android namespace, {@code query} will match assets that have the same
46 public static AbstractAssetMatcher createMatcher(String query)
48 return AssetMatcherFactory.create(query);
WebAssetMatcher.java 26 public WebAssetMatcher(WebAsset query) {
27 mQuery = query;
  /frameworks/support/room/compiler/src/main/kotlin/androidx/room/solver/binderprovider/
InstantQueryResultBinderProvider.kt 22 import androidx.room.solver.query.result.InstantQueryResultBinder
23 import androidx.room.solver.query.result.QueryResultBinder
27 override fun provide(declared: DeclaredType, query: ParsedQuery): QueryResultBinder {
29 context.typeAdapterStore.findQueryResultAdapter(declared, query))
  /packages/apps/QuickSearchBox/benchmarks/src/com/android/quicksearchbox/benchmarks/
ApplicationsLatency.java 51 for (String query : queries) {
52 checkSource("APPS", APPS_COMPONENT, query);
ContactsLatency.java 50 for (String query : queries) {
51 checkSource("CONTACTS", CONTACTS_COMPONENT, query);
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/google/
GoogleSource.java 30 * Called by QSB to get web suggestions for a query.
32 SourceResult queryInternal(String query);
35 * Called by external apps to get web suggestions for a query.
37 SourceResult queryExternal(String query);
AbstractGoogleSource.java 55 * Called by QSB to get web suggestions for a query.
58 public abstract SourceResult queryInternal(String query);
61 * Called by external apps to get web suggestions for a query.
64 public abstract SourceResult queryExternal(String query);
102 public SourceResult getSuggestions(String query, int queryLimit) {
103 return emptyIfNull(queryInternal(query), query);
106 public SourceResult getSuggestionsExternal(String query) {
107 return emptyIfNull(queryExternal(query), query);
    [all...]
  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
QueryParameterUtils.java 36 String query = uri.getEncodedQuery(); local
37 if (query == null) {
41 int queryLength = query.length();
47 index = query.indexOf(parameter, index);
58 if (query.charAt(index) == '=') {
64 int ampIndex = query.indexOf('&', index);
66 value = query.substring(index);
68 value = query.substring(index, ampIndex);
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/
compquery.py 22 from . import query
26 class ComponentQuery(query.PolicyQuery):
  /device/google/cuttlefish_common/guest/hals/camera/
QemuClient.cpp 38 * Qemu query
80 /* Query name cannot be NULL or an empty string. */
82 ALOGE("%s: NULL or an empty string is passed as query name.", __FUNCTION__);
92 /* Preallocated buffer was too small. Allocate a bigger query buffer. */
95 ALOGE("%s: Unable to allocate %zu bytes for query buffer", __FUNCTION__,
102 /* At this point mQuery buffer is big enough for the query. */
113 /* Save query completion status. */
126 ALOGE("%s: Invalid reply to the query", __FUNCTION__);
137 ALOGE("%s: Invalid query reply: '%s'", __FUNCTION__, mReplyBuffer);
147 ALOGE("%s: Invalid query reply: '%s'", __FUNCTION__, mReplyBuffer)
    [all...]
  /packages/apps/Dialer/java/com/android/dialer/searchfragment/common/
QueryFilteringUtil.java 41 * Returns true if the query is of T9 format and the name's T9 representation belongs to the query
54 * used first to check if the name matches the query. If they don't match, the non-Latin alphabet
66 public static boolean nameMatchesT9Query(String query, String name, Context context) {
67 if (!T9_PATTERN.matcher(query).matches()) {
71 query = digitsOnly(query);
72 if (getIndexOfT9Substring(query, name, context) != -1) {
81 for (int i = 0; i < names.length && queryIndex < query.length(); i++) {
86 if (getDigit(names[i].charAt(0), context) == query.charAt(queryIndex))
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/providers/
SuggestionsProvider.java 57 * Minimum length of query before we start showing contacts suggestions.
66 public Cursor query(String query) { method in class:SuggestionsProvider
74 if (query != null) {
75 // Tokenize the query.
76 String[] tokens = TextUtils.split(query,
78 // There are multiple tokens, so query on the last token only.
80 query = tokens[tokens.length - 1];
91 query = query.trim()
126 public ContactsCursor query(String query) { method in class:SuggestionsProvider.ContactsCursor
157 final StringBuilder query = new StringBuilder(); local
    [all...]
  /external/tensorflow/tensorflow/contrib/makefile/
gen_file_lists.sh 19 bazel query 'kind("source file", deps(//tensorflow/core:android_tensorflow_lib))' | \
25 bazel query 'kind("generated file", deps(//tensorflow/core:proto_text))' | \
31 bazel query 'kind("source file", deps(//tensorflow/tools/proto_text:gen_proto_text_functions))' | \
39 bazel query 'kind("generated file", deps(//tensorflow/tools/proto_text:gen_proto_text_functions))' | \
45 bazel query 'kind("generated file", deps(//tensorflow/tools/proto_text:gen_proto_text_functions))' | \

Completed in 2726 milliseconds

12 3 4 5 6 7 8 91011>>