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

1 2

  /external/chromium_org/media/base/
data_source.cc 11 DataSource::DataSource() {}
13 DataSource::~DataSource() {}
data_source.h 14 class MEDIA_EXPORT DataSource {
21 DataSource();
22 virtual ~DataSource();
28 const DataSource::ReadCB& read_cb) = 0;
30 // Stops the DataSource. Once this is called all future Read() calls will
42 // Notify the DataSource of the bitrate of the media.
47 DISALLOW_COPY_AND_ASSIGN(DataSource);
  /libcore/luni/src/main/java/javax/sql/
DataSource.java 29 * A class which implements the {@code DataSource} interface is typically
33 * The {@code DataSource} interface is typically implemented by the writer of a
34 * JDBC driver. There are three variants of the {@code DataSource} interface,
37 * <li><i>Standard {@code DataSource}</i>: produces standard {@code Connection}
39 * <li><i>Connection Pool {@code DataSource}</i>: produces {@code
42 * <li><i>Distributed transaction {@code DataSource} ("XADataSource")</i>:
49 * Note that a JDBC driver which is accessed via the {@code DataSource}
53 public interface DataSource extends CommonDataSource, Wrapper {
57 * DataSource}.
68 * DataSource}, using the supplied user name and password
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/server2/
data_source.py 6 class DataSource(object):
10 DataSources must have two public methods, get and Refresh. A DataSource is
12 Anything in the ServerInstance can be used by the DataSource. Request is None
25 to refresh this DataSource's data set. Any paths listed here will be
26 routed to the DataSource Refresh method in a taskqueue task request.
31 '''Handles _refresh requests to this DataSource. Should return a Future
strings_data_source.py 8 from data_source import DataSource
11 class StringsDataSource(DataSource):
data_source_registry.py 7 from data_source import DataSource
35 assert all(issubclass(cls, DataSource)
44 '''Create a single DataSource by name.'''
54 The key of each DataSource is the name the template system will use to access
55 the DataSource.
samples_data_source.py 8 from data_source import DataSource
61 class SamplesDataSource(DataSource):
template_data_source.py 9 from data_source import DataSource
18 class TemplateDataSource(DataSource):
19 '''Provides a DataSource interface for compiled templates.
api_data_source.py 7 from data_source import DataSource
17 class APIDataSource(DataSource):
api_list_data_source.py 5 from data_source import DataSource
12 class APIListDataSource(DataSource):
permissions_data_source.py 8 from data_source import DataSource
44 class PermissionsDataSource(DataSource):
sidenav_data_source.py 10 from data_source import DataSource
56 class SidenavDataSource(DataSource):
whats_new_data_source.py 9 from data_source import DataSource
15 class WhatsNewDataSource(DataSource):
manifest_data_source.py 8 from data_source import DataSource
105 class ManifestDataSource(DataSource):
owners_data_source.py 8 from data_source import DataSource
46 class OwnersDataSource(DataSource):
  /frameworks/base/media/java/android/media/
DataSource.java 26 public interface DataSource extends Closeable {
  /external/chromium_org/third_party/libaddressinput/src/java/src/com/android/i18n/addressinput/
DataSource.java 22 public interface DataSource {
  /frameworks/av/include/media/stagefright/
DataSource.h 39 class DataSource : public RefBase {
48 static sp<DataSource> CreateFromURI(
55 static sp<DataSource> CreateMediaHTTP(const sp<IMediaHTTPService> &httpService);
57 DataSource() {}
88 const sp<DataSource> &source, String8 *mimeType,
106 virtual ~DataSource() {}
115 DataSource(const DataSource &);
116 DataSource &operator=(const DataSource &)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/clipboard/
DataObjectItem.h 74 enum DataSource {
82 DataSource m_source;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
msdatsrc.h 23 typedef struct DataSource DataSource;
36 #define IDataSource DataSource
95 struct DataSource : public IUnknown {
106 HRESULT (WINAPI *QueryInterface)(DataSource *This,REFIID riid,void **ppvObject);
107 ULONG (WINAPI *AddRef)(DataSource *This);
108 ULONG (WINAPI *Release)(DataSource *This);
109 HRESULT (WINAPI *getDataMember)(DataSource *This,DataMember bstrDM,REFIID riid,IUnknown **ppunk);
110 HRESULT (WINAPI *getDataMemberName)(DataSource *This,__LONG32 lIndex,DataMember *pbstrDM);
111 HRESULT (WINAPI *getDataMemberCount)(DataSource *This,__LONG32 *plCount)
    [all...]
  /external/chromium_org/third_party/android_platform/webview/
frameworks.jar 
  /external/chromium_org/third_party/libaddressinput/src/java/
android.jar 
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/12/
android.jar 
  /prebuilts/sdk/13/
android.jar 

Completed in 1431 milliseconds

1 2