HomeSort by relevance Sort by last modified time
    Searched refs:Query (Results 51 - 75 of 347) sorted by null

1 23 4 5 6 7 8 91011>>

  /art/tools/ahat/src/
RootedHandler.java 33 public void handle(Doc doc, Query query) throws IOException {
35 DominatedList.render(mSnapshot, doc, query, ROOTED_ID, mSnapshot.getRooted());
SubsetSelector.java 32 private Query mQuery;
38 * @param id - the name of the query parameter key that should hold
40 * @param query - The query for the current page. This is required so the
46 public SubsetSelector(Query query, String id, List<T> elements) {
47 mQuery = query;
49 mLimit = getSelectedLimit(query, id, elements.size());
65 * @param query the current page query
    [all...]
BitmapHandler.java 39 Query query = new Query(exchange.getRequestURI()); local
40 long id = query.getLong("id", 0);
  /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
  /packages/apps/Contacts/tests/src/com/android/contacts/test/mocks/
MockContentProvider.java 44 public static class Query {
62 private Query() {
66 private Query(UriMatcher matcher) {
71 public Query(Uri uri) {
80 public Query withProjection(String... projection) {
85 public Query withDefaultProjection(String... projection) {
90 public Query withAnyProjection() {
95 public Query withSelection(String selection, String... selectionArgs) {
101 public Query withAnySelection() {
106 public Query withSortOrder(String sortOrder)
516 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, method in class:MockContentProvider
524 Query query = iterator.next(); local
    [all...]
  /external/llvm/include/llvm/CodeGen/
LiveIntervalUnion.h 59 class Query;
109 /// Query interferences between a single live virtual register and a live
111 class Query {
123 Query(): LiveUnion(), VirtReg(), Tag(0), UserTag(0) {}
125 Query(LiveInterval *VReg, LiveIntervalUnion *LIU):
164 // query's live virtual register, up to maxInterferingRegs.
182 Query(const Query&) = delete;
183 void operator=(const Query&) = delete;
  /frameworks/support/content/src/android/support/content/
ContentPager.java 110 * {@link ContentResolver#query(Uri, String[], String, String[], String)}. If the underlying
141 * <p>Note that projection is ignored when determining the identity of a query. When
202 private final @GuardedBy("mContentLock") Set<Query> mActiveQueries = new HashSet<>();
221 * query argument creates a new Uri.
223 * @param queryRunner The query running to use. This provides a means of executing
241 public @Nullable Cursor runQueryInBackground(Query query) {
242 return loadContentInBackground(query);
247 public void onQueryFinished(Query query, Cursor cursor)
273 public @NonNull Query query( method in class:ContentPager
284 Query query = new Query(uri, projection, queryArgs, cancellationSignal, callback); local
616 void query(@NonNull Query query, @NonNull Callback callback); method in interface:ContentPager.QueryRunner
    [all...]
LoaderQueryRunner.java 50 public void query(final @NonNull Query query, @NonNull final Callback callback) { method in class:LoaderQueryRunner
51 if (DEBUG) Log.d(TAG, "Handling query: " + query);
56 if (DEBUG) Log.i(TAG, "Loading results for query: " + query);
57 checkArgument(id == query.getId(), "Id doesn't match query id.");
62 return callback.runQueryInBackground(query);
    [all...]
Query.java 35 * Encapsulates information related to calling {@link ContentResolver#query},
36 * including the logic determining the best query method to call.
38 public final class Query {
41 private static final String TAG = "Query";
55 Query(
84 * @return the id for this query. Derived from Uri as well as paging arguments.
117 return resolver.query(
125 if (DEBUG) Log.d(TAG, "Falling back to pre-O query method.");
126 return resolver.query(
135 if (DEBUG) Log.d(TAG, "Falling back to pre-jellybean query method.")
    [all...]
  /frameworks/support/content/tests/java/android/support/content/
LoaderQueryRunnerTest.java 74 public void onCursorReady(Query query, Cursor cursor) {
78 Query query = new Query( local
86 mRunner.query(query, mCallback);
89 mCallback.assertQueried(query.getId());
90 mCallback.assertReceivedContent(UNPAGED_URI, query.getId());
TestQueryCallback.java 40 private CollectorLatch<Query> mQueryLatch;
44 public @Nullable Cursor runQueryInBackground(Query query) {
45 mQueryLatch.accept(query);
47 extras.putParcelable(URI_KEY, query.getUri());
48 extras.putInt(URI_PAGE_ID, query.getId());
55 public void onQueryFinished(Query query, Cursor cursor) {
56 mReplyLatch.accept(new Pair<>(query.getId(), cursor));
70 mQueryLatch.assertHasItem(new Matcher<Query>() {
    [all...]
  /external/autotest/client/cros/cellular/
scpi.py 52 The SCPI driver must export: Query, Send, Reset and Close
60 def Query(self, command):
62 response = self.driver.Query(command)
83 error = self.Query('SYSTem:ERRor?')
88 if '-420' in error and 'Query UNTERMINATED' in error:
110 self.Query('*OPC?') # Wait for operation complete
131 result = self.Query('%s?' % (command,))
144 self.Query('*OPC?')
  /external/jmdns/src/javax/jmdns/impl/constants/
DNSOperationCode.java 13 * Query [RFC1035]
15 Query("Query", 0),
17 * IQuery (Inverse Query, Obsolete) [RFC3425]
19 IQuery("Inverse Query", 1),
  /frameworks/support/room/compiler/src/test/kotlin/android/arch/persistence/room/testing/
InProcessorTest.kt 19 import android.arch.persistence.room.Query
40 @android.arch.persistence.room.Query("foo")
50 .forAnnotations(Query::class)
  /art/tools/ahat/test/
PerformanceTest.java 50 Query query = new Query(DocString.uri(uri)); local
53 handler.handle(doc, query);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
DownloadManagerWrapper.java 20 import android.app.DownloadManager.Query;
84 public Cursor query(final Query query) { method in class:DownloadManagerWrapper
87 return mDownloadManager.query(query);
92 Log.e(TAG, "Can't query the download manager", e);
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/CodeGen/
LiveRegMatrix.h 54 std::unique_ptr<LiveIntervalUnion::Query[]> Queries;
140 /// Query a line of the assigned virtual register matrix directly.
142 /// This returns a reference to an internal Query data structure that is only
143 /// valid until the next query() call.
144 LiveIntervalUnion::Query &query(const LiveRange &LR, unsigned RegUnit);
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/CodeGen/
LiveRegMatrix.h 54 std::unique_ptr<LiveIntervalUnion::Query[]> Queries;
140 /// Query a line of the assigned virtual register matrix directly.
142 /// This returns a reference to an internal Query data structure that is only
143 /// valid until the next query() call.
144 LiveIntervalUnion::Query &query(const LiveRange &LR, unsigned RegUnit);
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/CodeGen/
LiveRegMatrix.h 54 std::unique_ptr<LiveIntervalUnion::Query[]> Queries;
140 /// Query a line of the assigned virtual register matrix directly.
142 /// This returns a reference to an internal Query data structure that is only
143 /// valid until the next query() call.
144 LiveIntervalUnion::Query &query(const LiveRange &LR, unsigned RegUnit);
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/CodeGen/
LiveRegMatrix.h 54 std::unique_ptr<LiveIntervalUnion::Query[]> Queries;
140 /// Query a line of the assigned virtual register matrix directly.
142 /// This returns a reference to an internal Query data structure that is only
143 /// valid until the next query() call.
144 LiveIntervalUnion::Query &query(const LiveRange &LR, unsigned RegUnit);
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/CodeGen/
LiveRegMatrix.h 54 std::unique_ptr<LiveIntervalUnion::Query[]> Queries;
140 /// Query a line of the assigned virtual register matrix directly.
142 /// This returns a reference to an internal Query data structure that is only
143 /// valid until the next query() call.
144 LiveIntervalUnion::Query &query(const LiveRange &LR, unsigned RegUnit);
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/CodeGen/
LiveRegMatrix.h 54 std::unique_ptr<LiveIntervalUnion::Query[]> Queries;
140 /// Query a line of the assigned virtual register matrix directly.
142 /// This returns a reference to an internal Query data structure that is only
143 /// valid until the next query() call.
144 LiveIntervalUnion::Query &query(const LiveRange &LR, unsigned RegUnit);
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/CodeGen/
LiveRegMatrix.h 54 std::unique_ptr<LiveIntervalUnion::Query[]> Queries;
140 /// Query a line of the assigned virtual register matrix directly.
142 /// This returns a reference to an internal Query data structure that is only
143 /// valid until the next query() call.
144 LiveIntervalUnion::Query &query(const LiveRange &LR, unsigned RegUnit);
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/CodeGen/
LiveRegMatrix.h 54 std::unique_ptr<LiveIntervalUnion::Query[]> Queries;
140 /// Query a line of the assigned virtual register matrix directly.
142 /// This returns a reference to an internal Query data structure that is only
143 /// valid until the next query() call.
144 LiveIntervalUnion::Query &query(const LiveRange &LR, unsigned RegUnit);
  /cts/tests/app/src/android/app/cts/
DownloadManagerTest.java 19 import android.app.DownloadManager.Query;
201 cursor = mDownloadManager.query(new Query().setFilterById(id));
370 Query query = new Query(); local
371 cursor = mDownloadManager.query(query);
407 Query query = new Query() local
420 Query query = new Query().setFilterById(downloadId); local
436 Query query = new Query().setFilterByStatus(status); local
469 Query query = new Query(); local
    [all...]

Completed in 230 milliseconds

1 23 4 5 6 7 8 91011>>