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

1 2 3 4 5 6 7

  /external/apache-http/src/org/apache/http/impl/cookie/
BasicMaxAgeHandler.java 56 throw new MalformedCookieException("Missing value for max-age attribute");
58 int age; local
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/
vad_sp.c 71 // 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[i - 1]
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/
islamcal.cpp 357 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/
islamcal.cpp 357 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/
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_org/chrome/browser/supervised_user/
supervised_user_shared_settings_service_unittest.cc 160 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), ToJson(settings_service_.GetValue(kIdA, "age")))
    [all...]
  /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/wpa_supplicant_8/src/utils/
os.h 90 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);
  /external/chromium_org/chrome/browser/password_manager/
password_manager_util_win.cc 58 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/
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 46 base::TimeDelta age = now - key_time; local
48 if (age > base::TimeDelta::FromHours(24))
  /frameworks/base/wifi/java/android/net/wifi/
ScanResult.java 91 long age = seen - previousSeen; local
93 if (previousSeen > 0 && age > 0 && age < maxAge/2) {
95 double alpha = 0.5 - (double) age / (double) maxAge;
  /packages/apps/Camera2/src_pd/com/android/camera/util/
UsageStatistics.java 43 public void mediaInteraction(String ref, int interactionType, int cause, float 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".
  /external/chromium_org/android_webview/browser/
deferred_gpu_command_service.cc 126 base::TimeDelta age(now - idle_tasks_.front().first);
127 if (age < kMaxIdleAge)
  /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/icu/source/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/icu/icu4c/source/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;... */

Completed in 1016 milliseconds

1 2 3 4 5 6 7