HomeSort by relevance Sort by last modified time
    Searched refs:HTTPMethod (Results 1 - 10 of 10) sorted by null

  /external/webkit/Source/WebKit/win/Interfaces/
IWebURLRequest.idl 75 - (NSString *)HTTPMethod
77 HRESULT HTTPMethod([out, retval] BSTR *result);
  /external/webkit/Tools/DumpRenderTree/mac/
HistoryDelegate.mm 50 [navigationData originalRequest] ? [[[navigationData originalRequest] HTTPMethod] UTF8String] : "",
ResourceLoadDelegate.mm 107 NSString *httpMethod = [self HTTPMethod];
108 if (!httpMethod)
109 httpMethod = @"(none)";
110 return [NSString stringWithFormat:@"<NSURLRequest URL %@, main document URL %@, http method %@>", [[self URL] _drt_descriptionSuitableForTestResult], [[self mainDocumentURL] _drt_descriptionSuitableForTestResult], httpMethod];
DumpRenderTree.mm 669 [[[[NSURLRequest alloc] init] autorelease] HTTPMethod];
    [all...]
  /external/webkit/Source/WebKit/win/
WebMutableURLRequest.h 84 virtual HRESULT STDMETHODCALLTYPE HTTPMethod(
WebMutableURLRequest.cpp 180 HRESULT STDMETHODCALLTYPE WebMutableURLRequest::HTTPMethod(
183 BString httpMethod = BString(m_request.httpMethod());
184 *result = httpMethod.release();
  /external/webkit/Tools/DumpRenderTree/win/
HistoryDelegate.cpp 107 if (FAILED(request->HTTPMethod(&httpMethodBSTR)))
109 wstring httpMethod;
111 httpMethod = wstringFromBSTR(httpMethodBSTR);
144 httpMethod.c_str(),
ResourceLoadDelegate.cpp 92 if (FAILED(request->HTTPMethod(&httpMethodBSTR)))
95 wstring httpMethod = wstringFromBSTR(httpMethodBSTR);
98 return L"<NSURLRequest URL " + url + L", main document URL " + mainDocumentURL + L", http method " + httpMethod + L">";
  /external/webkit/Source/WebCore/platform/network/mac/
ResourceRequestMac.mm 68 if (NSString* method = [m_nsRequest.get() HTTPMethod])
135 if (!httpMethod().isEmpty())
136 [nsRequest setHTTPMethod:httpMethod()];
ResourceHandleMac.mm 581 d->m_lastHTTPMethod = request.httpMethod();
787 if (!equalIgnoringCase(lastHTTPMethod, String([newRequest HTTPMethod]))) {
    [all...]

Completed in 123 milliseconds