OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:kMaxDigit
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/sync/api/
string_ordinal.h
24
static const uint8
kMaxDigit
= 'z';
36
COMPILE_ASSERT(StringOrdinal::
kMaxDigit
== 'z',
/external/chromium_org/sync/internal_api/public/base/
node_ordinal.h
21
static const uint8
kMaxDigit
= kuint8max;
33
COMPILE_ASSERT(static_cast<char>(NodeOrdinal::
kMaxDigit
) == '\xff',
ordinal.h
40
// // and less than
kMaxDigit
.
42
// static const uint8
kMaxDigit
= '9';
49
// kZeroDigit or greater than
kMaxDigit
, is not all zero digits, and
136
static const uint8
kMaxDigit
= Traits::
kMaxDigit
;
139
static const uint8 kMidDigit = kOneDigit + (
kMaxDigit
- kOneDigit) / 2;
141
static const unsigned int kMaxDigitValue =
kMaxDigit
- kZeroDigit;
146
COMPILE_ASSERT(
kMaxDigit
> kMidDigit, OrdinalMaxDigitGreaterThanMidDigit);
203
template <typename Traits> const uint8 Ordinal<Traits>::
kMaxDigit
;
329
std::string end(bytes_.length(),
kMaxDigit
);
[
all
...]
ordinal_unittest.cc
21
static const uint8
kMaxDigit
= '3';
27
static const uint8
kMaxDigit
= '9';
33
static const uint8
kMaxDigit
= kuint8max;
47
COMPILE_ASSERT(TestOrdinal::
kMaxDigit
== '3',
62
COMPILE_ASSERT(LongOrdinal::
kMaxDigit
== '9',
77
COMPILE_ASSERT(static_cast<char>(LargeOrdinal::
kMaxDigit
) == '\xff',
/external/chromium_org/components/autofill/core/browser/
password_generator.cc
19
const int
kMaxDigit
= 57; // Last digit '9'
42
for (int i = kMinDigit; i <=
kMaxDigit
; ++i)
109
ret.push_back(static_cast<char>(base::RandInt(kMinDigit,
kMaxDigit
)));
Completed in 135 milliseconds