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

  /external/webkit/Source/JavaScriptCore/yarr/
YarrInterpreter.h 42 struct ByteTerm {
105 ByteTerm(UChar ch, int inputPos, unsigned frameLocation, unsigned quantityCount, QuantifierType quantityType)
112 type = (quantityCount == 1) ? ByteTerm::TypePatternCharacterOnce : ByteTerm::TypePatternCharacterFixed;
115 type = ByteTerm::TypePatternCharacterGreedy;
118 type = ByteTerm::TypePatternCharacterNonGreedy;
128 ByteTerm(UChar lo, UChar hi, int inputPos, unsigned frameLocation, unsigned quantityCount, QuantifierType quantityType)
135 type = (quantityCount == 1) ? ByteTerm::TypePatternCasedCharacterOnce : ByteTerm::TypePatternCasedCharacterFixed;
138 type = ByteTerm::TypePatternCasedCharacterGreedy
    [all...]
YarrInterpreter.cpp 121 ParenthesesDisjunctionContext(int* output, ByteTerm& term)
146 DisjunctionContext* getDisjunctionContext(ByteTerm& term)
155 ParenthesesDisjunctionContext* allocParenthesesDisjunctionContext(ByteDisjunction* disjunction, int* output, ByteTerm& term)
350 bool matchAssertionBOL(ByteTerm& term)
355 bool matchAssertionEOL(ByteTerm& term)
363 bool matchAssertionWordBoundary(ByteTerm& term)
376 bool backtrackPatternCharacter(ByteTerm& term, DisjunctionContext* context)
405 bool backtrackPatternCasedCharacter(ByteTerm& term, DisjunctionContext* context)
434 bool matchCharacterClass(ByteTerm& term, DisjunctionContext* context)
436 ASSERT(term.type == ByteTerm::TypeCharacterClass)
    [all...]

Completed in 521 milliseconds