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

  /external/webkit/Source/JavaScriptCore/runtime/
RegExp.h 49 bool isValid() const { return !m_constructionError && m_flags != InvalidFlags; }
50 const char* errorMessage() const { return m_constructionError; }
76 const char* m_constructionError;
RegExp.cpp 79 , m_constructionError(0)
105 Yarr::YarrPattern pattern(m_patternString, ignoreCase(), multiline(), &m_constructionError);
106 if (m_constructionError)
  /external/webkit/Source/WebCore/platform/text/
RegularExpression.cpp 53 , m_constructionError(0)
59 JSC::Yarr::YarrPattern pattern(JSC::UString(patternString.impl()), (caseSensitivity == TextCaseInsensitive), false, &m_constructionError);
60 if (m_constructionError) {
61 LOG_ERROR("RegularExpression: YARR compile failed with '%s'", m_constructionError);
71 const char* m_constructionError;

Completed in 117 milliseconds