Searched refs:ByteTerm (Results 1 - 2 of 2) sorted by relevance

/external/webkit/Source/JavaScriptCore/yarr/
H A DYarrInterpreter.h42 struct ByteTerm { struct in namespace:JSC::Yarr
105 ByteTerm(UChar ch, int inputPos, unsigned frameLocation, unsigned quantityCount, QuantifierType quantityType) function in struct:JSC::Yarr::ByteTerm
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) function in struct:JSC::Yarr::ByteTerm
135 type = (quantityCount == 1) ? ByteTerm::TypePatternCasedCharacterOnce : ByteTerm::TypePatternCasedCharacterFixed;
138 type = ByteTerm
152 ByteTerm(CharacterClass* characterClass, bool invert, int inputPos) function in struct:JSC::Yarr::ByteTerm
163 ByteTerm(Type type, unsigned subpatternId, ByteDisjunction* parenthesesInfo, bool capture, int inputPos) function in struct:JSC::Yarr::ByteTerm
175 ByteTerm(Type type, bool invert = false) function in struct:JSC::Yarr::ByteTerm
184 ByteTerm(Type type, unsigned subpatternId, bool capture, bool invert, int inputPos) function in struct:JSC::Yarr::ByteTerm
[all...]
H A DYarrInterpreter.cpp121 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
[all...]

Completed in 46 milliseconds