Searched refs:after_ (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/v8/src/
H A Ddate.cc40 after_ = &dst_[1];
181 if (after_->offset_ms == offset_ms &&
182 after_->start_sec <= time_sec + kDefaultDSTDeltaInSec &&
183 time_sec <= after_->end_sec) {
184 // Extend the after_ segment.
185 after_->start_sec = time_sec;
187 // The after_ segment is either invalid or starts too late.
188 if (after_->start_sec <= after_->end_sec) {
189 // If the after_ segmen
150 DCHECK(month < 12); static const int year_delta = 399999; static const int base_day = 365 * (1970 + year_delta) + (1970 + year_delta) / 4 - (1970 + year_delta) / 100 + (1970 + year_delta) / 400; int year1 = year + year_delta; int day_from_year = 365 * year1 + year1 / 4 - year1 / 100 + year1 / 400 - base_day; if ((year % 4 != 0) || (year % 100 == 0 && year % 400 != 0)) { return day_from_year + day_from_month[month]; } return day_from_year + day_from_month_leap[month]; } void DateCache::ExtendTheAfterSegment(int time_sec, int offset_ms) { if (after_->offset_ms == offset_ms && after_->start_sec <= time_sec + kDefaultDSTDeltaInSec && time_sec <= after_->end_sec) argument
[all...]
H A Ddate.h237 // Sets the before_ and the after_ segments from the DST cache such that
239 // the after_ segment start later than the given time.
241 // The last_used counters of the before_ and after_ are updated.
248 // Extends the after_ segment with the given point or resets it
265 DST* after_;
/external/chromium_org/tools/gn/
H A Dparse_tree.h48 const std::vector<Token>& after() const { return after_; }
50 after_.push_back(c);
60 // For top-level expressions only, after_ lists whole-line comments
62 std::vector<Token> after_; member in class:Comments

Completed in 164 milliseconds