Searched refs:m_dataSource (Results 1 - 12 of 12) sorted by relevance

/external/webkit/Source/WebKit/win/
H A DWebDocumentLoader.cpp35 , m_dataSource(0)
51 if (m_dataSource) {
53 m_dataSource->Release();
59 ASSERT(!m_dataSource);
60 m_dataSource = dataSource;
61 if (m_dataSource)
62 m_dataSource->AddRef();
67 return m_dataSource;
72 // we only call detachDataSource when the WebDataSource is freed - and we won't get there if m_dataSource is not
74 ASSERT(!m_dataSource);
[all...]
H A DWebDocumentLoader.h47 WebDataSource* m_dataSource; member in class:WebDocumentLoader
/external/webkit/Source/WebCore/bindings/v8/
H A DV8DataGridDataSource.cpp46 : m_dataSource(v8::Persistent<v8::Value>::New(dataSource))
50 V8GCController::registerGlobalHandle(DATASOURCE, this, m_dataSource);
57 V8GCController::unregisterGlobalHandle(this, m_dataSource);
59 m_dataSource.Dispose();
60 m_dataSource.Clear();
H A DV8DataGridDataSource.h57 v8::Handle<v8::Value> jsDataSource() const { return m_dataSource; }
62 v8::Persistent<v8::Value> m_dataSource; member in class:WebCore::V8DataGridDataSource
/external/webkit/Source/WebKit/gtk/WebCoreSupport/
H A DDocumentLoaderGtk.cpp44 , m_dataSource(0)
50 ASSERT(!m_dataSource);
52 m_dataSource = dataSource;
65 if (m_dataSource) {
86 ASSERT(m_dataSource);
111 if (!m_dataSource || m_isDataSourceReffed)
114 g_object_ref(m_dataSource);
120 ASSERT(m_dataSource);
122 g_object_unref(m_dataSource);
123 m_dataSource
[all...]
H A DDocumentLoaderGtk.h53 WebKitWebDataSource* dataSource() const { return m_dataSource; }
68 WebKitWebDataSource* m_dataSource; member in class:WebKit::DocumentLoader
/external/webkit/Source/WebKit/mac/WebView/
H A DWebDocumentLoaderMac.mm38 , m_dataSource(nil)
67 ASSERT(!m_dataSource);
70 m_dataSource = dataSource;
85 return m_dataSource;
108 ASSERT(m_dataSource);
137 if (m_isDataSourceRetained || !m_dataSource)
140 CFRetain(m_dataSource);
147 ASSERT(m_dataSource);
149 CFRelease(m_dataSource);
155 m_dataSource
[all...]
H A DWebDocumentLoaderMac.h63 WebDataSource *m_dataSource; member in class:WebDocumentLoaderMac
/external/webkit/Source/WebCore/bindings/js/
H A DJSDataGridDataSource.cpp44 : m_dataSource(dataSource)
H A DJSDataGridDataSource.h52 JSC::JSValue jsDataSource() const { return m_dataSource.get(); }
57 JSC::ProtectedJSValue m_dataSource; member in class:WebCore::JSDataGridDataSource
/external/webkit/Source/WebCore/html/
H A DHTMLDataGridElement.cpp95 if (m_dataSource == ds)
101 m_dataSource = dataSource;
110 ASSERT(m_dataSource);
111 return m_dataSource.get();
H A DHTMLDataGridElement.h61 RefPtr<DataGridDataSource> m_dataSource; member in class:WebCore::HTMLDataGridElement

Completed in 205 milliseconds