OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:kMaxNumberLength
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/re2/re2/
re2.cc
988
static const int
kMaxNumberLength
= 32;
990
// REQUIRES "buf" must have length at least
kMaxNumberLength
+1
1029
if (n >
kMaxNumberLength
) return "";
1045
char buf[
kMaxNumberLength
+1];
1062
char buf[
kMaxNumberLength
+1];
[
all
...]
/external/chromium_org/third_party/re2/util/
pcre.cc
732
static const int
kMaxNumberLength
= 32;
734
// PCREQUIPCRES "buf" must have length at least
kMaxNumberLength
+1
753
if (n >
kMaxNumberLength
) return ""; // Input too big to be a valid number
768
char buf[
kMaxNumberLength
+1];
785
char buf[
kMaxNumberLength
+1];
856
char buf[
kMaxNumberLength
+1];
873
char buf[
kMaxNumberLength
+1];
[
all
...]
/external/regex-re2/re2/
re2.cc
970
static const int
kMaxNumberLength
= 32;
972
// REQUIRES "buf" must have length at least
kMaxNumberLength
+1
1011
if (n >
kMaxNumberLength
) return "";
1027
char buf[
kMaxNumberLength
+1];
1044
char buf[
kMaxNumberLength
+1];
[
all
...]
/external/regex-re2/util/
pcre.cc
727
static const int
kMaxNumberLength
= 32;
729
// PCREQUIPCRES "buf" must have length at least
kMaxNumberLength
+1
748
if (n >
kMaxNumberLength
) return ""; // Input too big to be a valid number
763
char buf[
kMaxNumberLength
+1];
780
char buf[
kMaxNumberLength
+1];
851
char buf[
kMaxNumberLength
+1];
868
char buf[
kMaxNumberLength
+1];
[
all
...]
Completed in 475 milliseconds