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

  /external/webkit/WebKit/win/Interfaces/
IWebURLRequest.idl 75 - (NSString *)HTTPMethod
77 HRESULT HTTPMethod([out, retval] BSTR *result);
  /external/webkit/WebKitTools/DumpRenderTree/mac/
HistoryDelegate.mm 50 [navigationData originalRequest] ? [[[navigationData originalRequest] HTTPMethod] UTF8String] : "",
ResourceLoadDelegate.mm 104 NSString *httpMethod = [self HTTPMethod];
105 if (!httpMethod)
106 httpMethod = @"(none)";
107 return [NSString stringWithFormat:@"<NSURLRequest URL %@, main document URL %@, http method %@>", [[self URL] _drt_descriptionSuitableForTestResult], [[self mainDocumentURL] _drt_descriptionSuitableForTestResult], httpMethod];
DumpRenderTree.mm 635 [[[[NSURLRequest alloc] init] autorelease] HTTPMethod];
    [all...]
  /external/webkit/WebKit/win/
WebMutableURLRequest.h 86 virtual HRESULT STDMETHODCALLTYPE HTTPMethod(
WebMutableURLRequest.cpp 179 HRESULT STDMETHODCALLTYPE WebMutableURLRequest::HTTPMethod(
182 BString httpMethod = BString(m_request.httpMethod());
183 *result = httpMethod.release();
  /external/webkit/WebKitTools/DumpRenderTree/win/
HistoryDelegate.cpp 107 if (FAILED(request->HTTPMethod(&httpMethodBSTR)))
109 wstring httpMethod;
111 httpMethod = wstringFromBSTR(httpMethodBSTR);
144 httpMethod.c_str(),
ResourceLoadDelegate.cpp 95 if (FAILED(request->HTTPMethod(&httpMethodBSTR)))
98 wstring httpMethod = wstringFromBSTR(httpMethodBSTR);
101 return L"<NSURLRequest URL " + url + L", main document URL " + mainDocumentURL + L", http method " + httpMethod + L">";
  /external/webkit/WebCore/platform/network/mac/
ResourceRequestMac.mm 62 if (NSString* method = [m_nsRequest.get() HTTPMethod])
115 if (!httpMethod().isEmpty())
116 [nsRequest setHTTPMethod:httpMethod()];
ResourceHandleMac.mm 622 String originalMethod = m_handle->request().httpMethod();
623 if (!equalIgnoringCase(originalMethod, String([newRequest HTTPMethod]))) {
    [all...]

Completed in 667 milliseconds