Searched defs:FormDataElement (Results 1 - 1 of 1) sorted by relevance

/external/webkit/Source/WebCore/platform/network/
H A DFormData.h35 class FormDataElement { class in namespace:WebCore
37 FormDataElement() : m_type(data) { } function in class:WebCore::FormDataElement
38 explicit FormDataElement(const Vector<char>& array) : m_type(data), m_data(array) { } function in class:WebCore::FormDataElement
41 FormDataElement(const String& filename, long long fileStart, long long fileLength, double expectedFileModificationTime, bool shouldGenerateFile) : m_type(encodedFile), m_filename(filename), m_fileStart(fileStart), m_fileLength(fileLength), m_expectedFileModificationTime(expectedFileModificationTime), m_shouldGenerateFile(shouldGenerateFile) { } function in class:WebCore::FormDataElement
42 explicit FormDataElement(const KURL& blobURL) : m_type(encodedBlob), m_blobURL(blobURL) { } function in class:WebCore::FormDataElement
44 FormDataElement(const String& filename, bool shouldGenerateFile) : m_type(encodedFile), m_filename(filename), m_shouldGenerateFile(shouldGenerateFile) { } function in class:WebCore::FormDataElement
66 inline bool operator==(const FormDataElement& a, const FormDataElement& b)
73 if (a.m_type == FormDataElement::data)
75 if (a.m_type == FormDataElement
[all...]

Completed in 37 milliseconds