OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:IrregexpNumberOfCaptures
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/v8/src/
jsregexp.cc
493
int RegExpImpl::
IrregexpNumberOfCaptures
(FixedArray* re) {
540
(
IrregexpNumberOfCaptures
(FixedArray::cast(regexp->data())) + 1) * 2;
544
return (
IrregexpNumberOfCaptures
(FixedArray::cast(regexp->data())) + 1) * 2;
565
ASSERT(output_size >= (
IrregexpNumberOfCaptures
(*irregexp) + 1) * 2);
608
(
IrregexpNumberOfCaptures
(*irregexp) + 1) * 2;
672
IrregexpNumberOfCaptures
(FixedArray::cast(regexp->data()));
[
all
...]
jsregexp.h
225
static int
IrregexpNumberOfCaptures
(FixedArray* re);
[
all
...]
/external/v8/src/
jsregexp.cc
399
int RegExpImpl::
IrregexpNumberOfCaptures
(FixedArray* re) {
446
return (
IrregexpNumberOfCaptures
(FixedArray::cast(regexp->data())) + 1) * 2;
467
ASSERT(output.length() >= (
IrregexpNumberOfCaptures
(*irregexp) + 1) * 2);
507
(
IrregexpNumberOfCaptures
(*irregexp) + 1) * 2;
558
(
IrregexpNumberOfCaptures
(FixedArray::cast(jsregexp->data())) + 1) * 2;
[
all
...]
jsregexp.h
176
static int
IrregexpNumberOfCaptures
(FixedArray* re);
[
all
...]
Completed in 146 milliseconds