HomeSort by relevance Sort by last modified time
    Searched refs:age (Results 1 - 25 of 113) sorted by null

1 2 3 4 5

  /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/chrome/browser/policy/
async_policy_loader.cc 129 const base::TimeDelta age = now - last_modification_clock_; local
130 if (age < kSettleInterval) {
131 *delay = kSettleInterval - age;
  /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;
  /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/chromium_org/content/browser/geolocation/
network_location_request.cc 178 int age = kint32min; // Invalid so AddInteger() will ignore. local
180 // Convert absolute timestamps into a relative age.
183 age = static_cast<int>(delta_ms);
187 AddWifiData(wifi_data, age, &request);
233 AddInteger("age", age_milliseconds, wifi_dict);
  /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);
  /external/sonivox/arm-fm-22k/lib_src/
eas_synth.h 279 EAS_U16 age; /* large value means old note */ member in struct:s_synth_voice_tag
385 EAS_U16 age; member in struct:s_voice_mgr_tag
  /external/sonivox/arm-hybrid-22k/lib_src/
eas_synth.h 279 EAS_U16 age; /* large value means old note */ member in struct:s_synth_voice_tag
385 EAS_U16 age; member in struct:s_voice_mgr_tag

Completed in 1901 milliseconds

1 2 3 4 5