Searched defs:isSafeToSendToAnotherThread (Results 1 - 8 of 8) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/html/parser/
H A DCompactHTMLToken.cpp93 bool CompactHTMLToken::isSafeToSendToAnotherThread() const function in class:WebCore::CompactHTMLToken
96 if (!it->name.isSafeToSendToAnotherThread())
98 if (!it->value.isSafeToSendToAnotherThread())
101 return m_data.isSafeToSendToAnotherThread();
H A DHTMLIdentifier.h66 bool isSafeToSendToAnotherThread() const { return m_string.isSafeToSendToAnotherThread(); } function in class:WebCore::HTMLIdentifier
H A DHTMLResourcePreloader.cpp40 bool PreloadRequest::isSafeToSendToAnotherThread() const function in class:WebCore::PreloadRequest
42 return m_initiatorName.isSafeToSendToAnotherThread()
43 && m_charset.isSafeToSendToAnotherThread()
44 && m_resourceURL.isSafeToSendToAnotherThread()
45 && m_mediaAttribute.isSafeToSendToAnotherThread()
46 && m_baseURL.isSafeToSendToAnotherThread();
H A DHTMLPreloadScanner.h60 bool isSafeToSendToAnotherThread() function in class:WebCore::TokenPreloadScanner
62 return m_documentURL.isSafeToSendToAnotherThread()
63 && m_predictedBaseElementURL.isSafeToSendToAnotherThread();
H A DXSSAuditor.cpp719 bool XSSAuditor::isSafeToSendToAnotherThread() const function in class:WebCore::XSSAuditor
721 return m_documentURL.isSafeToSendToAnotherThread()
722 && m_decodedURL.isSafeToSendToAnotherThread()
723 && m_decodedHTTPBody.isSafeToSendToAnotherThread();
/external/chromium_org/third_party/WebKit/Source/wtf/text/
H A DCString.cpp102 bool CString::isSafeToSendToAnotherThread() const function in class:WTF::CString
H A DWTFString.cpp663 bool String::isSafeToSendToAnotherThread() const function in class:WTF::String
/external/chromium_org/third_party/WebKit/Source/weborigin/
H A DKURL.cpp845 bool KURL::isSafeToSendToAnotherThread() const function in class:WebCore::KURL
847 return m_string.isSafeToSendToAnotherThread()
848 && (!m_innerURL || m_innerURL->isSafeToSendToAnotherThread());

Completed in 200 milliseconds