OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:num_captures_
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/re2/re2/testing/
tester.h
81
int
num_captures_
; // regexp_->NumCaptures() cached
member in class:re2::TestInstance
tester.cc
168
num_captures_
(0),
186
num_captures_
= regexp_->NumCaptures();
289
int nsubmatch = 1 +
num_captures_
; // NumCaptures doesn't count $0
528
for (int i = 0; i < 1+
num_captures_
; i++) {
/external/chromium_org/third_party/re2/re2/
re2.cc
203
num_captures_
= -1;
909
ANNOTATE_BENIGN_RACE(&
num_captures_
, "benign race: in the worst case"
911
if (
num_captures_
== -1)
912
num_captures_
= suffix_regexp_->NumCaptures();
913
return
num_captures_
;
[
all
...]
re2.h
706
mutable int
num_captures_
; // Number of capturing groups
member in class:re2::RE2
[
all
...]
Completed in 49 milliseconds