Home | History | Annotate | Download | only in src

Lines Matching refs:Bias

290   // Guess the name of the timezone from the bias.
291 static const char* GuessTimezoneNameFromBias(int bias);
358 // Guess the name of the timezone from the bias.
360 const char* Time::GuessTimezoneNameFromBias(int bias) {
362 switch (-bias) {
395 tzinfo_.Bias = -60;
415 // simply guess the name from the UTC bias of the timezone.
421 GuessTimezoneNameFromBias(tzinfo_.Bias));
426 GuessTimezoneNameFromBias(tzinfo_.Bias));
540 // Compute the offset for DST. The bias parameters in the timezone info
542 int64_t dstofs = -(tzinfo_.Bias + tzinfo_.DaylightBias) * kMsPerMinute;
544 // If the local time offset equals the timezone bias plus the daylight
545 // bias then DST is in effect.