OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:numSubpatterns
(Results
1 - 7
of
7
) sorted by null
/external/webkit/Source/JavaScriptCore/runtime/
RegExp.h
53
unsigned
numSubpatterns
() const { return m_numSubpatterns; }
RegExpConstructor.h
127
d->lastNumSubPatterns = r->
numSubpatterns
();
StringPrototype.cpp
188
if (backrefIndex > reg->
numSubpatterns
())
194
if (backrefIndex > reg->
numSubpatterns
())
328
// reg->
numSubpatterns
() + 1 for pattern args, + 2 for match start and sourceValue
329
int argCount = reg->
numSubpatterns
() + 1 + 2;
346
for (; i < reg->
numSubpatterns
() + 1; ++i) {
393
for (unsigned i = 0; i < reg->
numSubpatterns
() + 1; ++i) {
734
for (unsigned si = 1; si <= reg->
numSubpatterns
(); ++si) {
[
all
...]
/external/webkit/Source/JavaScriptCore/yarr/
YarrInterpreter.h
313
ByteDisjunction(unsigned
numSubpatterns
, unsigned frameSize)
314
: m_numSubpatterns(
numSubpatterns
)
YarrPattern.cpp
[
all
...]
YarrInterpreter.cpp
[
all
...]
YarrJIT.cpp
40
friend void jitCompile(JSGlobalData*, YarrCodeBlock& jitObject, const UString& pattern, unsigned&
numSubpatterns
, const char*& error, bool ignoreCase, bool multiline);
[
all
...]
Completed in 622 milliseconds