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

1 2 3 4 5 6 7 8 9

  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue100/
Data.java 20 private int age; field in class:Data
24 this.age = 999;
27 public Data(String id, int age) {
29 this.age = age;
41 return age;
44 public void setAge(int age) {
45 this.age = age;
50 return "Data [age=" + age + ", id=" + id + "]"
    [all...]
DataMore.java 26 public DataMore(String id, int age, boolean complete) {
27 super(id, age);
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/constructor/
Person.java 24 private Integer age; field in class:Person
26 public Person(String firstName, String lastName, Integer age) {
29 this.age = age;
56 return age;
59 public void setAge(Integer age) {
60 this.age = age;
TestBean.java 25 private int age; field in class:TestBean
31 public TestBean(final String name, final int age, final Date born) {
33 this.age = age;
42 return age;
53 public void setAge(final int age) {
54 this.age = age;
66 && this.age == o.age && this.born == null ? o.born == null : this.bor
    [all...]
  /external/snakeyaml/src/test/java/examples/staticstate/
JavaBeanWithStaticState.java 20 private int age; field in class:JavaBeanWithStaticState
33 return age;
36 public void setAge(int age) {
37 this.age = age;
Wrapper.java 20 private int age; field in class:Wrapper
26 bean.setAge(age);
41 age = bean.getAge();
53 return age;
56 public void setAge(int age) {
57 this.age = age;
  /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/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue74/
ArrayBeanTest.java 102 private int age; field in class:ArrayBeanTest.ArrayMember
104 public ArrayMember(String name, int age) {
106 this.age = age;
111 this.age = 0;
123 return age;
126 public void setAge(int age) {
127 this.age = age;
134 return age == m.age
    [all...]
  /external/jcommander/src/test/java/com/beust/jcommander/args/
ArgsValidate1.java 8 @Parameter(names = "-age", validateWith = PositiveInteger.class)
9 public Integer age; field in class:ArgsValidate1
  /external/webrtc/webrtc/common_audio/vad/
vad_sp.c 70 // Pointer to memory for the 16 minimum values and the age of each value of
72 int16_t* age = &self->index_vector[offset]; local
77 // Each value in |smallest_values| is getting 1 loop older. Update |age|, and
80 if (age[i] != 100) {
81 age[i]++;
86 age[j] = age[j + 1];
88 age[15] = 101;
151 age[i] = age[i - 1]
    [all...]
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/composer/
ComposerImplTest.java 42 String data = "!!org.yaml.snakeyaml.composer.ComposerImplTest$BeanToCompose {name: Bill, age: 18}";
56 private int age; field in class:ComposerImplTest.BeanToCompose
67 return age;
70 public void setAge(int age) {
71 this.age = age;
  /external/curl/docs/examples/
version-check.pl 61 sub age { subroutine
81 my $r = age($doc{$a}) <=> age($doc{$b});
  /external/testng/src/test/java/test/dataprovider/
IterableTest.java 31 public void verifyNames(String firstName, Integer age) {
32 if (firstName.equals(FN1) && age.equals(LN1)) {
36 if (firstName.equals(FN2) && age.equals(LN2)) {
Sample1Test.java 25 public void verifyNames(String firstName, Integer age) {
26 if (firstName.equals(FN1) && age.equals(LN1)) {
29 if (firstName.equals(FN2) && age.equals(LN2)) {
  /external/shflags/bin/
continuous_build.sh 65 age() { function
90 watchAge=`age "${FLAGS_watch}"`
109 watchAge=`age "${FLAGS_watch}"`
114 watchAge=`age "${FLAGS_watch}"`
  /packages/apps/TV/tests/func/src/com/android/tv/tests/ui/
ParentalControlsTest.java 65 for (int age = minAge; age <= maxAge; age++) {
66 UiObject2 ratingCheckBox = mSidePanelHelper.assertNavigateToItem(String.valueOf(age))
85 for (int age = minAge; age <= maxAge; age++) {
86 UiObject2 ratingCheckBox = mSidePanelHelper.assertNavigateToItem(String.valueOf(age))
88 if (age < selectedAge) {
89 assertTrue("The lower rating age should be unblocked", !ratingCheckBox.isChecked())
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/gslib/addlhelp/
metadata.py 38 -h "Cache-Control:public, max-age=3600" cp -r images \\
90 gsutil -h "Cache-Control:public,max-age=3600" cp -a public-read \\
112 no-cache and max-age Cache-Control parameters.
command_opts.py 47 gsutil -h "Cache-Control:public,max-age=3600" \\
70 respects only the public, private, no-cache, and max-age cache
  /packages/apps/Test/connectivity/sl4n/rapidjson/example/serialize/
serialize.cpp 13 Person(const std::string& name, unsigned age) : name_(name), age_(age) {}
26 writer.String("age");
66 Dependent(const std::string& name, unsigned age, Education* education = 0) : Person(name, age), education_(education) {}
104 Employee(const std::string& name, unsigned age, bool married) : Person(name, age), dependents_(), married_(married) {}
  /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/curl/tests/
http_pipe.py 248 '200 OK', ['Content-Length: 26', 'Cache-Control: max-age=60'], body)
253 '200 OK', ['Content-Length: 26', 'Cache-Control: max-age=60', 'Connection: close'], body)
261 'Cache-Control: max-age=60'], body)
268 'Cache-Control: max-age=60'], body)
276 'Cache-Control: max-age=60'],
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/
ScanDetailCache.java 165 * Method to get cached scan results that are less than 'age' old.
167 * @param age long Time window of desired results.
170 public WifiConfiguration.Visibility getVisibilityByRssi(long age) {
195 + " age = " + age);
197 if ((now_elapsed_ms - (result.timestamp / 1000)) > age) continue;
200 if ((now_ms - result.seen) > age) continue;
224 * @param age long Desired time window for matches.
227 public WifiConfiguration.Visibility getVisibilityByPasspointMatch(long age) {
240 if ((now_ms - result.seen) > age) continue
    [all...]
  /external/icu/icu4c/source/i18n/
islamcal.cpp 426 double age = moonAge(origin, status); local
431 if (age >= 0) {
435 age = moonAge(origin, status);
439 } while (age >= 0);
445 age = moonAge(origin, status);
449 } while (age < 0);
462 * Return the "age" of the moon at the given time; this is the difference
467 * @param time The time at which the moon's age is desired,
472 double age = 0; local
479 return age;
    [all...]

Completed in 764 milliseconds

1 2 3 4 5 6 7 8 9