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

1 2 3 4 5 6 78 91011>>

  /frameworks/support/samples/SupportContentDemos/src/main/java/com/example/android/support/content/demos/
ContentPagerDemoActivity.java 26 import android.support.content.Query;
172 mPager.query(mUri, null, ContentPager.createArgs(offset, mPageSize), null, this);
201 public void onCursorReady(@NonNull Query query, Cursor cursor) {
203 msg("Content query returned a null cursor: " + query.getUri());
206 mCurrentPage = query.getOffset() / mPageSize;
  /packages/apps/Contacts/tests/src/com/android/contacts/activities/
PeopleActivityTest.java 40 import com.android.contacts.test.mocks.MockContentProvider.Query;
76 // The ContactsApplication performs this getType query to warm up the provider - see
131 Query query = mContactsProvider local
141 query.returnRow(values);
  /packages/apps/ManagedProvisioning/tests/instrumentation/src/com/android/managedprovisioning/task/
DownloadPackageTaskTest.java 34 import android.app.DownloadManager.Query;
193 when(mDownloadManager.query(any(Query.class))).thenReturn(cursor);
  /prebuilts/go/darwin-x86/src/database/sql/driver/
driver.go 90 // first prepare a query, execute the statement, and then close the
97 Exec(query string, args []Value) (Result, error)
103 // first prepare a query, execute the statement, and then close the
110 ExecContext(ctx context.Context, query string, args []NamedValue) (Result, error)
115 // If a Conn does not implement Queryer, the sql package's DB.Query will
116 // first prepare a query, execute the statement, and then close the
119 // Query may return ErrSkip.
123 Query(query string, args []Value) (Rows, error)
128 // If a Conn does not implement QueryerContext, the sql package's DB.Query wil
    [all...]
  /prebuilts/go/linux-x86/src/database/sql/driver/
driver.go 90 // first prepare a query, execute the statement, and then close the
97 Exec(query string, args []Value) (Result, error)
103 // first prepare a query, execute the statement, and then close the
110 ExecContext(ctx context.Context, query string, args []NamedValue) (Result, error)
115 // If a Conn does not implement Queryer, the sql package's DB.Query will
116 // first prepare a query, execute the statement, and then close the
119 // Query may return ErrSkip.
123 Query(query string, args []Value) (Rows, error)
128 // If a Conn does not implement QueryerContext, the sql package's DB.Query wil
    [all...]
  /cts/tests/tests/netsecpolicy/src/android/security/
NetworkSecurityPolicyTestBase.java 237 Cursor c = downloadManager.query(
238 new DownloadManager.Query().setFilterById(downloadId));
261 DownloadManager.Query query = new DownloadManager.Query(); local
262 cursor = downloadManager.query(query);
  /frameworks/opt/chips/src/com/android/ex/chips/
DropdownChipLayouter.java 30 import com.android.ex.chips.Queries.Query;
67 private Query mQuery;
77 public void setQuery(Query query) {
78 mQuery = query;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
winevt.h 360 LPCWSTR Query,
522 LPCWSTR Query,
560 LPCWSTR Query,
wmiatlprov.h 32 HRESULT WINAPI ExecQuery(const BSTR QueryLanguage,const BSTR Query,__LONG32 lFlags,IWbemContext *pCtx,IEnumWbemClassObject **ppEnum) {return WBEM_E_NOT_SUPPORTED;};
33 HRESULT WINAPI ExecNotificationQuery(const BSTR QueryLanguage,const BSTR Query,__LONG32 lFlags,IWbemContext *pCtx,IEnumWbemClassObject **ppEnum) {return WBEM_E_NOT_SUPPORTED;};
34 HRESULT WINAPI ExecNotificationQueryAsync(const BSTR QueryLanguage,const BSTR Query,__LONG32 lFlags,IWbemContext *pCtx,IWbemObjectSink *pResponseHandler) {return WBEM_E_NOT_SUPPORTED;};
  /art/tools/ahat/src/
SiteHandler.java 40 public void handle(Doc doc, Query query) throws IOException {
41 int id = query.getInt("id", 0);
42 int depth = query.getInt("depth", 0);
49 SitePrinter.printSite(mSnapshot, doc, query, ALLOCATION_SITE_ID, site);
79 HeapTable.render(doc, query, SITES_CALLED_ID, table, mSnapshot, children);
96 = new SubsetSelector(query, OBJECTS_ALLOCATED_ID, infos);
  /device/linaro/bootloader/edk2/NetworkPkg/HttpBootDxe/
HttpBootDhcp4.h 232 CHAR8 *Query;
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
OpenHelper.java 73 final Cursor cursor = downManager.query(new DownloadManager.Query().setFilterById(id));
110 .query(headersUri, null, null, null, null);
126 final Cursor cursor = context.getContentResolver().query(uri, new String[]{Constants.UID},
  /prebuilts/go/darwin-x86/src/database/sql/
ctxutil.go 13 func ctxDriverPrepare(ctx context.Context, ci driver.Conn, query string) (driver.Stmt, error) {
15 return ciCtx.PrepareContext(ctx, query)
17 si, err := ci.Prepare(query)
29 func ctxDriverExec(ctx context.Context, execer driver.Execer, query string, nvdargs []driver.NamedValue) (driver.Result, error) {
31 return execerCtx.ExecContext(ctx, query, nvdargs)
43 return execer.Exec(query, dargs)
46 func ctxDriverQuery(ctx context.Context, queryer driver.Queryer, query string, nvdargs []driver.NamedValue) (driver.Rows, error) {
48 ret, err := queryerCtx.QueryContext(ctx, query, nvdargs)
61 return queryer.Query(query, dargs
    [all...]
  /prebuilts/go/linux-x86/src/database/sql/
ctxutil.go 13 func ctxDriverPrepare(ctx context.Context, ci driver.Conn, query string) (driver.Stmt, error) {
15 return ciCtx.PrepareContext(ctx, query)
17 si, err := ci.Prepare(query)
29 func ctxDriverExec(ctx context.Context, execer driver.Execer, query string, nvdargs []driver.NamedValue) (driver.Result, error) {
31 return execerCtx.ExecContext(ctx, query, nvdargs)
43 return execer.Exec(query, dargs)
46 func ctxDriverQuery(ctx context.Context, queryer driver.Queryer, query string, nvdargs []driver.NamedValue) (driver.Rows, error) {
48 ret, err := queryerCtx.QueryContext(ctx, query, nvdargs)
61 return queryer.Query(query, dargs
    [all...]
  /prebuilts/maven_repo/android/android/arch/persistence/room/common/1.0.0-alpha10/
common-1.0.0-alpha10.jar 
  /external/swiftshader/src/OpenGL/libGLESv2/
Android.mk 39 Query.cpp \
Context.h 69 class Query;
420 gl::BindingPointer<Query> activeQuery[QUERY_TYPE_COUNT];
576 void deleteQuery(GLuint query);
610 void beginQuery(GLenum target, GLuint query);
629 Query *getQuery(GLuint handle) const;
730 Query *createQuery(GLuint handle, GLenum type);
745 gl::NameSpace<Query> mQueryNameSpace;
  /packages/providers/DownloadProvider/ui/src/com/android/providers/downloads/ui/
TrampolineActivity.java 24 import android.app.DownloadManager.Query;
78 final Cursor cursor = dm.query(new Query().setFilterById(id));
  /prebuilts/go/darwin-x86/src/net/url/
example_test.go 40 q := u.Query()
  /prebuilts/go/linux-x86/src/net/url/
example_test.go 40 q := u.Query()
  /external/ims/rcs/presencepolling/src/com/android/service/ims/presence/
CapabilityPolling.java 478 EABContactManager.Query baseQuery = new EABContactManager.Query()
480 EABContactManager.Query.ORDER_ASCENDING);
482 logger.debug("doCapabilityDiscovery.query:\n" + baseQuery);
483 cursor = mEABContactManager.query(baseQuery);
576 EABContactManager.Query baseQuery = new EABContactManager.Query()
579 EABContactManager.Query.ORDER_ASCENDING);
584 logger.debug("updateObsoleteItems.query:\n" + baseQuery);
585 cursor = mEABContactManager.query(baseQuery)
    [all...]
  /frameworks/support/room/compiler/src/test/kotlin/android/arch/persistence/room/solver/
CustomTypeConverterResolutionTest.kt 25 import android.arch.persistence.room.Query
249 addAnnotation(AnnotationSpec.builder(Query::class.java).apply {
258 addAnnotation(AnnotationSpec.builder(Query::class.java).apply {
  /external/swiftshader/src/D3D9/
Direct3DDevice9.hpp 34 struct Query;
75 long __stdcall CreateQuery(D3DQUERYTYPE type, IDirect3DQuery9 **query) override;
186 void removeQuery(sw::Query *query);
187 void addQuery(sw::Query *query);
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
RegAllocBasic.cpp 241 // Cache an interferece query for each physical reg
242 Queries.reset(new LiveIntervalUnion::Query[PhysReg2LiveUnion.numRegs()]);
370 if (query(VirtReg, *AliasI).checkInterference())
379 LiveIntervalUnion::Query &Q = query(VirtReg, PhysReg);
397 // After extracting segments, the query's results are invalid. But keep the
413 LiveIntervalUnion::Query &QAlias = query(VirtReg, *asI);
  /frameworks/base/core/tests/bandwidthtests/src/com/android/bandwidthtest/util/
ConnectionUtil.java 20 import android.app.DownloadManager.Query;
410 * @param enqueue the id used to identify/query the DownloadManager with.
414 Query query = new Query(); local
415 query.setFilterById(enqueue);
416 Cursor c = mDownloadManager.query(query);

Completed in 1078 milliseconds

1 2 3 4 5 6 78 91011>>