OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:BaseCharToDigit
(Results
1 - 2
of
2
) sorted by null
/external/chromium/base/
string_number_conversions.cc
100
template<typename CHAR, int BASE, bool BASE_LTE_10> class
BaseCharToDigit
{
104
template<typename CHAR, int BASE> class
BaseCharToDigit
<CHAR, BASE, true> {
116
template<typename CHAR, int BASE> class
BaseCharToDigit
<CHAR, BASE, false> {
133
return
BaseCharToDigit
<CHAR, BASE, BASE <= 10>::Convert(c, digit);
/external/chromium_org/base/strings/
string_number_conversions.cc
103
template<typename CHAR, int BASE, bool BASE_LTE_10> class
BaseCharToDigit
{
107
template<typename CHAR, int BASE> class
BaseCharToDigit
<CHAR, BASE, true> {
119
template<typename CHAR, int BASE> class
BaseCharToDigit
<CHAR, BASE, false> {
136
return
BaseCharToDigit
<CHAR, BASE, BASE <= 10>::Convert(c, digit);
Completed in 40 milliseconds