OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ref_map
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/re2/re2/
regexp.cc
62
static map<Regexp*, int> *
ref_map
;
member in namespace:re2
71
if (
ref_map
!= NULL) {
72
r = (*
ref_map
)[this];
83
if (
ref_map
== NULL) {
84
ref_map
= new map<Regexp*, int>;
88
(*
ref_map
)[this]++;
91
(*
ref_map
)[this] = kMaxRef;
107
int r = (*
ref_map
)[this] - 1;
110
ref_map
->erase(this);
112
(*
ref_map
)[this] = r
[
all
...]
/external/regex-re2/re2/
regexp.cc
62
static map<Regexp*, int> *
ref_map
;
member in namespace:re2
71
if (
ref_map
!= NULL) {
72
r = (*
ref_map
)[this];
83
if (
ref_map
== NULL) {
84
ref_map
= new map<Regexp*, int>;
88
(*
ref_map
)[this]++;
91
(*
ref_map
)[this] = kMaxRef;
107
int r = (*
ref_map
)[this] - 1;
110
ref_map
->erase(this);
112
(*
ref_map
)[this] = r
[
all
...]
Completed in 3637 milliseconds