HomeSort by relevance Sort by last modified time
    Searched refs:DataSource (Results 1 - 25 of 318) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/support/room/compiler/src/test/data/common/input/
DataSource.java 19 abstract public class DataSource<K, T> {
PositionalDataSource.java 3 public abstract class PositionalDataSource<T> extends DataSource<Integer, T> {
  /tools/apksig/src/main/java/com/android/apksig/util/
ReadableDataSink.java 20 * {@link DataSink} which exposes all data consumed so far as a {@link DataSource}. This abstraction
23 public interface ReadableDataSink extends DataSink, DataSource {
DataSources.java 25 * Utility methods for working with {@link DataSource} abstraction.
31 * Returns a {@link DataSource} backed by the provided {@link ByteBuffer}. The data source
35 public static DataSource asDataSource(ByteBuffer buffer) {
43 * Returns a {@link DataSource} backed by the provided {@link RandomAccessFile}. Changes to the
46 public static DataSource asDataSource(RandomAccessFile file) {
54 * Returns a {@link DataSource} backed by the provided region of the {@link RandomAccessFile}.
57 public static DataSource asDataSource(RandomAccessFile file, long offset, long size) {
DataSource.java 53 public interface DataSource {
109 DataSource slice(long offset, long size);
  /packages/apps/TV/tuner/src/com/android/tv/tuner/source/
TsDataSource.java 19 import com.google.android.exoplayer.upstream.DataSource;
21 /** {@link DataSource} for MPEG-TS stream, which will be used by {@link TsExtractor}. */
22 public abstract class TsDataSource implements DataSource {
34 * Returns the offset position where the last {@link DataSource#read} read.
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/util/
DataSource.java 15 public class DataSource {
16 private String dataSource;
18 private DataSource(String dataSource) {
19 this.dataSource = dataSource;
22 public static DataSource toDataSource(String path) {
23 return new DataSource(path);
26 public static DataSource toDataSource(Context context, Uri uri) {
30 public static DataSource toDataSource(Context context, Uri uri, Map<String, String> headers)
    [all...]
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue10/
DataSources.java 21 List<DataSource> dataSources;
23 public List<DataSource> getDataSources() {
27 public void setDataSources(List<DataSource> dataSources) {
JDBCDataSource.java 18 public class JDBCDataSource extends DataSource {
23 DataSource parent;
25 public DataSource getParent() {
29 public void setParent(DataSource parent) {
BasicDumpTest.java 29 DataSource base = new DataSource();
33 ArrayList<DataSource> dataSources = new ArrayList<DataSource>();
48 Iterator<DataSource> iter = dsOut.getDataSources().iterator();
49 assertFalse("Must be DataSource.", iter.next() instanceof JDBCDataSource);
54 DataSource base = new DataSource();
58 ArrayList<DataSource> dataSources = new ArrayList<DataSource>();
    [all...]
DataSource.java 18 public class DataSource {
  /frameworks/support/paging/runtime/src/main/java/androidx/paging/
LivePagedListProvider.java 23 // we can require a version of Room that uses DataSource.Factory directly
31 public abstract class LivePagedListProvider<Key, Value> extends DataSource.Factory<Key, Value> {
34 public DataSource<Key, Value> create() {
39 protected abstract DataSource<Key, Value> createDataSource();
  /frameworks/av/media/libmediaextractor/include/media/
DataSource.h 35 class DataSource : public DataSourceBase, public virtual RefBase {
37 DataSource() {}
73 virtual ~DataSource() {}
76 DataSource(const DataSource &);
77 DataSource &operator=(const DataSource &);
  /external/guice/core/test/com/google/inject/example/
JndiProviderClient.java 28 import javax.sql.DataSource;
38 // Bind to DataSource from JNDI.
39 bind(DataSource.class)
40 .toProvider(fromJndi(DataSource.class, "..."));
  /frameworks/av/media/libstagefright/include/media/stagefright/
DataSourceFactory.h 32 static sp<DataSource> CreateFromURI(
39 static sp<DataSource> CreateMediaHTTP(const sp<MediaHTTPService> &httpService);
40 static sp<DataSource> CreateFromFd(int fd, int64_t offset, int64_t length);
JPEGSource.h 25 class DataSource;
29 JPEGSource(const sp<DataSource> &source);
42 sp<DataSource> mSource;
InterfaceUtils.h 29 class DataSource;
36 // Creates a DataSource which wraps the given IDataSource object.
37 sp<DataSource> CreateDataSourceFromIDataSource(const sp<IDataSource> &source);
39 // creates an IDataSource wrapper to the DataSource.
40 sp<IDataSource> CreateIDataSourceFromDataSource(const sp<DataSource> &source);
45 const sp<DataSource> &source,
DataURISource.h 21 #include <media/DataSource.h>
28 struct DataURISource : public DataSource {
  /frameworks/av/media/libstagefright/include/
ThrottledSource.h 21 #include <media/DataSource.h>
26 struct ThrottledSource : public DataSource {
28 const sp<DataSource> &source,
34 // returns an empty string to prevent callers from using the Uri to construct a new datasource
39 // following methods all call through to the wrapped DataSource's methods
68 sp<DataSource> mSource;
CallbackDataSource.h 20 #include <media/DataSource.h>
28 // A stagefright DataSource that wraps a binder IDataSource. It's a "Callback"
29 // DataSource because it calls back to the IDataSource for data.
30 class CallbackDataSource : public DataSource {
35 // DataSource implementation.
57 // A caching DataSource that wraps a CallbackDataSource. For reads smaller
61 class TinyCacheSource : public DataSource {
63 explicit TinyCacheSource(const sp<DataSource>& source);
84 sp<DataSource> mSource;
  /frameworks/base/core/java/android/util/apk/
DataSource.java 23 interface DataSource {
  /frameworks/support/paging/integration-tests/testapp/src/main/java/androidx/paging/integration/testapp/
PagedListItemViewModel.java 21 import androidx.paging.DataSource;
33 private final DataSource.Factory<Integer, Item> mFactory =
34 new DataSource.Factory<Integer, Item>() {
36 public DataSource<Integer, Item> create() {
  /frameworks/wilhelm/src/android/
BufferQueueSource.h 20 #include <media/DataSource.h>
28 // a Stagefright DataSource that pulls data from an AndroidBufferQueue
30 class BufferQueueSource : public DataSource {
  /frameworks/wilhelm/src/android/include/
AacAdtsExtractor.h 22 #include <media/DataSource.h>
40 AacAdtsSource(const sp<DataSource> &source,
58 sp<DataSource> mDataSource;
75 explicit AacAdtsExtractor(const sp<DataSource> &source);
84 sp<DataSource> mDataSource;
  /external/autotest/frontend/client/src/autotest/afe/
HostTable.java 3 import autotest.common.table.DataSource;
28 public HostTable(DataSource dataSource) {
29 this(dataSource, false);
32 public HostTable(DataSource dataSource, boolean wantSelect) {
33 super(wantSelect ? HOST_COLUMNS_SELECT : HOST_COLUMNS, dataSource);

Completed in 406 milliseconds

1 2 3 4 5 6 7 8 91011>>