OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:kMaxNumberLength
(Results
1 - 2
of
2
) sorted by null
/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/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
...]
Completed in 55 milliseconds