Home
last modified time | relevance | path

Searched refs:m_representation (Results 1 – 4 of 4) sorted by relevance

/external/webkit/Source/JavaScriptCore/runtime/
DRegExp.cpp85 , m_representation(adoptPtr(new RegExpRepresentation)) in RegExp()
115 Yarr::jitCompile(pattern, globalData, m_representation->m_regExpJITCode); in compile()
117 if (!m_representation->m_regExpJITCode.isFallBack()) in compile()
122 if (!m_representation->m_regExpJITCode.isFallBack()) in compile()
128 m_representation->m_regExpBytecode = Yarr::byteCompile(pattern, &globalData->m_regExpAllocator); in compile()
167 …result = Yarr::execute(m_representation->m_regExpJITCode, s.characters(), startOffset, s.length(),… in match()
173 …result = Yarr::interpret(m_representation->m_regExpBytecode.get(), s.characters(), startOffset, s.… in match()
204 …interpreterResult = Yarr::interpret(m_representation->m_regExpBytecode.get(), s.characters(), star… in matchCompareWithInterpreter()
253 Yarr::YarrCodeBlock& codeBlock = m_representation->m_regExpJITCode; in printTraceData()
DRegExp.h83 OwnPtr<RegExpRepresentation> m_representation; variable
/external/webkit/Source/WebKit/win/
DWebDataSource.cpp189 if (!m_representation) { in representation()
191 hr = htmlRep->QueryInterface(IID_IWebDocumentRepresentation, (void**) &m_representation); in representation()
195 return m_representation.copyRefTo(rep); in representation()
DWebDataSource.h121 COMPtr<IWebDocumentRepresentation> m_representation; variable