HomeSort by relevance Sort by last modified time
    Searched refs:isSafeToSendToAnotherThread (Results 1 - 16 of 16) 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();
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();
HTMLPreloadScanner.h 60 bool isSafeToSendToAnotherThread()
62 return m_documentURL.isSafeToSendToAnotherThread()
63 && m_predictedBaseElementURL.isSafeToSendToAnotherThread();
CompactHTMLToken.h 54 bool isSafeToSendToAnotherThread() const;
BackgroundHTMLParser.cpp 63 ASSERT(tokens->at(i).isSafeToSendToAnotherThread());
69 ASSERT(preloads[i]->isSafeToSendToAnotherThread());
HTMLResourcePreloader.h 48 bool isSafeToSendToAnotherThread() const;
XSSAuditor.h 65 bool isSafeToSendToAnotherThread() const;
XSSAuditor.cpp 719 bool XSSAuditor::isSafeToSendToAnotherThread() const
721 return m_documentURL.isSafeToSendToAnotherThread()
722 && m_decodedURL.isSafeToSendToAnotherThread()
723 && m_decodedHTTPBody.isSafeToSendToAnotherThread();
HTMLDocumentParser.cpp 374 ASSERT(checkpoint->unparsedInput.isSafeToSendToAnotherThread());
662 ASSERT(config->xssAuditor->isSafeToSendToAnotherThread());
663 ASSERT(config->preloadScanner->isSafeToSendToAnotherThread());
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/text/
CString.h 74 bool isSafeToSendToAnotherThread() const;
CString.cpp 102 bool CString::isSafeToSendToAnotherThread() const
WTFString.h 388 bool isSafeToSendToAnotherThread() const;
WTFString.cpp 663 bool String::isSafeToSendToAnotherThread() const
    [all...]
  /external/chromium_org/third_party/WebKit/Source/weborigin/
KURL.h 180 bool isSafeToSendToAnotherThread() const;
KURL.cpp 845 bool KURL::isSafeToSendToAnotherThread() const
847 return m_string.isSafeToSendToAnotherThread()
848 && (!m_innerURL || m_innerURL->isSafeToSendToAnotherThread());

Completed in 198 milliseconds