Searched refs:age (Results 1 - 25 of 120) sorted by relevance

12345

/external/apache-http/src/org/apache/http/impl/cookie/
H A DBasicMaxAgeHandler.java56 throw new MalformedCookieException("Missing value for max-age attribute");
58 int age;
60 age = Integer.parseInt(value);
62 throw new MalformedCookieException ("Invalid max-age attribute: "
65 if (age < 0) {
66 throw new MalformedCookieException ("Negative max-age attribute: "
69 cookie.setExpiryDate(new Date(System.currentTimeMillis() + age * 1000L));
/external/chromium_org/third_party/webrtc/common_audio/vad/
H A Dvad_sp.c71 // Pointer to memory for the 16 minimum values and the age of each value of
73 int16_t* age = &self->index_vector[offset]; local
78 // Each value in |smallest_values| is getting 1 loop older. Update |age|, and
81 if (age[i] != 100) {
82 age[i]++;
87 age[j] = age[j + 1];
89 age[15] = 101;
152 age[i] = age[
[all...]
/external/chromium_org/third_party/icu/source/i18n/
H A Dislamcal.cpp357 double age = moonAge(origin, status); local
362 if (age >= 0) {
366 age = moonAge(origin, status);
370 } while (age >= 0);
376 age = moonAge(origin, status);
380 } while (age < 0);
393 * Return the "age" of the moon at the given time; this is the difference
398 * @param time The time at which the moon's age is desired,
403 double age = 0; local
410 return age;
[all...]
/external/icu/icu4c/source/i18n/
H A Dislamcal.cpp357 double age = moonAge(origin, status); local
362 if (age >= 0) {
366 age = moonAge(origin, status);
370 } while (age >= 0);
376 age = moonAge(origin, status);
380 } while (age < 0);
393 * Return the "age" of the moon at the given time; this is the difference
398 * @param time The time at which the moon's age is desired,
403 double age = 0; local
410 return age;
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
H A Dsvga_sampler_view.c143 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;
H A Dsvga_resource_texture.h58 unsigned age; member in struct:svga_texture
H A Dsvga_sampler_view.h67 unsigned age; member in struct:svga_sampler_view
/external/mesa3d/src/gallium/drivers/svga/
H A Dsvga_sampler_view.c143 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;
H A Dsvga_resource_texture.h58 unsigned age; member in struct:svga_texture
H A Dsvga_sampler_view.h67 unsigned age; member in struct:svga_sampler_view
/external/chromium_org/chrome/browser/supervised_user/
H A Dsupervised_user_shared_settings_service_unittest.cc160 FundamentalValue age(8);
165 settings_service_.SetValue(kIdA, "age", FundamentalValue(6));
168 settings_service_.SetValue(kIdA, "age", age);
180 EXPECT_EQ(ToJson(&age), ToJson(settings_service_.GetValue(kIdA, "age")));
195 FundamentalValue age(8);
198 settings_service_.SetValue(kIdA, "age", age);
223 EXPECT_EQ(ToJson(&age), ToJso
[all...]
/external/chromium_org/components/policy/core/common/
H A Dasync_policy_loader.cc129 const TimeDelta age = now - last_modification_clock_; local
130 if (age < kSettleInterval) {
131 *delay = kSettleInterval - age;
/external/wpa_supplicant_8/hostapd/src/utils/
H A Dos.h90 struct os_reltime *age)
95 os_reltime_sub(&now, start, age);
103 struct os_reltime age; local
105 os_reltime_sub(now, ts, &age);
106 return (age.sec > timeout_secs) ||
107 (age.sec == timeout_secs && age.usec > 0);
89 os_reltime_age(struct os_reltime *start, struct os_reltime *age) argument
/external/wpa_supplicant_8/src/utils/
H A Dos.h90 struct os_reltime *age)
95 os_reltime_sub(&now, start, age);
103 struct os_reltime age; local
105 os_reltime_sub(now, ts, &age);
106 return (age.sec > timeout_secs) ||
107 (age.sec == timeout_secs && age.usec > 0);
89 os_reltime_age(struct os_reltime *start, struct os_reltime *age) argument
/external/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Dos.h90 struct os_reltime *age)
95 os_reltime_sub(&now, start, age);
103 struct os_reltime age; local
105 os_reltime_sub(now, ts, &age);
106 return (age.sec > timeout_secs) ||
107 (age.sec == timeout_secs && age.usec > 0);
89 os_reltime_age(struct os_reltime *start, struct os_reltime *age) argument
/external/chromium_org/chrome/browser/password_manager/
H A Dpassword_manager_util_win.cc58 DWORD age = 0; local
64 age = user_info->usri1_password_age;
70 base::Time changed = base::Time::Now() - base::TimeDelta::FromSeconds(age);
117 // Account for clock skew between pulling the password age and
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/
H A Dsunspider-compare-results133 my $age = -M "$dir/$file";
134 if (!defined $newestAge || $age < $newestAge) {
136 $newestAge = $age;
H A Dsunspider159 my $age = -M "$dir/$file";
160 if (!defined $newestAge || $age < $newestAge) {
162 $newestAge = $age;
/external/chromium_org/base/test/
H A Dtest_reg_util_win.cc46 base::TimeDelta age = now - key_time; local
48 if (age > base::TimeDelta::FromHours(24))
/external/chromium_org/android_webview/browser/
H A Ddeferred_gpu_command_service.cc126 base::TimeDelta age(now - idle_tasks_.front().first);
127 if (age < kMaxIdleAge)
/external/chromium_org/remoting/host/policy_hack/
H A Dpolicy_watcher_linux.cc216 base::TimeDelta age = now - last_modification_clock_; local
217 if (age < kSettleInterval) {
218 *delay = kSettleInterval - age;
/external/chromium_org/third_party/icu/source/tools/toolutil/
H A Dppucd.h50 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/icu/icu4c/source/tools/toolutil/
H A Dppucd.h50 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/
H A Dbss.h108 void wpa_bss_flush_by_age(struct wpa_supplicant *wpa_s, int age);
/external/sonivox/arm-fm-22k/lib_src/
H A Deas_synth.h279 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 720 milliseconds

12345