Searched refs:fileContent (Results 1 - 10 of 10) sorted by relevance

/external/webkit/Source/WebCore/platform/chromium/
H A DWritableDataObject.h68 PassRefPtr<SharedBuffer> fileContent() const { return m_fileContent; } function in class:WebCore::WritableDataObject
71 void setFileContent(PassRefPtr<SharedBuffer> fileContent) { m_fileContent = fileContent; } argument
H A DChromiumDataObject.h86 PassRefPtr<SharedBuffer> fileContent() const { return m_fileContent; } function in class:WebCore::ChromiumDataObject
87 void setFileContent(PassRefPtr<SharedBuffer> fileContent) { m_fileContent = fileContent; } argument
H A DChromiumDataObjectLegacy.h86 PassRefPtr<SharedBuffer> fileContent() const { return m_fileContent; } function in class:WebCore::ChromiumDataObjectLegacy
87 void setFileContent(PassRefPtr<SharedBuffer> fileContent) { m_fileContent = fileContent; } argument
/external/webkit/Tools/Scripts/
H A Dsplit-file-by-class49 my $fileContent = "";
62 $fileContent .= "###CLASS###$currentClassName\n";
64 $fileContent .= $line;
95 my @lines = split("\n", $fileContent);
/external/smack/src/org/jivesoftware/smackx/entitycaps/cache/
H A DSimpleDirectoryPersistentCache.java144 String fileContent = null;
150 fileContent = dis.readUTF();
154 if (fileContent == null)
157 Reader reader = new StringReader(fileContent);
/external/webkit/Source/WebKit/chromium/src/
H A DWebDragData.cpp197 WebData WebDragData::fileContent() const function in class:WebKit::WebDragData
200 return WebData(m_private->fileContent());
203 void WebDragData::setFileContent(const WebData& fileContent) argument
206 m_private->setFileContent(fileContent);
/external/chromium/webkit/glue/
H A Dwebdropdata.cc33 WebData contents = drag_data.fileContent();
/external/webkit/Source/WebKit/chromium/public/
H A DWebDragData.h98 WEBKIT_API WebData fileContent() const;
/external/webkit/Source/WebCore/platform/win/
H A DClipboardWin.cpp296 // writeFileToDataObject takes ownership of fileDescriptor and fileContent
297 static HRESULT writeFileToDataObject(IDataObject* dataObject, HGLOBAL fileDescriptor, HGLOBAL fileContent, HGLOBAL hDropContent) argument
304 if (!fileDescriptor || !fileContent)
317 medium.hGlobal = fileContent;
333 if (fileContent)
334 GlobalFree(fileContent);
/external/webkit/Source/WebKit/gtk/WebCoreSupport/
H A DFrameLoaderClientGtk.cpp1216 gchar* fileContent = 0; local
1224 gboolean loaded = g_file_load_contents(errorFile, 0, &fileContent, 0, 0, 0);
1228 content = String::format(fileContent, error.failingURL().utf8().data(), webError->message);
1233 g_free(fileContent);

Completed in 225 milliseconds