Lines Matching refs:base
9 #include "base/i18n/char_iterator.h"
10 #include "base/logging.h"
11 #include "base/string_number_conversions.h"
12 #include "base/string_tokenizer.h"
13 #include "base/string_util.h"
14 #include "base/time.h"
15 #include "base/utf_string_conversions.h"
160 const base::Time& current_time,
161 base::Time* result) {
162 base::Time::Exploded time_exploded = { 0 };
167 if (!base::StringToInt(day, &time_exploded.day_of_month))
172 if (!base::StringToInt(rest, &time_exploded.year)) {
175 if (!base::StringToInt(rest.begin(),
180 if (!base::StringToInt(rest.begin() + 3,
186 if (!base::StringToInt(rest.begin(),
191 if (!base::StringToInt(rest.begin() + 2,
200 base::Time::Exploded current_exploded;
215 *result = base::Time::FromLocalExploded(time_exploded);
221 base::i18n::UTF16CharIterator iter(&text);