HomeSort by relevance Sort by last modified time
    Searched defs:isSafeToSendToAnotherThread (Results 1 - 8 of 8) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLIdentifier.h 66 bool isSafeToSendToAnotherThread() const { return m_string.isSafeToSendToAnotherThread(); }
CompactHTMLToken.cpp 93 bool CompactHTMLToken::isSafeToSendToAnotherThread() const
96 if (!it->name.isSafeToSendToAnotherThread())
98 if (!it->value.isSafeToSendToAnotherThread())
101 return m_data.isSafeToSendToAnotherThread();
HTMLResourcePreloader.cpp 40 bool PreloadRequest::isSafeToSendToAnotherThread() const
42 return m_initiatorName.isSafeToSendToAnotherThread()
43 && m_charset.isSafeToSendToAnotherThread()
44 && m_resourceURL.isSafeToSendToAnotherThread()
45 && m_mediaAttribute.isSafeToSendToAnotherThread()
46 && m_baseURL.isSafeToSendToAnotherThread();
HTMLPreloadScanner.h 60 bool isSafeToSendToAnotherThread()
62 return m_documentURL.isSafeToSendToAnotherThread()
63 && m_predictedBaseElementURL.isSafeToSendToAnotherThread();
XSSAuditor.cpp 719 bool XSSAuditor::isSafeToSendToAnotherThread() const
721 return m_documentURL.isSafeToSendToAnotherThread()
722 && m_decodedURL.isSafeToSendToAnotherThread()
723 && m_decodedHTTPBody.isSafeToSendToAnotherThread();
  /external/chromium_org/third_party/WebKit/Source/wtf/text/
CString.cpp 102 bool CString::isSafeToSendToAnotherThread() const
WTFString.cpp 663 bool String::isSafeToSendToAnotherThread() const
    [all...]
  /external/chromium_org/third_party/WebKit/Source/weborigin/
KURL.cpp 845 bool KURL::isSafeToSendToAnotherThread() const
847 return m_string.isSafeToSendToAnotherThread()
848 && (!m_innerURL || m_innerURL->isSafeToSendToAnotherThread());

Completed in 1028 milliseconds