HomeSort by relevance Sort by last modified time
    Searched defs:age (Results 1 - 17 of 17) sorted by null

  /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/bluetooth/glib/tests/
relation-test.c 55 guint age; member in struct:__anon2087
node-test.c 64 guint age; member in struct:__anon2076
  /cts/tests/tests/webkit/src/android/webkit/cts/
CacheManager_CacheResultTest.java 133 final long age = 30 * 60 * 1000; // 30 min local
138 mWebServer.setDocumentAge(age);
157 assertEquals(time - age,
  /external/chromium/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 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/webkit/WebCore/platform/network/
ResourceResponseBase.cpp 253 DEFINE_STATIC_LOCAL(const AtomicString, ageHeader, ("age"));
296 DEFINE_STATIC_LOCAL(const AtomicString, maxAgeDirective, ("max-age"));
387 double ResourceResponseBase::age() const function in class:WebCore::ResourceResponseBase
392 DEFINE_STATIC_LOCAL(const AtomicString, headerName, ("age"));
  /external/wpa_supplicant_6/wpa_supplicant/
events.c 908 struct os_time now, age; local
910 os_time_sub(&now, &wpa_s->pending_eapol_rx_time, &age);
911 if (age.sec == 0 && age.usec < 100000 &&
  /cts/tests/tests/database/src/android/database/cts/
DatabaseUtilsTest.java 50 "age", // 2
65 "name TEXT, age INTEGER, address TEXT);");
131 int age = 21; local
139 String sql = "INSERT INTO test (name, age, address) VALUES (?, ?, ?);";
142 DatabaseUtils.bindObjectToProgram(statement, 2, age);
152 assertEquals(age, cursor.getInt(2));
188 mDatabase.execSQL("INSERT INTO test (name, age, address) VALUES ('Mike', '20', 'LA');");
195 DatabaseUtils.cursorDoubleToContentValues(cursor, "age", contentValues, key);
213 mDatabase.execSQL("INSERT INTO test (name, age, address) VALUES ('Mike', '20', 'LA');");
219 DatabaseUtils.cursorDoubleToCursorValues(cursor, "age", contentValues)
    [all...]
  /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
eas_voicemgt.c 184 pVoice->age = DEFAULT_AGE;
1540 EAS_U16 age; local
    [all...]
  /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
eas_voicemgt.c 184 pVoice->age = DEFAULT_AGE;
1540 EAS_U16 age; local
    [all...]
  /external/sonivox/arm-wt-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
eas_voicemgt.c 184 pVoice->age = DEFAULT_AGE;
1540 EAS_U16 age; local
    [all...]
  /cts/tests/tests/database/src/android/database/sqlite/cts/
SQLiteDatabaseTest.java 66 "age", // 2
496 + "name TEXT, age INTEGER, address TEXT);");
499 int age = 21; local
507 String sql = "INSERT INTO test (name, age, address) VALUES (?, ?, ?);";
510 DatabaseUtils.bindObjectToProgram(insertStatement, 2, age);
521 assertEquals(age, cursor.getInt(COLUMN_AGE_INDEX));
543 + "name TEXT, age INTEGER, address TEXT);");
544 mDatabase.execSQL("INSERT INTO test (name, age, address) VALUES ('Mike', 20, 'LA');");
545 mDatabase.execSQL("INSERT INTO test (name, age, address) VALUES ('Jack', 30, 'London');");
546 mDatabase.execSQL("INSERT INTO test (name, age, address) VALUES ('Jim', 35, 'Chicago');")
    [all...]
  /dalvik/vm/compiler/codegen/arm/
ArmLIR.h 766 int age; \/\/ default is 0, set lazily by the optimizer member in struct:ArmLIR
    [all...]

Completed in 983 milliseconds