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

1 2

  /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/webkit/WebCore/page/
PositionOptions.h 59 void setMaximumAge(int age)
61 ASSERT(age >= 0);
63 m_maximumAge = age;
  /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...]
  /cts/tests/tests/webkit/src/android/webkit/cts/
CacheManager_CacheResultTest.java 131 final long age = 30 * 60 * 1000; // 30 min local
136 mWebServer.setDocumentAge(age);
155 assertEquals(time - age,
  /external/webkit/SunSpider/
sunspider-compare-results 133 my $age = -M "$dir/$file";
134 if (!defined $newestAge || $age < $newestAge) {
136 $newestAge = $age;
sunspider 186 my $age = -M "$dir/$file";
187 if (!defined $newestAge || $age < $newestAge) {
189 $newestAge = $age;
  /dalvik/vm/compiler/codegen/arm/
LocalOptimizations.c 77 if (thisLIR->age >= cUnit->optRound) {
151 newStoreLIR->age = cUnit->optRound;
193 if (thisLIR->age >= cUnit->optRound ||
374 newLoadLIR->age = cUnit->optRound;
478 newLoadLIR->age = cUnit->optRound;
  /external/bluetooth/glib/tests/
relation-test.c 55 guint age; member in struct:__anon1423
node-test.c 64 guint age; member in struct:__anon1412
  /external/webkit/WebCore/platform/network/
ResourceResponseBase.h 94 double age() const;
  /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...]
  /external/libffi/
ltmain.sh     [all...]
  /external/dbus/
ltmain.sh     [all...]
  /external/expat/conftools/
ltmain.sh     [all...]
  /external/jpeg/
ltmain.sh 854 age=0
899 test -n "$4" && age="$4"
920 case "$age" in
923 $echo "$modename: AGE \`$age' is not a nonnegative integer" 1>&2
929 if test $age -gt $current; then
930 $echo "$modename: AGE \`$age' is greater than the current interface number \`$current'" 1>&2
936 version_vars="version_type current age revision"
942 major=`expr $current - $age`
    [all...]
  /external/libpng/
ltmain.sh     [all...]
  /external/srec/srec/cfront/
nisthdr.h 134 void setSpeakerAge(char *age);/*shouln't it be int?*/
  /external/wpa_supplicant_6/wpa_supplicant/
events.c 905 struct os_time now, age; local
907 os_time_sub(&now, &wpa_s->pending_eapol_rx_time, &age);
908 if (age.sec == 0 && age.usec < 100000 &&
  /external/webkit/WebCore/loader/
CachedResource.cpp 132 double ageValue = m_response.age();
  /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...]

Completed in 749 milliseconds

1 2