/external/apache-http/src/org/apache/http/impl/cookie/ |
BasicMaxAgeHandler.java | 50 throw new MalformedCookieException("Missing value for max-age attribute"); 52 int age; local 54 age = Integer.parseInt(value); 56 throw new MalformedCookieException ("Invalid max-age attribute: " 59 if (age < 0) { 60 throw new MalformedCookieException ("Negative max-age attribute: " 63 cookie.setExpiryDate(new Date(System.currentTimeMillis() + age * 1000L));
|
/external/chromium_org/third_party/WebKit/Source/modules/geolocation/ |
PositionOptions.h | 59 void setMaximumAge(int age) 61 ASSERT(age >= 0); 63 m_maximumAge = age;
|
/external/chromium_org/third_party/icu/source/i18n/ |
islamcal.cpp | 238 double age = moonAge(origin, status); local 243 if (age >= 0) { 247 age = moonAge(origin, status); 251 } while (age >= 0); 257 age = moonAge(origin, status); 261 } while (age < 0); 274 * Return the "age" of the moon at the given time; this is the difference 279 * @param time The time at which the moon's age is desired, 284 double age = 0; local 291 return age; [all...] |
/external/icu4c/i18n/ |
islamcal.cpp | 241 double age = moonAge(origin, status); local 246 if (age >= 0) { 250 age = moonAge(origin, status); 254 } while (age >= 0); 260 age = moonAge(origin, status); 264 } while (age < 0); 277 * Return the "age" of the moon at the given time; this is the difference 282 * @param time The time at which the moon's age is desired, 287 double age = 0; local 294 return age; [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/ |
svga_sampler_view.c | 143 sv->age = tex->age; 174 unsigned age = 0; local 182 age = tex->age; 191 if (v->age < tex->view_age[i]) 201 v->age = age;
|
svga_resource_texture.h | 58 unsigned age; member in struct:svga_texture
|
svga_sampler_view.h | 67 unsigned age; member in struct:svga_sampler_view
|
/external/mesa3d/src/gallium/drivers/svga/ |
svga_sampler_view.c | 143 sv->age = tex->age; 174 unsigned age = 0; local 182 age = tex->age; 191 if (v->age < tex->view_age[i]) 201 v->age = age;
|
svga_resource_texture.h | 58 unsigned age; member in struct:svga_texture
|
svga_sampler_view.h | 67 unsigned age; member in struct:svga_sampler_view
|
/external/chromium/chrome/browser/policy/ |
file_based_policy_loader.cc | 140 base::TimeDelta age = now - last_modification_clock_; local 141 if (age < settle_interval_) { 142 *delay = settle_interval_ - age;
|
/external/chromium_org/components/policy/core/common/ |
async_policy_loader.cc | 129 const TimeDelta age = now - last_modification_clock_; local 130 if (age < kSettleInterval) { 131 *delay = kSettleInterval - age;
|
/external/chromium_org/chrome/browser/password_manager/ |
password_manager_util_win.cc | 56 DWORD age = 0; local 62 age = user_info->usri1_password_age; 68 base::Time changed = base::Time::Now() - base::TimeDelta::FromSeconds(age); 114 // Account for clock skew between pulling the password age and
|
/external/chromium_org/remoting/host/policy_hack/ |
policy_watcher_linux.cc | 216 base::TimeDelta age = now - last_modification_clock_; local 217 if (age < kSettleInterval) { 218 *delay = kSettleInterval - age;
|
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/ |
sunspider-compare-results | 133 my $age = -M "$dir/$file"; 134 if (!defined $newestAge || $age < $newestAge) { 136 $newestAge = $age;
|
sunspider | 159 my $age = -M "$dir/$file"; 160 if (!defined $newestAge || $age < $newestAge) { 162 $newestAge = $age;
|
/external/chromium_org/base/test/ |
test_reg_util_win.cc | 44 base::TimeDelta age = now - key_time; local 46 if (age > base::TimeDelta::FromHours(24))
|
/external/chromium_org/chrome/browser/invalidation/ |
ticl_invalidation_service.cc | 224 base::TimeDelta age = base::Time::Now() - auth_token_time; local 225 if (age < base::TimeDelta::FromHours(1)) { 228 age, 234 age.InDays());
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/ |
dep_util.py | 19 Return false if both exist and 'target' is the same age or younger 23 will have the same "age".
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/ |
dep_util.py | 19 Return false if both exist and 'target' is the same age or younger 23 will have the same "age".
|
/system/core/libcorkscrew/ |
map_info.c | 225 int64_t age = time - data->timestamp; local 226 if (age >= MAX_CACHE_AGE) { 227 ALOGV("Invalidated my_map_info_list %p, age=%lld.", g_my_map_info_list, age); 231 ALOGV("Reusing my_map_info_list %p, age=%lld.", g_my_map_info_list, age);
|
/external/chromium_org/chrome_frame/cfinstall/src/stub/ |
overlaydelegate.js | 153 // var age = 365 * 24 * 60 * 60 * 1000; 154 // document.cookie = "disableGCFCheck=1;path=/;max-age="+age;
|
/external/wpa_supplicant_8/src/ap/ |
ctrl_iface_ap.c | 27 struct os_time now, age; local 34 os_time_sub(&now, &sta->connected_time, &age); 37 (unsigned int) age.sec);
|
/external/icu4c/tools/toolutil/ |
ppucd.h | 50 UVersionInfo age; member in struct:UniProps 79 /** defaults;0000..10FFFF;age=NA;bc=L;... */ 81 /** block;0000..007F;age=1.1;blk=ASCII;ea=Na;... */
|
/external/wpa_supplicant_8/wpa_supplicant/ |
bss.h | 107 void wpa_bss_flush_by_age(struct wpa_supplicant *wpa_s, int age);
|