Home
last modified time | relevance | path

Searched refs:backTrack (Results 1 – 4 of 4) sorted by relevance

/external/webkit/JavaScriptCore/yarr/
DRegexInterpreter.cpp72 …static inline void appendParenthesesDisjunctionContext(BackTrackInfoParentheses* backTrack, Parent… in appendParenthesesDisjunctionContext() argument
74 context->next = backTrack->lastContext; in appendParenthesesDisjunctionContext()
75 backTrack->lastContext = context; in appendParenthesesDisjunctionContext()
76 ++backTrack->matchAmount; in appendParenthesesDisjunctionContext()
79 static inline void popParenthesesDisjunctionContext(BackTrackInfoParentheses* backTrack) in popParenthesesDisjunctionContext() argument
81 ASSERT(backTrack->matchAmount); in popParenthesesDisjunctionContext()
82 ASSERT(backTrack->lastContext); in popParenthesesDisjunctionContext()
83 backTrack->lastContext = backTrack->lastContext->next; in popParenthesesDisjunctionContext()
84 --backTrack->matchAmount; in popParenthesesDisjunctionContext()
376 …BackTrackInfoPatternCharacter* backTrack = reinterpret_cast<BackTrackInfoPatternCharacter*>(contex… in backtrackPatternCharacter() local
[all …]
/external/chromium/third_party/icu/public/i18n/unicode/
Dregex.h1148 inline void backTrack(int32_t &inputIdx, int32_t &patIdx);
/external/icu4c/i18n/unicode/
Dregex.h1618 inline void backTrack(int64_t &inputIdx, int32_t &patIdx);
/external/webkit/JavaScriptCore/
DChangeLog12761 method is accessing backTrack->lastContext which is the context