Home
last modified time | relevance | path

Searched refs:isSafeToSendToAnotherThread (Results 1 – 17 of 17) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/html/parser/
DHTMLResourcePreloader.cpp40 bool PreloadRequest::isSafeToSendToAnotherThread() const in isSafeToSendToAnotherThread() function in WebCore::PreloadRequest
42 return m_initiatorName.isSafeToSendToAnotherThread() in isSafeToSendToAnotherThread()
43 && m_charset.isSafeToSendToAnotherThread() in isSafeToSendToAnotherThread()
44 && m_resourceURL.isSafeToSendToAnotherThread() in isSafeToSendToAnotherThread()
45 && m_mediaAttribute.isSafeToSendToAnotherThread() in isSafeToSendToAnotherThread()
46 && m_baseURL.isSafeToSendToAnotherThread(); in isSafeToSendToAnotherThread()
DCompactHTMLToken.cpp93 bool CompactHTMLToken::isSafeToSendToAnotherThread() const in isSafeToSendToAnotherThread() function in WebCore::CompactHTMLToken
96 if (!it->name.isSafeToSendToAnotherThread()) in isSafeToSendToAnotherThread()
98 if (!it->value.isSafeToSendToAnotherThread()) in isSafeToSendToAnotherThread()
101 return m_data.isSafeToSendToAnotherThread(); in isSafeToSendToAnotherThread()
DHTMLPreloadScanner.h60 bool isSafeToSendToAnotherThread() in isSafeToSendToAnotherThread() function
62 return m_documentURL.isSafeToSendToAnotherThread() in isSafeToSendToAnotherThread()
63 && m_predictedBaseElementURL.isSafeToSendToAnotherThread(); in isSafeToSendToAnotherThread()
DBackgroundHTMLParser.cpp62 ASSERT(tokens->at(i).isSafeToSendToAnotherThread()); in checkThatTokensAreSafeToSendToAnotherThread()
68 ASSERT(preloads[i]->isSafeToSendToAnotherThread()); in checkThatPreloadsAreSafeToSendToAnotherThread()
74 ASSERT(infos[i]->isSafeToSendToAnotherThread()); in checkThatXSSInfosAreSafeToSendToAnotherThread()
DXSSAuditorDelegate.cpp63 bool XSSInfo::isSafeToSendToAnotherThread() const in isSafeToSendToAnotherThread() function in WebCore::XSSInfo
65 return m_originalURL.isSafeToSendToAnotherThread(); in isSafeToSendToAnotherThread()
DCompactHTMLToken.h53 bool isSafeToSendToAnotherThread() const;
DXSSAuditorDelegate.h49 bool isSafeToSendToAnotherThread() const;
DXSSAuditor.h65 bool isSafeToSendToAnotherThread() const;
DHTMLResourcePreloader.h48 bool isSafeToSendToAnotherThread() const;
DXSSAuditor.cpp731 bool XSSAuditor::isSafeToSendToAnotherThread() const in isSafeToSendToAnotherThread() function in WebCore::XSSAuditor
733 return m_documentURL.isSafeToSendToAnotherThread() in isSafeToSendToAnotherThread()
734 && m_decodedURL.isSafeToSendToAnotherThread() in isSafeToSendToAnotherThread()
735 && m_decodedHTTPBody.isSafeToSendToAnotherThread(); in isSafeToSendToAnotherThread()
DHTMLDocumentParser.cpp373 ASSERT(checkpoint->unparsedInput.isSafeToSendToAnotherThread()); in discardSpeculationsAndResumeFrom()
670 ASSERT(config->xssAuditor->isSafeToSendToAnotherThread()); in startBackgroundParser()
671 ASSERT(config->preloadScanner->isSafeToSendToAnotherThread()); in startBackgroundParser()
/external/chromium_org/third_party/WebKit/Source/wtf/text/
DCString.h78 bool isSafeToSendToAnotherThread() const;
DCString.cpp109 bool CString::isSafeToSendToAnotherThread() const in isSafeToSendToAnotherThread() function in WTF::CString
DWTFString.h384 bool isSafeToSendToAnotherThread() const;
DWTFString.cpp677 bool String::isSafeToSendToAnotherThread() const in isSafeToSendToAnotherThread() function in WTF::String
/external/chromium_org/third_party/WebKit/Source/platform/weborigin/
DKURL.h182 bool isSafeToSendToAnotherThread() const;
DKURL.cpp882 bool KURL::isSafeToSendToAnotherThread() const in isSafeToSendToAnotherThread() function in WebCore::KURL
884 return m_string.isSafeToSendToAnotherThread() in isSafeToSendToAnotherThread()
885 && (!m_innerURL || m_innerURL->isSafeToSendToAnotherThread()); in isSafeToSendToAnotherThread()