HomeSort by relevance Sort by last modified time
    Searched refs:dataSource (Results 26 - 50 of 94) sorted by null

12 3 4

  /external/webkit/Source/WebKit/mac/WebView/
WebHTMLRepresentation.mm 67 WebDataSource *dataSource;
157 - (void)setDataSource:(WebDataSource *)dataSource
159 _private->dataSource = dataSource;
161 if (!_private->includedInWebKitStatistics && [[dataSource webFrame] _isIncludedInWebKitStatistics]) {
169 return [[_private->dataSource _responseMIMEType] _webkit_isCaseInsensitiveEqualToString:@"application/x-webarchive"];
172 - (void)receivedData:(NSData *)data withDataSource:(WebDataSource *)dataSource
174 WebFrame *webFrame = [dataSource webFrame];
188 [_private->manualLoader pluginView:_private->pluginView receivedResponse:[dataSource response]];
196 - (void)receivedError:(NSError *)error withDataSource:(WebDataSource *)dataSource
    [all...]
WebDocumentLoaderMac.mm 65 void WebDocumentLoaderMac::setDataSource(WebDataSource *dataSource, WebView *webView)
70 m_dataSource = dataSource;
83 WebDataSource *WebDocumentLoaderMac::dataSource() const
WebPDFView.h 45 WebDataSource *dataSource;
WebFrameViewInternal.h 38 - (NSView <WebDocumentView> *)_makeDocumentViewForDataSource:(WebDataSource *)dataSource;
WebDocumentLoaderMac.h 49 WebDataSource *dataSource() const;
WebFrame.h 143 @method dataSource
146 @result The datasource for this frame.
148 - (WebDataSource *)dataSource;
155 @result The provisional datasource of this frame.
WebPDFView.mm 197 [dataSource release];
289 [[dataSource webFrame] _clearSelectionInOtherFrames];
356 _applicationInfoForMIMEType([dataSource _responseMIMEType], &appName, &appIcon);
373 WebView *webView = [[dataSource webFrame] webView];
547 if (dataSource == ds)
550 dataSource = [ds retain];
557 - (void)dataSourceUpdated:(WebDataSource *)dataSource
581 WebFrame *frame = [dataSource webFrame];
646 if (range && !isFrameInRange([dataSource webFrame], range))
769 WebFrame *frame = [dataSource webFrame]
    [all...]
  /external/webkit/Source/WebKit/gtk/WebCoreSupport/
DocumentLoaderGtk.h 53 WebKitWebDataSource* dataSource() const { return m_dataSource; }
  /external/webkit/Source/WebKit/win/
WebHTMLRepresentation.h 109 /* [in] */ IWebDataSource* dataSource);
113 /* [in] */ IWebDataSource* dataSource);
117 /* [in] */ IWebDataSource* dataSource);
120 /* [in] */ IWebDataSource* dataSource);
WebHTMLRepresentation.cpp 225 /* [in] */ IWebDataSource* /*dataSource*/)
233 /* [in] */ IWebDataSource* /*dataSource*/)
241 /* [in] */ IWebDataSource* /*dataSource*/)
248 /* [in] */ IWebDataSource* /*dataSource*/)
273 COMPtr<IWebDataSource> dataSource;
274 hr = m_frame->dataSource(&dataSource);
279 hr = dataSource->data(&data);
  /frameworks/av/media/libmediaplayerservice/nuplayer/
GenericSource.cpp 24 #include <media/stagefright/DataSource.h>
41 DataSource::RegisterDefaultSniffers();
43 sp<DataSource> dataSource =
44 DataSource::CreateFromURI(url, headers);
45 CHECK(dataSource != NULL);
47 initFromDataSource(dataSource);
54 DataSource::RegisterDefaultSniffers();
56 sp<DataSource> dataSource = new FileSource(dup(fd), offset, length)
    [all...]
GenericSource.h 30 struct DataSource;
68 void initFromDataSource(const sp<DataSource> &dataSource);
  /frameworks/av/media/libstagefright/timedtext/
TimedTextDriver.cpp 25 #include <media/stagefright/DataSource.h>
170 sp<DataSource> dataSource =
171 DataSource::CreateFromURI(uri);
172 return createOutOfBandTextSource(trackIndex, mimeType, dataSource);
183 sp<DataSource> dataSource = new FileSource(dup(fd), offset, length);
184 return createOutOfBandTextSource(trackIndex, mimeType, dataSource);
190 const sp<DataSource>& dataSource) {
    [all...]
TimedTextSRTSource.h 29 class DataSource;
35 TimedTextSRTSource(const sp<DataSource>& dataSource);
49 sp<DataSource> mSource;
  /external/chromium/webkit/glue/
iframe_redirect_unittest.cc 42 WebDataSource* iframe_ds = iframe->dataSource();
  /external/webkit/Source/WebKit/mac/Plugins/
WebPluginController.h 55 - (void)setDataSource:(WebDataSource *)dataSource;
  /frameworks/ex/variablespeed/src/com/android/ex/variablespeed/
VariableSpeed.java 216 MediaPlayerDataSource dataSource;
223 dataSource = mDataSource;
229 dataSource.setAsSourceFor(mediaPlayer);
251 MediaPlayerDataSource dataSource;
257 dataSource = mDataSource;
260 stopAndStartPlayingAgain(dataSource);
  /external/webkit/Tools/DumpRenderTree/win/
ResourceLoadDelegate.cpp 216 /* [in] */ IWebDataSource* dataSource,
245 /* [in] */ IWebDataSource* dataSource,
256 COMPtr<IWebDataSourcePrivate> dataSourcePrivate(Query, dataSource);
290 /* [in] */ IWebDataSource *dataSource)
320 /* [in] */ IWebDataSource* dataSource)
352 /* [in] */ IWebDataSource* dataSource)
368 /* [in] */ IWebDataSource* dataSource)
  /external/webkit/Tools/WinLauncher/
WinLauncher.cpp 66 IWebDataSource* dataSource = 0;
76 hr = mainFrame->dataSource(&dataSource);
77 if (FAILED(hr) || !dataSource)
78 hr = mainFrame->provisionalDataSource(&dataSource);
79 if (FAILED(hr) || !dataSource)
82 hr = dataSource->request(&request);
95 if (dataSource)
96 dataSource->Release();
  /external/webkit/Source/WebCore/html/
HTMLDataGridColElement.cpp 72 if (dataGrid() && dataGrid()->dataSource()->isDOMDataGridDataSource()) {
81 if (dataGrid() && dataGrid()->dataSource()->isDOMDataGridDataSource()) {
  /frameworks/wilhelm/src/android/
android_AudioSfDecoder.cpp 182 sp<DataSource> dataSource;
192 dataSource = DataSource::CreateFromURI(mDataLocator.uriRef);
193 if (dataSource == NULL) {
210 dataSource = new FileSource(fd, mDataLocator.fdi.offset, mDataLocator.fdi.length);
211 status_t err = dataSource->initCheck();
227 sp<MediaExtractor> extractor = MediaExtractor::Create(dataSource);
274 if (dataSource->getSize(&size) == OK
322 mDataSource = dataSource;
    [all...]
  /external/webkit/Tools/DumpRenderTree/mac/
FrameLoadDelegate.mm 136 - (void)webView:(WebView *)c locationChangeDone:(NSError *)error forDataSource:(WebDataSource *)dataSource
138 if ([dataSource webFrame] == topLoadingFrame) {
183 ASSERT([frame dataSource]);
212 ASSERT([frame dataSource]);
213 ASSERT(frame == [[frame dataSource] webFrame]);
225 [self webView:sender locationChangeDone:nil forDataSource:[frame dataSource]];
237 ASSERT([frame dataSource]);
239 [self webView:sender locationChangeDone:error forDataSource:[frame dataSource]];
  /frameworks/av/include/media/stagefright/timedtext/
TimedTextDriver.h 33 class DataSource;
92 const sp<DataSource>& dataSource);
  /frameworks/av/media/libstagefright/
NuMediaExtractor.cpp 30 #include <media/stagefright/DataSource.h>
68 sp<DataSource> dataSource =
69 DataSource::CreateFromURI(path, headers);
71 if (dataSource == NULL) {
80 bool success = SniffWVM(dataSource, &mimeType, &confidence, &dummy);
88 sp<WVMExtractor> extractor = new WVMExtractor(dataSource);
94 mImpl = MediaExtractor::Create(dataSource);
115 mDataSource = dataSource;
505 } else if ((mDataSource->flags() & DataSource::kIsCachingDataSource
    [all...]
FLACExtractor.cpp 28 #include <media/stagefright/DataSource.h>
43 const sp<DataSource> &dataSource,
57 sp<DataSource> mDataSource;
77 const sp<DataSource> &dataSource,
117 sp<DataSource> mDataSource;
438 const sp<DataSource> &dataSource,
441 : mDataSource(dataSource),
    [all...]

Completed in 618 milliseconds

12 3 4