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

  /external/webkit/JavaScriptCore/yarr/
RegexInterpreter.h 41 struct ByteTerm {
99 ByteTerm(UChar ch, int inputPos, unsigned frameLocation, unsigned quantityCount, QuantifierType quantityType)
104 type = (quantityCount == 1) ? ByteTerm::TypePatternCharacterOnce : ByteTerm::TypePatternCharacterFixed;
107 type = ByteTerm::TypePatternCharacterGreedy;
110 type = ByteTerm::TypePatternCharacterNonGreedy;
120 ByteTerm(UChar lo, UChar hi, int inputPos, unsigned frameLocation, unsigned quantityCount, QuantifierType quantityType)
125 type = (quantityCount == 1) ? ByteTerm::TypePatternCasedCharacterOnce : ByteTerm::TypePatternCasedCharacterFixed;
128 type = ByteTerm::TypePatternCasedCharacterGreedy
    [all...]
RegexInterpreter.cpp 117 ParenthesesDisjunctionContext(int* output, ByteTerm& term)
142 DisjunctionContext* getDisjunctionContext(ByteTerm& term)
151 ParenthesesDisjunctionContext* allocParenthesesDisjunctionContext(ByteDisjunction* disjunction, int* output, ByteTerm& term)
348 bool matchAssertionBOL(ByteTerm& term)
353 bool matchAssertionEOL(ByteTerm& term)
361 bool matchAssertionWordBoundary(ByteTerm& term)
374 bool backtrackPatternCharacter(ByteTerm& term, DisjunctionContext* context)
403 bool backtrackPatternCasedCharacter(ByteTerm& term, DisjunctionContext* context)
432 bool matchCharacterClass(ByteTerm& term, DisjunctionContext* context)
434 ASSERT(term.type == ByteTerm::TypeCharacterClass)
    [all...]

Completed in 15 milliseconds