Searched refs:hasSubstituteData (Results 1 - 8 of 8) sorted by relevance

/external/webkit/Source/WebKit/mac/WebView/
H A DWebNavigationData.mm35 BOOL hasSubstituteData;
58 - (id)initWithURLString:(NSString *)url title:(NSString *)title originalRequest:(NSURLRequest *)request response:(NSURLResponse *)response hasSubstituteData:(BOOL)hasSubstituteData clientRedirectSource:(NSString *)redirectSource
66 _private->hasSubstituteData = hasSubstituteData;
92 - (BOOL)hasSubstituteData
94 return _private->hasSubstituteData;
H A DWebNavigationData.h38 - (id)initWithURLString:(NSString *)url title:(NSString *)title originalRequest:(NSURLRequest *)request response:(NSURLResponse *)response hasSubstituteData:(BOOL)hasSubstituteData clientRedirectSource:(NSString *)redirectSource;
43 - (BOOL)hasSubstituteData;
/external/webkit/Source/WebKit/win/
H A DWebNavigationData.cpp64 WebNavigationData::WebNavigationData(const String& url, const String& title, IWebURLRequest* request, IWebURLResponse* response, bool hasSubstituteData, const String& clientRedirectSource) argument
70 , m_hasSubstituteData(hasSubstituteData)
84 WebNavigationData* WebNavigationData::createInstance(const String& url, const String& title, IWebURLRequest* request, IWebURLResponse* response, bool hasSubstituteData, const String& clientRedirectSource) argument
86 WebNavigationData* instance = new WebNavigationData(url, title, request, response, hasSubstituteData, clientRedirectSource);
127 HRESULT WebNavigationData::hasSubstituteData(BOOL* hasSubstituteData) argument
129 if (!hasSubstituteData)
131 *hasSubstituteData = m_hasSubstituteData;
H A DWebNavigationData.h36 static WebNavigationData* createInstance(const WTF::String& url, const WTF::String& title, IWebURLRequest*, IWebURLResponse*, bool hasSubstituteData, const WTF::String& clientRedirectSource);
38 WebNavigationData(const WTF::String& url, const WTF::String& title, IWebURLRequest*, IWebURLResponse*, bool hasSubstituteData, const WTF::String& clientRedirectSource);
60 virtual HRESULT STDMETHODCALLTYPE hasSubstituteData(
/external/webkit/Source/WebKit/win/Interfaces/
H A DIWebNavigationData.idl49 HRESULT hasSubstituteData([out, retval] BOOL*);
/external/webkit/Tools/DumpRenderTree/win/
H A DHistoryDelegate.cpp126 BOOL hasSubstituteData;
127 if (FAILED(navigationData->hasSubstituteData(&hasSubstituteData)))
139 bool wasFailure = hasSubstituteData || (httpResponse && statusCode >= 400);
/external/webkit/Tools/DumpRenderTree/mac/
H A DHistoryDelegate.mm45 bool wasFailure = [navigationData hasSubstituteData] || (httpResponse && [httpResponse statusCode] >= 400);
/external/webkit/Source/WebKit/mac/WebCoreSupport/
H A DWebFrameLoaderClient.mm900 hasSubstituteData:loader->substituteData().isValid()

Completed in 1473 milliseconds