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

<<11121314151617181920>>

  /external/libchrome/base/test/
trace_event_analyzer.cc 206 QueryNode::QueryNode(const Query& query) : query_(query) {
212 // Query
214 Query::Query(TraceEventMember member)
222 Query::Query(TraceEventMember member, const std::string& arg_name)
231 Query::Query(const Query& query
    [all...]
  /external/skia/third_party/harfbuzz/
README 25 if ! ( dpkg-query -W -f'${Status}' "$package" 2>/dev/null | \
  /external/skqp/third_party/harfbuzz/
README 25 if ! ( dpkg-query -W -f'${Status}' "$package" 2>/dev/null | \
  /external/wpa_supplicant_8/hs20/server/www/
users.php 22 $row = $db->query("SELECT dump FROM eventlog WHERE rowid=$id")->fetch();
41 $row = $db->query("SELECT $mo FROM users WHERE rowid=$id")->fetch();
49 $row = $db->query("SELECT cert_pem FROM users WHERE rowid=$id")->fetch();
128 $row = $db->query("SELECT rowid,* FROM users WHERE rowid=$id")->fetch();
267 $res = $db->query("SELECT rowid,* FROM eventlog ORDER BY timestamp DESC LIMIT $limit");
269 $res = $db->query("SELECT rowid,* FROM eventlog WHERE (user='$user' OR user='$osu_user') AND realm='$realm' ORDER BY timestamp DESC LIMIT $limit");
271 $res = $db->query("SELECT rowid,* FROM eventlog WHERE user='$user' AND realm='$realm' ORDER BY timestamp DESC LIMIT $limit");
308 $res = $db->query('SELECT rowid,* FROM users WHERE phase2=1');
  /frameworks/av/packages/MediaComponents/src/com/android/media/
IMediaSession2.aidl 55 void prepareFromSearch(IMediaController2 caller, String query, in Bundle extras);
58 void playFromSearch(IMediaController2 caller, String query, in Bundle extras);
80 void search(IMediaController2 caller, String query, in Bundle extras);
81 void getSearchResult(IMediaController2 caller, String query, int page, int pageSize,
  /frameworks/base/apct-tests/perftests/core/src/android/graphics/perftests/
PaintHasGlyphPerfTest.java 55 public PaintHasGlyphPerfTest(String metricKey, String query) {
56 mQuery = query;
  /frameworks/native/libs/nativewindow/include/vndk/
window.h 72 * Users of the set_buffer_count ANativeWindow method should query this
75 * and this query returns M then N+M buffers should be requested via
81 * 1. Query M = min undequeued buffers
132 * query(..., NATIVE_WINDOW_TRANSFORM_HINT, &hintTransform);
176 int ANativeWindow_query(const ANativeWindow* window, ANativeWindowQuery query, int* value);
177 int ANativeWindow_queryf(const ANativeWindow* window, ANativeWindowQuery query, float* value);
  /frameworks/support/room/compiler/src/main/kotlin/androidx/room/solver/query/parameter/
BasicQueryParameterAdapter.kt 17 package androidx.room.solver.query.parameter
23 * Knows how to convert a query parameter into arguments
  /hardware/google/interfaces/media/c2/1.0/
IConfigurable.hal 37 * best effort: the object must query all supported parameters and skip
41 * \note Parameter values do not depend on the order of query.
58 query(
149 * @return outFields Vector containing supported values and query result
  /hardware/qcom/audio/hal/voice_extn/
voice_extn.h 30 struct str_parms *query,
66 struct str_parms *query __unused,
  /libcore/ojluni/src/test/java/time/test/java/time/format/
TestCharLiteralParser.java 114 assertEquals(parsed.query(TemporalQueries.chronology()), null);
115 assertEquals(parsed.query(TemporalQueries.zoneId()), null);
  /packages/apps/Dialer/java/com/android/dialer/searchfragment/cp2/
SearchContactsCursor.java 56 public boolean updateQuery(@Nullable String query) {
57 contactFilterCursor.filter(query, context);
  /packages/apps/TV/src/com/android/tv/search/
ProgramGuideSearchFragment.java 116 public boolean onQueryTextChange(String query) {
117 searchAndRefresh(query);
122 public boolean onQueryTextSubmit(String query) {
123 searchAndRefresh(query);
189 private void searchAndRefresh(String query) {
195 mSearchTask = new SearchTask(query);
202 public SearchTask(String query) {
203 mQuery = query;
220 "searchAndRefresh query="
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
MaterialSearchSuggestionsList.java 70 public void setQuery(String query) {
71 mQuery = query;
76 mQueryTask.execute(query);
97 // When we go from gone to visible, re-query for suggestions in case they changed.
118 String query = strings[0]; local
119 if (query == null) {
120 query = "";
126 c = mSuggestionsProvider.query(query);
  /packages/providers/ContactsProvider/test_common/src/com/android/providers/contacts/testutil/
ContactUtil.java 49 Cursor cursor = resolver.query(uri, projection, null, null, null);
62 Cursor cursor = resolver.query(uri, projection, null, null, null);
  /prebuilts/jdk/jdk8/darwin-x86/sample/scripting/scriptpad/src/resources/
mm.js 140 function queryNames(objName, query) {
142 if (query == undefined) query = null;
143 return mbeanConnection().queryNames(objName, query);
145 queryNames.docString = "returns QueryNames using given ObjectName and optional query";
153 function queryMBeans(objName, query) {
155 if (query == undefined) query = null;
156 return mbeanConnection().queryMBeans(objName, query);
158 queryMBeans.docString = "return MBeans using given ObjectName and optional query";
    [all...]
  /prebuilts/jdk/jdk8/linux-x86/sample/scripting/scriptpad/src/resources/
mm.js 140 function queryNames(objName, query) {
142 if (query == undefined) query = null;
143 return mbeanConnection().queryNames(objName, query);
145 queryNames.docString = "returns QueryNames using given ObjectName and optional query";
153 function queryMBeans(objName, query) {
155 if (query == undefined) query = null;
156 return mbeanConnection().queryMBeans(objName, query);
158 queryMBeans.docString = "return MBeans using given ObjectName and optional query";
    [all...]
  /system/netd/server/dns/
DnsTlsTransport.h 53 // Given a |query|, this method sends it to the server and returns the result asynchronously.
54 std::future<Result> query(const netdutils::Slice query) EXCLUDES(mLock);
87 // Send a query to the socket.
88 bool sendQuery(const DnsTlsQueryMap::Query q) REQUIRES(mLock);
  /test/vti/dashboard/src/main/java/com/android/vts/util/
UrlUtil.java 64 String query = url.getQuery(); local
68 URI uri = new URI(scheme, userInfo, host, port, path, query, fragment);
  /test/vti/test_serving/gae/webapp/src/scheduler/
job_heartbeat.py 42 job_query = model.JobModel.query(
65 device_query = model.DeviceModel.query(
  /packages/apps/Messaging/src/com/android/messaging/util/
ContactUtil.java 67 // An optional _id column to query results that need to be displayed in a list view.
73 // Lookup key column index specific to frequent contacts query.
232 // query parameter that removes duplicate (raw) numbers. Unfortunately, we can't use that
296 public static CursorQueryData filterPhones(final Context context, final String query) {
297 return filterPhonesInternal(context, Phone.CONTENT_FILTER_URI, query, Directory.DEFAULT);
304 final String query) {
305 return filterPhonesInternal(context, Phone.ENTERPRISE_CONTENT_FILTER_URI, query,
310 final Uri phoneFilterBaseUri, final String query, final long directoryId) {
314 Uri phoneFilterUri = buildDirectorySearchUri(phoneFilterBaseUri, query, directoryId);
354 * usage scenario, we should only do email search after user typed in a query indicatin
    [all...]
  /art/tools/ahat/src/main/com/android/ahat/
SiteHandler.java 41 public void handle(Doc doc, Query query) throws IOException {
42 int id = query.getInt("id", 0);
49 SitePrinter.printSite(mSnapshot, doc, query, ALLOCATION_SITE_ID, site);
80 HeapTable.render(doc, query, SITES_CALLED_ID, table, mSnapshot, children);
97 = new SubsetSelector(query, OBJECTS_ALLOCATED_ID, infos);
  /cts/tests/tests/provider/src/android/provider/cts/
MediaStore_Audio_PlaylistsTest.java 43 assertNotNull(c = mContentResolver.query(
50 assertNotNull(c = mContentResolver.query(
60 assertNull(mContentResolver.query(Playlists.getContentUri(volume), null, null, null,
78 // query
79 Cursor c = mContentResolver.query(uri, null, null, null, null);
98 c = mContentResolver.query(uri, null, null, null, null);
  /external/libmojo/mojo/public/java/bindings/src/org/chromium/mojo/bindings/
InterfaceControlMessagesHelper.java 76 RunMessageParams query = RunMessageParams.deserialize(payload); local
79 if (query.input.which() == RunInput.Tag.QueryVersion) {
99 RunOrClosePipeMessageParams query = RunOrClosePipeMessageParams.deserialize(payload); local
100 if (query.input.which() == RunOrClosePipeInput.Tag.RequireVersion) {
101 return query.input.getRequireVersion().version <= manager.getVersion();
  /external/mesa3d/src/gallium/drivers/ilo/
ilo_context.c 73 struct pipe_query *query,
80 ilo->render_condition.query = query;
91 if (!ilo->render_condition.query)
106 if (ilo->base.get_query_result(&ilo->base, ilo->render_condition.query,

Completed in 1156 milliseconds

<<11121314151617181920>>