OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:WebHTTPBody
(Results
1 - 2
of
2
) sorted by null
/external/webkit/Source/WebKit/chromium/public/
WebHTTPBody.h
48
class
WebHTTPBody
{
60
~
WebHTTPBody
() { reset(); }
62
WebHTTPBody
() : m_private(0) { }
63
WebHTTPBody
(const
WebHTTPBody
& b) : m_private(0) { assign(b); }
64
WebHTTPBody
& operator=(const
WebHTTPBody
& b)
72
WEBKIT_API void assign(const
WebHTTPBody
&);
96
WebHTTPBody
(const WTF::PassRefPtr<WebCore::FormData>&);
97
WebHTTPBody
& operator=(const WTF::PassRefPtr<WebCore::FormData>&)
[
all
...]
/external/webkit/Source/WebKit/chromium/src/
WebHTTPBody.cpp
32
#include "
WebHTTPBody
.h"
43
void
WebHTTPBody
::initialize()
48
void
WebHTTPBody
::reset()
53
void
WebHTTPBody
::assign(const
WebHTTPBody
& other)
61
size_t
WebHTTPBody
::elementCount() const
67
bool
WebHTTPBody
::elementAt(size_t index, Element& result) const
111
void
WebHTTPBody
::appendData(const WebData& data)
119
void
WebHTTPBody
::appendFile(const WebString& filePath)
125
void
WebHTTPBody
::appendFileRange(const WebString& filePath, long long fileStart, long long fileLength, double modi (…)
[
all
...]
Completed in 63 milliseconds