Home
last modified time | relevance | path

Searched refs:date_value (Results 1 – 3 of 3) sorted by relevance

/external/lldb/source/DataFormatters/
DCocoa.cpp507 double date_value = 0.0; in NSDateSummaryProvider() local
522 date_value = *((double*)&date_value_bits); in NSDateSummaryProvider()
528 date_value = *((double*)&date_value_bits); in NSDateSummaryProvider()
537 date_value = *((double*)&date_value_bits); in NSDateSummaryProvider()
545 date_value = *((double*)&date_value_bits); in NSDateSummaryProvider()
547 if (date_value == -63114076800) in NSDateSummaryProvider()
556 epoch = epoch + (time_t)date_value; in NSDateSummaryProvider()
/external/chromium_org/net/http/
Dhttp_response_headers.cc1012 Time date_value; in GetFreshnessLifetime() local
1013 if (!GetDateValue(&date_value)) in GetFreshnessLifetime()
1014 date_value = response_time; in GetFreshnessLifetime()
1019 if (expires_value > date_value) in GetFreshnessLifetime()
1020 return expires_value - date_value; in GetFreshnessLifetime()
1056 if (last_modified_value <= date_value) in GetFreshnessLifetime()
1057 return (date_value - last_modified_value) / 10; in GetFreshnessLifetime()
1101 Time date_value; in GetCurrentAge() local
1102 if (!GetDateValue(&date_value)) in GetCurrentAge()
1103 date_value = response_time; in GetCurrentAge()
[all …]
/external/chromium_org/chrome/browser/metrics/variations/
Dvariations_service.cc212 const int64 date_value = local_state->GetInt64(prefs::kVariationsSeedDate); in GetReferenceDateForExpiryChecks() local
213 const base::Time seed_date = base::Time::FromInternalValue(date_value); in GetReferenceDateForExpiryChecks()