HomeSort by relevance Sort by last modified time
    Searched refs:age (Results 26 - 50 of 219) sorted by null

12 3 4 5 6 7 8 9

  /external/icu/android_icu4j/src/main/tests/android/icu/dev/util/
ElapsedTimer.java 102 long age = end - start; local
103 long diff = age/1000; // millis per second. Workaround ticket:7936 by using whole number seconds.
  /external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/
ElapsedTimer.java 101 long age = end - start; local
102 long diff = age/1000; // millis per second. Workaround ticket:7936 by using whole number seconds.
  /external/testng/src/test/java/test/mustache/
MustacheTest.java 26 public static class Age {
27 public int age; field in class:MustacheTest.Age
28 public Age(int a) {
29 this.age = a;
36 private static final List<Age> AGES = new ArrayList<>(
37 Arrays.asList(new Age(42), new Age(43)));
81 ":@{{#people}}{{name}}{{#ages}}{{age}}{{/ages}}@{{/people}}!_",
  /packages/apps/TV/src/com/android/tv/parental/
ContentRatingLevelPolicy.java 32 private static final int AGE_THRESHOLD_FOR_LEVEL_LOW = -1; // Highest age for each rating system
52 ParentalControlSettings settings, ContentRatingsManager manager, int age) {
59 int ageLimit = 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/icu/android_icu4j/src/main/java/android/icu/util/
IslamicCalendar.java 622 double age = moonAge(origin); local
657 double age = 0; local
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
IslamicCalendar.java 644 double age = moonAge(origin); local
679 double age = 0; local
    [all...]
  /external/autotest/site_utils/admin/
clean_staged_images.py 53 @param max_age_hours: The maximum allowed age of a build in hours.
59 age = os.stat(timestamp_path).st_mtime
60 if age < cutoff:
119 parser.add_option('-a', '--max-age', default=24, type=int,
121 parser.add_option('-p', '--max-paladin-age', default=24, type=int,
  /external/chromium-trace/catapult/third_party/gsutil/gslib/addlhelp/
acls.py 97 Cache-Control header of "Cache-Control:private, max-age=0, no-transform" on
  /external/google-breakpad/src/tools/windows/converter/
ms_symbol_server_converter.h 101 // component fields: either a GUID and age, or signature and age. If
109 int age() const { return age_; } function in class:google_breakpad::GUIDOrSignatureIdentifier
121 // All identifiers used here have age fields, which indicate a specific
  /packages/apps/Camera2/src_pd/com/android/camera/stats/
UsageStatistics.java 45 public void mediaInteraction(String ref, int interactionType, int cause, float age) {
  /prebuilts/gdb/darwin-x86/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/gdb/linux-x86/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/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/connectivity/shill/supplicant/
mock_supplicant_interface_proxy.h 42 MOCK_METHOD1(FlushBSS, bool(const uint32_t& age));
supplicant_interface_proxy_interface.h 39 virtual bool FlushBSS(const uint32_t& age) = 0;
  /external/iproute2/ip/
iplink_vxlan.c 67 __u32 age = 0; local
150 else if (get_u32(&age, *argv, 0))
289 else if (age)
290 addattr32(n, 1024, IFLA_VXLAN_AGEING, age);
412 __u32 age = rta_getattr_u32(tb[IFLA_VXLAN_AGEING]); local
413 if (age == 0)
416 fprintf(f, "ageing %u ", age);
  /external/chromium-trace/catapult/third_party/gsutil/gslib/commands/
setmeta.py 60 -h "Cache-Control:public, max-age=3600" \\
68 -h "Cache-Control:public, max-age=3600" \\
84 max-age=0, no-transform" on such objects. You can do this with the command:
87 -h "Cache-Control:private, max-age=0, no-transform" gs://bucket/*.html
  /external/guice/extensions/assistedinject/test/com/google/inject/assistedinject/
ExtensionSpiTest.java 106 Key.get(Integer.class, named("age")));
139 StrangeCat createStrangeCatWithConstructorForAge(Integer age);
156 @AssistedInject StrangeCat(@Assisted Integer age) {}
161 @Named("age") Integer age, @Named("petName") String petName) {}
176 bind(Integer.class).annotatedWith(named("age")).toInstance(12);
  /external/libbrillo/brillo/
any_unittest.cc 212 int age; member in struct:Person
218 val.GetPtr<Person>()->age /= 2;
220 EXPECT_EQ(20, val.Get<Person>().age);
222 EXPECT_EQ(40, val2.Get<Person>().age);
298 int age; member in struct:Person
  /frameworks/base/packages/Osu/src/com/android/hotspot2/osu/
IconCache.java 112 private long age(long now) { method in class:IconCache.QueryEntry
364 long age = queryEntry.age(now); local
365 if (age > RequeryTimeHigh) {
378 } else if (age > RequeryTimeLow) {
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/
WifiLastResortWatchdog.java 137 // If we saw a network, set its Age to -1 here, aging iteration will set it to 0
138 availableNetworkFailureCount.age = -1;
148 if (entry.getValue().age < MAX_BSSID_AGE - 1) {
149 entry.getValue().age++;
512 public int age = 0; field in class:WifiLastResortWatchdog.AvailableNetworkFailureCount
553 + ", Age: " + age;
  /external/curl/lib/vtls/
vtls.c 405 (*general_age)++; /* increase general age */
406 check->age = *general_age; /* set this as used in this age */
430 session->age = 0; /* fresh */
470 long oldest_age=data->state.session[0].age; /* zero if unused */
511 if(data->state.session[i].age < oldest_age) {
512 oldest_age = data->state.session[i].age;
525 store->age = *general_age; /* set current age */
  /external/v8/src/arm64/
codegen-arm64.cc 342 void Code::GetCodeAgeAndParity(Isolate* isolate, byte* sequence, Age* age,
345 *age = kNoAgeCodeAge;
350 GetCodeAgeAndParity(stub, age, parity);
357 Code::Age age,
361 if (age == kNoAgeCodeAge) {
364 Code * stub = GetCodeAgeStub(isolate, age, parity);

Completed in 1011 milliseconds

12 3 4 5 6 7 8 9