HomeSort by relevance Sort by last modified time
    Searched full:datasource (Results 1 - 25 of 297) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/Source/WebCore/bindings/js/
JSDataGridDataSource.h 44 static PassRefPtr<JSDataGridDataSource> create(JSC::JSValue dataSource, Frame* frame)
46 return adoptRef(new JSDataGridDataSource(dataSource, frame));
61 inline JSDataGridDataSource* asJSDataGridDataSource(DataGridDataSource* dataSource)
63 ASSERT(dataSource->isJSDataGridDataSource());
64 return static_cast<JSDataGridDataSource*>(dataSource);
67 inline const JSDataGridDataSource* asJSDataGridDataSource(const DataGridDataSource* dataSource)
69 ASSERT(dataSource->isJSDataGridDataSource());
70 return static_cast<const JSDataGridDataSource*>(dataSource);
JSHTMLDataGridElementCustom.cpp 40 JSValue JSHTMLDataGridElement::dataSource(ExecState*) const
42 DataGridDataSource* dataSource = static_cast<HTMLDataGridElement*>(impl())->dataSource();
43 if (dataSource && dataSource->isJSDataGridDataSource())
44 return asJSDataGridDataSource(dataSource)->jsDataSource();
  /external/chromium/chrome/browser/ui/webui/
chrome_url_data_manager.h 23 // ChromeURLDataManager::DataSource interface and register your handler
29 class DataSource;
31 // Trait used to handle deleting a DataSource. Deletion happens on the UI
41 // deletion of the DataSources. When a DataSource is no longer referenced it
46 static void Destruct(const DataSource* data_source) {
51 // A DataSource is an object that can answer requests for data
57 // An implementation of DataSource should handle calls to
60 class DataSource : public base::RefCountedThreadSafe<
61 DataSource, DeleteDataSource> {
64 DataSource(const std::string& source_name, MessageLoop* message_loop)
    [all...]
chrome_url_data_manager.cc 32 // Invoked on the IO thread to do the actual adding of the DataSource.
35 scoped_refptr<ChromeURLDataManager::DataSource> data_source) {
49 void ChromeURLDataManager::AddDataSource(DataSource* source) {
73 void ChromeURLDataManager::DeleteDataSource(const DataSource* data_source) {
74 // Invoked when a DataSource is no longer referenced and needs to be deleted.
81 // We're not on the UI thread, add the DataSource to the list of DataSources
92 // Schedule a task to delete the DataSource back on the UI thread.
102 const DataSource* data_source) {
110 ChromeURLDataManager::DataSource::DataSource(const std::string& source_name
    [all...]
shared_resources_data_source.h 18 // A DataSource for chrome://resources/ URLs.
19 class SharedResourcesDataSource : public ChromeURLDataManager::DataSource {
23 // Overridden from ChromeURLDataManager::DataSource:
sync_internals_html_source.h 14 class SyncInternalsHTMLSource : public ChromeURLDataManager::DataSource {
18 // ChromeURLDataManager::DataSource implementation.
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8HTMLDataGridElementCustom.cpp 45 INC_STATS("DOM.HTMLDataGridElement.dataSource._get");
48 DataGridDataSource* dataSource = imp->dataSource();
49 if (dataSource && dataSource->isJSDataGridDataSource())
50 return asV8DataGridDataSource(dataSource)->jsDataSource();
56 INC_STATS("DOM.HTMLDataGridElement.dataSource._set");
59 RefPtr<DataGridDataSource> dataSource;
62 dataSource = V8DataGridDataSource::create(value, frame);
64 imp->setDataSource(dataSource.get())
    [all...]
  /frameworks/base/media/libstagefright/
DataSource.cpp 33 #include <media/stagefright/DataSource.h>
42 bool DataSource::getUInt16(off64_t offset, uint16_t *x) {
55 status_t DataSource::getSize(off64_t *size) {
63 Mutex DataSource::gSnifferMutex;
64 List<DataSource::SnifferFunc> DataSource::gSniffers;
66 bool DataSource::sniff(
91 void DataSource::RegisterSniffer(SnifferFunc func) {
105 void DataSource::RegisterDefaultSniffers() {
125 sp<DataSource> DataSource::CreateFromURI
    [all...]
  /external/webkit/Source/WebKit/mac/WebView/
WebJSPDFDoc.mm 36 WebDataSource *dataSource = (WebDataSource *)JSObjectGetPrivate(object);
37 CFRetain(dataSource);
42 WebDataSource *dataSource = (WebDataSource *)JSObjectGetPrivate(object);
43 CFRelease(dataSource);
48 WebDataSource *dataSource = (WebDataSource *)JSObjectGetPrivate(thisObject);
50 WebView *webView = [[dataSource webFrame] webView];
51 CallUIDelegate(webView, @selector(webView:printFrameView:), [[dataSource webFrame] frameView]);
71 JSObjectRef makeJSPDFDoc(JSContextRef ctx, WebDataSource *dataSource)
75 return JSObjectMake(ctx, jsPDFDocClass, dataSource);
  /frameworks/base/include/media/stagefright/
DataSource.h 36 class DataSource : public RefBase {
45 static sp<DataSource> CreateFromURI(
49 DataSource() {}
77 const sp<DataSource> &source, String8 *mimeType,
96 virtual ~DataSource() {}
102 DataSource(const DataSource &);
103 DataSource &operator=(const DataSource &);
  /external/webkit/Source/WebKit/win/Interfaces/
IWebResourceLoadDelegate.idl 68 @param dataSource The datasource that initiated the load.
76 - (id)webView:(WebView *)sender identifierForInitialRequest:(NSURLRequest *)request fromDataSource:(WebDataSource *)dataSource;
78 HRESULT identifierForInitialRequest([in] IWebView* webView, [in] IWebURLRequest* request, [in] IWebDataSource* dataSource, [in] unsigned long identifier);
90 @param dataSource The dataSource that initiated the load.
93 - (NSURLRequest *)webView:(WebView *)sender resource:(id)identifier willSendRequest:(NSURLRequest *)request redirectResponse:(NSURLResponse *)redirectResponse fromDataSource:(WebDataSource *)dataSource;
95 HRESULT willSendRequest([in] IWebView* webView, [in] unsigned long identifier, [in] IWebURLRequest* request, [in] IWebURLResponse* redirectResponse, [in] IWebDataSource* dataSource, [out, retval] IWebURLRequest** newRequest);
105 - (void)webView:(WebView *)sender resource:(id)identifier didReceiveAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge fromDataSource:(WebDataSource *)dataSource;
107 HRESULT didReceiveAuthenticationChallenge([in] IWebView* webView, [in] unsigned long identifier,[in] IWebURLAuthenticationChallenge* challenge, [in] IWebDataSource* dataSource);
    [all...]
  /external/webkit/Source/WebCore/html/
DOMDataGridDataSource.h 54 inline DOMDataGridDataSource* asDOMDataGridDataSource(DataGridDataSource* dataSource)
56 ASSERT(dataSource->isDOMDataGridDataSource());
57 return static_cast<DOMDataGridDataSource*>(dataSource);
60 inline const DOMDataGridDataSource* asDOMDataGridDataSource(const DataGridDataSource* dataSource)
62 ASSERT(dataSource->isDOMDataGridDataSource());
63 return static_cast<const DOMDataGridDataSource*>(dataSource);
  /external/webkit/Source/WebCore/bindings/v8/
V8DataGridDataSource.h 49 static PassRefPtr<V8DataGridDataSource> create(v8::Handle<v8::Value> dataSource, Frame* frame)
51 return adoptRef(new V8DataGridDataSource(dataSource, frame));
66 inline V8DataGridDataSource* asV8DataGridDataSource(DataGridDataSource* dataSource)
68 ASSERT(dataSource->isJSDataGridDataSource());
69 return static_cast<V8DataGridDataSource*>(dataSource);
72 inline const V8DataGridDataSource* asV8DataGridDataSource(const DataGridDataSource* dataSource)
74 ASSERT(dataSource->isJSDataGridDataSource());
75 return static_cast<const V8DataGridDataSource*>(dataSource);
  /external/chromium/webkit/glue/media/
web_data_source.cc 11 : media::DataSource() {
  /external/webkit/Source/WebKit/gtk/tests/
testwebdatasource.c 39 WebKitWebDataSource* dataSource;
50 dataSource = webkit_web_frame_get_provisional_data_source(frame);
51 g_assert(dataSource);
52 initialRequest = webkit_web_data_source_get_initial_request(dataSource);
68 WebKitWebDataSource* datasource = webkit_web_frame_get_data_source(frame);
71 webkit_web_data_source_get_unreachable_uri(datasource));
80 WebKitWebDataSource* dataSource = webkit_web_frame_get_data_source(frame);
83 g_assert(webkit_web_data_source_is_loading(dataSource));
91 WebKitNetworkRequest* request = webkit_web_data_source_get_request(dataSource);
96 WebKitWebResource* resource = webkit_web_data_source_get_main_resource(dataSource);
    [all...]
  /frameworks/base/media/libstagefright/include/
DRMExtractor.h 27 class DataSource;
34 DRMExtractor(const sp<DataSource> &source, const char *mime);
45 sp<DataSource> mDataSource;
56 const sp<DataSource> &source, String8 *mimeType, float *confidence,
FLACExtractor.h 20 #include <media/stagefright/DataSource.h>
32 FLACExtractor(const sp<DataSource> &source);
44 sp<DataSource> mDataSource;
59 bool SniffFLAC(const sp<DataSource> &source, String8 *mimeType,
MP3Extractor.h 27 class DataSource;
34 MP3Extractor(const sp<DataSource> &source, const sp<AMessage> &meta);
45 sp<DataSource> mDataSource;
56 const sp<DataSource> &source, String8 *mimeType, float *confidence,
MPEG2TSExtractor.h 31 struct DataSource;
37 MPEG2TSExtractor(const sp<DataSource> &source);
55 sp<DataSource> mDataSource;
71 const sp<DataSource> &source, String8 *mimeType, float *confidence,
OggExtractor.h 27 class DataSource;
34 OggExtractor(const sp<DataSource> &source);
48 sp<DataSource> mDataSource;
58 const sp<DataSource> &source, String8 *mimeType, float *confidence,
ThrottledSource.h 21 #include <media/stagefright/DataSource.h>
26 struct ThrottledSource : public DataSource {
28 const sp<DataSource> &source,
41 sp<DataSource> mSource;
WAVExtractor.h 27 class DataSource;
33 WAVExtractor(const sp<DataSource> &source);
45 sp<DataSource> mDataSource;
63 const sp<DataSource> &source, String8 *mimeType, float *confidence,
  /frameworks/base/media/libstagefright/timedtext/
TimedTextParser.h 28 class DataSource;
41 status_t init(const sp<DataSource> &dataSource, FileType fileType);
47 sp<DataSource> mDataSource;
  /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/webkit/Tools/DumpRenderTree/mac/
ResourceLoadDelegate.mm 80 WebDataSource *dataSource = [mainFrame dataSource];
81 if (!dataSource)
82 dataSource = [mainFrame provisionalDataSource];
84 NSString *basePath = [[[[dataSource request] URL] path] stringByDeletingLastPathComponent];
117 - webView: (WebView *)wv identifierForInitialRequest: (NSURLRequest *)request fromDataSource: (WebDataSource *)dataSource
119 ASSERT([[dataSource webFrame] dataSource] || [[dataSource webFrame] provisionalDataSource]);
127 -(NSURLRequest *)webView: (WebView *)wv resource:identifier willSendRequest: (NSURLRequest *)request redirectResponse:(NSURLResponse *)redirectResponse fromDataSource:(WebDataSource *)dataSource
    [all...]

Completed in 331 milliseconds

1 2 3 4 5 6 7 8 91011>>