Lines Matching defs:id
53 // Fallback time zone ID used in case of an unexpected error.
105 void SetTimezoneIDFromString(const std::string& id) {
112 FilePath timezone_file(kTimezoneFilesDir + id);
148 std::string id;
149 UTF16ToUTF8(unicode.getBuffer(), unicode.length(), &id);
150 VLOG(1) << "Setting timezone to " << id;
151 chromeos::SetTimezoneIDFromString(id);
178 std::string id = GetTimezoneIDAsString();
179 if (id.empty()) {
180 id = kFallbackTimeZoneId;
181 LOG(ERROR) << "Got an empty string for timezone, default to " << id;
184 icu::TimeZone::createTimeZone(icu::UnicodeString::fromUTF8(id));
187 VLOG(1) << "Timezone is " << id;