Home
last modified time | relevance | path

Searched refs:invertOrCapture (Results 1 – 5 of 5) sorted by relevance

/external/webkit/JavaScriptCore/yarr/
DRegexInterpreter.h71 bool invertOrCapture; member
144 , invertOrCapture(invert) in ByteTerm()
152 … type, unsigned subpatternId, ByteDisjunction* parenthesesInfo, bool invertOrCapture, int inputPos) in ByteTerm()
154 , invertOrCapture(invertOrCapture) in ByteTerm()
165 , invertOrCapture(invert) in type()
171 ByteTerm(Type type, unsigned subpatternId, bool invertOrCapture, int inputPos) in ByteTerm()
173 , invertOrCapture(invertOrCapture) in ByteTerm()
274 return invertOrCapture; in invert()
279 return invertOrCapture; in capture()
DRegexPattern.h85 bool invertOrCapture; member
112 , invertOrCapture(invert) in PatternTerm()
119 …atternTerm(Type type, unsigned subpatternId, PatternDisjunction* disjunction, bool invertOrCapture) in PatternTerm()
121 , invertOrCapture(invertOrCapture) in PatternTerm()
132 , invertOrCapture(invert) in type()
140 , invertOrCapture(false) in PatternTerm()
169 return invertOrCapture; in invert()
174 return invertOrCapture; in capture()
DRegexJIT.cpp493 if (term.invertOrCapture) { in generateAssertionWordBoundary()
506 if (term.invertOrCapture) { in generateAssertionWordBoundary()
667 if (term.invertOrCapture) in generateCharacterClassSingle()
689 if (term.invertOrCapture) in generateCharacterClassFixed()
712 if (term.invertOrCapture) { in generateCharacterClassGreedy()
765 if (term.invertOrCapture) in generateCharacterClassNonGreedy()
891 if (!term.invertOrCapture && (term.quantityType == QuantifierFixedCount)) { in generateParenthesesSingle()
911 if (term.invertOrCapture) { in generateParenthesesSingle()
926 if (term.invertOrCapture) { in generateParenthesesSingle()
953 if (term.invertOrCapture) { in generateParenthesesSingle()
[all …]
DRegexInterpreter.cpp1441 bool invertOrCapture = m_bodyDisjunction->terms[beginTerm].invertOrCapture; in atomParenthesesEnd() local
1444 …rtionEnd : ByteTerm::TypeParenthesesSubpatternOnceEnd, subpatternId, invertOrCapture, inputPositio… in atomParenthesesEnd()
1458 bool invertOrCapture = parenthesesBegin.invertOrCapture; in atomParenthesesEnd() local
1472 …rm::TypeParenthesesSubpattern, subpatternId, parenthesesDisjunction, invertOrCapture, inputPositio… in atomParenthesesEnd()
1545 … assertionWordBoundary(term.invertOrCapture, term.inputPosition - currentCountAlreadyChecked); in emitDisjunction()
1553 …atomCharacterClass(term.characterClass, term.invertOrCapture, term.inputPosition - currentCountAlr… in emitDisjunction()
1569 …atomParenthesesSubpatternBegin(term.parentheses.subpatternId, term.invertOrCapture, delegateEndInp… in emitDisjunction()
1574 …atomParenthesesSubpatternBegin(term.parentheses.subpatternId, term.invertOrCapture, delegateEndInp… in emitDisjunction()
1580 …atomParenthesesSubpatternBegin(term.parentheses.subpatternId, term.invertOrCapture, delegateEndInp… in emitDisjunction()
1590 …atomParentheticalAssertionBegin(term.parentheses.subpatternId, term.invertOrCapture, term.frameLoc… in emitDisjunction()
DRegexCompiler.cpp487 …if ((term.type == PatternTerm::TypeParenthesesSubpattern) && term.invertOrCapture && (subpatternId… in atomBackReference()