Home | History | Annotate | Download | only in src

Lines Matching full:bias

305   // Guess the name of the timezone from the bias.
306 static const char* GuessTimezoneNameFromBias(int bias);
373 // Guess the name of the timezone from the bias.
375 const char* Time::GuessTimezoneNameFromBias(int bias) {
377 switch (-bias) {
410 tzinfo_.Bias = -60;
432 // simply guess the name from the UTC bias of the timezone.
438 GuessTimezoneNameFromBias(tzinfo_.Bias));
443 GuessTimezoneNameFromBias(tzinfo_.Bias));
557 // Compute the offset for DST. The bias parameters in the timezone info
559 int64_t dstofs = -(tzinfo_.Bias + tzinfo_.DaylightBias) * kMsPerMinute;
561 // If the local time offset equals the timezone bias plus the daylight
562 // bias then DST is in effect.