/external/chromium_org/components/variations/ |
processed_study.h | 23 bool Init(const Study* study, bool is_expired); 31 bool is_expired() const { return is_expired_; } function in class:chrome_variations::ProcessedStudy 35 bool is_expired,
|
processed_study.cc | 83 bool ProcessedStudy::Init(const Study* study, bool is_expired) { 89 is_expired_ = is_expired; 97 bool is_expired, 100 if (processed_study.Init(study, is_expired)) {
|
variations_seed_processor.h | 85 bool is_expired, 111 // Disables the trial if |processed_study.is_expired| is true.
|
variations_seed_processor.cc | 305 if (processed_study.is_expired())
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
_MozillaCookieJar.py | 102 if not ignore_expires and c.is_expired(now): 125 if not ignore_expires and cookie.is_expired(now):
|
_LWPCookieJar.py | 73 if not ignore_expires and cookie.is_expired(now): 161 if not ignore_expires and c.is_expired(now):
|
cookielib.py | 774 def is_expired(self, now=None): member in class:Cookie [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
_MozillaCookieJar.py | 102 if not ignore_expires and c.is_expired(now): 125 if not ignore_expires and cookie.is_expired(now):
|
_LWPCookieJar.py | 73 if not ignore_expires and cookie.is_expired(now): 161 if not ignore_expires and c.is_expired(now):
|
cookielib.py | 774 def is_expired(self, now=None): member in class:Cookie [all...] |
/external/chromium_org/net/cert/ |
crl_set.h | 92 // ForTesting returns a CRLSet for testing. If |is_expired| is true, calling 97 static CRLSet* ForTesting(bool is_expired,
|
crl_set.cc | 592 CRLSet* CRLSet::ForTesting(bool is_expired, 596 if (is_expired)
|
/external/chromium_org/chrome/browser/net/ |
evicted_domain_cookie_counter.h | 54 bool is_expired(const base::Time& current_time) const { function in struct:chrome_browser_net::EvictedDomainCookieCounter::EvictedCookie
|
evicted_domain_cookie_counter.cc | 144 if (it->second->is_expired(current_time)) { 195 if (!it->second->is_expired(current_time)) // Reinstatement.
|
/external/chromium_org/chrome/browser/extensions/api/identity/ |
identity_api.h | 246 bool is_expired() const;
|
identity_api.cc | 646 if (is_expired()) 660 bool IdentityTokenCacheValue::is_expired() const { function in class:extensions::IdentityTokenCacheValue
|
/external/dnsmasq/src/ |
cache.c | 246 static int is_expired(time_t now, struct crec *crecp) function 277 if (is_expired(now, crecp) || is_outdated_cname_pointer(crecp)) 311 if (is_expired(now, crecp)) 512 if (!is_expired(now, crecp) && !is_outdated_cname_pointer(crecp)) 604 if (!is_expired(now, crecp)) [all...] |