• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10/JavaScriptCore-7600.1.17/yarr/

Lines Matching refs:quantityType

392         switch (term.atom.quantityType) {
421 switch (term.atom.quantityType) {
451 switch (term.atom.quantityType) {
488 switch (term.atom.quantityType) {
535 switch (term.atom.quantityType) {
581 switch (term.atom.quantityType) {
648 switch (term.atom.quantityType) {
681 if (term.atom.quantityType == QuantifierFixedCount)
701 switch (term.atom.quantityType) {
725 switch (term.atom.quantityType) {
758 ASSERT(term.atom.quantityType == QuantifierGreedy);
784 ASSERT(term.atom.quantityType == QuantifierGreedy);
868 switch (term.atom.quantityType) {
945 switch (term.atom.quantityType) {
1509 void atomPatternCharacter(UChar ch, unsigned inputPosition, unsigned frameLocation, Checked<unsigned> quantityCount, QuantifierType quantityType)
1519 m_bodyDisjunction->terms.append(ByteTerm(lo, hi, inputPosition, frameLocation, quantityCount, quantityType));
1524 m_bodyDisjunction->terms.append(ByteTerm(ch, inputPosition, frameLocation, quantityCount, quantityType));
1527 void atomCharacterClass(CharacterClass* characterClass, bool invert, unsigned inputPosition, unsigned frameLocation, Checked<unsigned> quantityCount, QuantifierType quantityType)
1532 m_bodyDisjunction->terms[m_bodyDisjunction->terms.size() - 1].atom.quantityType = quantityType;
1536 void atomBackReference(unsigned subpatternId, unsigned inputPosition, unsigned frameLocation, Checked<unsigned> quantityCount, QuantifierType quantityType)
1543 m_bodyDisjunction->terms[m_bodyDisjunction->terms.size() - 1].atom.quantityType = quantityType;
1603 void atomParentheticalAssertionEnd(unsigned inputPosition, unsigned frameLocation, Checked<unsigned> quantityCount, QuantifierType quantityType)
1620 m_bodyDisjunction->terms[beginTerm].atom.quantityType = quantityType;
1622 m_bodyDisjunction->terms[endTerm].atom.quantityType = quantityType;
1701 void atomParenthesesSubpatternEnd(unsigned lastSubpatternId, int inputPosition, unsigned frameLocation, Checked<unsigned> quantityCount, QuantifierType quantityType, unsigned callFrameSize = 0)
1731 m_bodyDisjunction->terms[beginTerm].atom.quantityType = quantityType;
1735 void atomParenthesesOnceEnd(int inputPosition, unsigned frameLocation, Checked<unsigned> quantityCount, QuantifierType quantityType)
1752 m_bodyDisjunction->terms[beginTerm].atom.quantityType = quantityType;
1754 m_bodyDisjunction->terms[endTerm].atom.quantityType = quantityType;
1757 void atomParenthesesTerminalEnd(int inputPosition, unsigned frameLocation, Checked<unsigned> quantityCount, QuantifierType quantityType)
1774 m_bodyDisjunction->terms[beginTerm].atom.quantityType = quantityType;
1776 m_bodyDisjunction->terms[endTerm].atom.quantityType = quantityType;
1850 atomPatternCharacter(term.patternCharacter, currentCountAlreadyChecked - term.inputPosition, term.frameLocation, term.quantityCount, term.quantityType);
1854 atomCharacterClass(term.characterClass, term.invert(), currentCountAlreadyChecked- term.inputPosition, term.frameLocation, term.quantityCount, term.quantityType);
1858 atomBackReference(term.backReferenceSubpatternId, currentCountAlreadyChecked - term.inputPosition, term.frameLocation, term.quantityCount, term.quantityType);
1869 if (term.quantityType == QuantifierFixedCount)
1876 atomParenthesesOnceEnd(delegateEndInputOffset, term.frameLocation, term.quantityCount, term.quantityType);
1881 atomParenthesesTerminalEnd(delegateEndInputOffset, term.frameLocation, term.quantityCount, term.quantityType);
1886 atomParenthesesSubpatternEnd(term.parentheses.lastSubpatternId, delegateEndInputOffset, term.frameLocation, term.quantityCount, term.quantityType, term.parentheses.disjunction->m_callFrameSize);
1905 atomParentheticalAssertionEnd(0, term.frameLocation, term.quantityCount, term.quantityType);