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

  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
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();
CompactHTMLToken.cpp 93 bool CompactHTMLToken::isSafeToSendToAnotherThread() const
96 if (!it->name.isSafeToSendToAnotherThread())
98 if (!it->value.isSafeToSendToAnotherThread())
101 return m_data.isSafeToSendToAnotherThread();
HTMLPreloadScanner.h 60 bool isSafeToSendToAnotherThread()
62 return m_documentURL.isSafeToSendToAnotherThread()
63 && m_predictedBaseElementURL.isSafeToSendToAnotherThread();
CompactHTMLToken.h 53 bool isSafeToSendToAnotherThread() const;
XSSAuditorDelegate.h 49 bool isSafeToSendToAnotherThread() const;
XSSAuditorDelegate.cpp 63 bool XSSInfo::isSafeToSendToAnotherThread() const
65 return m_originalURL.isSafeToSendToAnotherThread();
BackgroundHTMLParser.cpp 62 ASSERT(tokens->at(i).isSafeToSendToAnotherThread());
68 ASSERT(preloads[i]->isSafeToSendToAnotherThread());
74 ASSERT(infos[i]->isSafeToSendToAnotherThread());
HTMLResourcePreloader.h 48 bool isSafeToSendToAnotherThread() const;
XSSAuditor.h 65 bool isSafeToSendToAnotherThread() const;
XSSAuditor.cpp 731 bool XSSAuditor::isSafeToSendToAnotherThread() const
733 return m_documentURL.isSafeToSendToAnotherThread()
734 && m_decodedURL.isSafeToSendToAnotherThread()
735 && m_decodedHTTPBody.isSafeToSendToAnotherThread();
HTMLDocumentParser.cpp 373 ASSERT(checkpoint->unparsedInput.isSafeToSendToAnotherThread());
670 ASSERT(config->xssAuditor->isSafeToSendToAnotherThread());
671 ASSERT(config->preloadScanner->isSafeToSendToAnotherThread());
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/text/
CString.h 78 bool isSafeToSendToAnotherThread() const;
CString.cpp 109 bool CString::isSafeToSendToAnotherThread() const
WTFString.h 384 bool isSafeToSendToAnotherThread() const;
WTFString.cpp 677 bool String::isSafeToSendToAnotherThread() const
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/weborigin/
KURL.h 182 bool isSafeToSendToAnotherThread() const;
KURL.cpp 882 bool KURL::isSafeToSendToAnotherThread() const
884 return m_string.isSafeToSendToAnotherThread()
885 && (!m_innerURL || m_innerURL->isSafeToSendToAnotherThread());

Completed in 6132 milliseconds