Home
last modified time | relevance | path

Searched defs:RegExpConstructorPrivate (Results 1 – 1 of 1) sorted by relevance

/external/webkit/JavaScriptCore/runtime/
DRegExpConstructor.cpp92 struct RegExpConstructorPrivate : FastAllocBase { struct
94 RegExpConstructorPrivate() in RegExpConstructorPrivate() argument
101 const Vector<int, 32>& lastOvector() const { return ovector[lastOvectorIndex]; } in lastOvector()
102 Vector<int, 32>& lastOvector() { return ovector[lastOvectorIndex]; } in lastOvector()
103 Vector<int, 32>& tempOvector() { return ovector[lastOvectorIndex ? 0 : 1]; } in tempOvector()
104 void changeLastOvector() { lastOvectorIndex = lastOvectorIndex ? 0 : 1; } in changeLastOvector()
106 UString input;
107 UString lastInput;
108 Vector<int, 32> ovector[2];
109 unsigned lastNumSubPatterns : 30;
[all …]