/external/chromium_org/net/data/url_request_unittest/ |
redirect-test.html.mock-http-headers | 3 Cache-Control: max-age=10000
|
hsts-multiple-headers.html.mock-http-headers | 6 Strict-Transport-Security: max-age=123 7 Strict-Transport-Security: max-age=123; includeSubdomains
|
hsts-and-hpkp-headers.html.mock-http-headers | 6 Strict-Transport-Security: max-age=12300 7 Strict-Transport-Security: max-age=12300; includeSubdomains 8 Public-Key-Pins: max-age=50000; pin-sha1="Wws2/Z7YhKlX73v3rYHBBxO4OLE="; pin-sha256="9CC/1Ckv3HMym0R5QmBCAdq7cAql/VpDoOV05p1cqUQ="
|
hsts-and-hpkp-headers2.html.mock-http-headers | 6 Strict-Transport-Security: max-age=12300; includeSubdomains 7 Public-Key-Pins: max-age=50000; pin-sha1="K9e3/nFL5j90GuVJOJBv6WXpvcs="; pin-sha256="kd16uBd5KFa9IJjF0X+8B+BXdAWkYYRZruNKDZ0M9Zw="; pin-sha1="Wws2/Z7YhKlX73v3rYHBBxO4OLE=" 8 Public-Key-Pins: max-age=50000; pin-sha1="K9e3/nFL5j90GuVJOJBv6WXpvcs="; pin-sha256="kd16uBd5KFa9IJjF0X+8B+BXdAWkYYRZruNKDZ0M9Zw="; pin-sha1="Wws2/Z7YhKlX73v3rYHBBxO4OLE="; includeSubdomains
|
hsts-headers.html.mock-http-headers | 6 Strict-Transport-Security: max-age=123; includeSubdomains
|
hpkp-headers.html.mock-http-headers | 6 Public-Key-Pins: max-age=50000; pin-sha1="K9e3/nFL5j90GuVJOJBv6WXpvcs="; pin-sha256="kd16uBd5KFa9IJjF0X+8B+BXdAWkYYRZruNKDZ0M9Zw="; pin-sha1="Wws2/Z7YhKlX73v3rYHBBxO4OLE="
|
/external/chromium/net/data/proxy_script_fetcher_unittest/ |
cacheable_1hr.pac.mock-http-headers | 3 Cache-Control: public, max-age=3600
|
/external/chromium_org/net/data/proxy_script_fetcher_unittest/ |
cacheable_1hr.pac.mock-http-headers | 3 Cache-Control: public, max-age=3600
|
/external/chromium_org/net/http/ |
http_security_headers_unittest.cc | 63 EXPECT_FALSE(ParseHSTSHeader("max-age", &max_age, &include_subdomains)); 64 EXPECT_FALSE(ParseHSTSHeader(" max-age", &max_age, 66 EXPECT_FALSE(ParseHSTSHeader(" max-age ", &max_age, 68 EXPECT_FALSE(ParseHSTSHeader("max-age=", &max_age, &include_subdomains)); 69 EXPECT_FALSE(ParseHSTSHeader(" max-age=", &max_age, 71 EXPECT_FALSE(ParseHSTSHeader(" max-age =", &max_age, 73 EXPECT_FALSE(ParseHSTSHeader(" max-age= ", &max_age, 75 EXPECT_FALSE(ParseHSTSHeader(" max-age = ", &max_age, 77 EXPECT_FALSE(ParseHSTSHeader(" max-age = xy", &max_age, 79 EXPECT_FALSE(ParseHSTSHeader(" max-age = 3488a923", &max_age [all...] |
/cts/tests/tests/database/src/android/database/sqlite/cts/ |
SQLiteQueryBuilderTest.java | 66 sqliteQueryBuilder.appendWhere("age=20"); 67 String sql = sqliteQueryBuilder.buildQuery(new String[] { "age", "address" }, 70 expected = "SELECT age, address FROM " + TEST_TABLE_NAME + " WHERE (age=20)"; 76 sqliteQueryBuilder.appendWhere("age>32"); 77 sql = sqliteQueryBuilder.buildQuery(new String[] { "age", "address" }, 80 expected = "SELECT DISTINCT age, address FROM " + EMPLOYEE_TABLE_NAME + " WHERE (age>32)"; 86 sqliteQueryBuilder.appendWhereEscapeString("age>32"); 87 sql = sqliteQueryBuilder.buildQuery(new String[] { "age", "address" } [all...] |
/cts/tests/tests/database/src/android/database/cts/ |
DatabaseUtilsTest.java | 48 "age", // 2 64 "name TEXT, age INTEGER, address TEXT);"); 112 int age = 21; local 121 String sql = "INSERT INTO " + TABLE_NAME + " (name, age, address) VALUES (?, ?, ?);"; 124 DatabaseUtils.bindObjectToProgram(statement, 2, age); 134 assertEquals(age, cursor.getInt(2)); 158 mDatabase.execSQL("INSERT INTO " + TABLE_NAME + " (name, age, address)" + 167 DatabaseUtils.cursorDoubleToContentValues(cursor, "age", contentValues, key); 178 mDatabase.execSQL("INSERT INTO " + TABLE_NAME + " (name, age, address)" + 186 DatabaseUtils.cursorDoubleToCursorValues(cursor, "age", contentValues) [all...] |
/external/libffi/ |
libtool-version | 23 # then increment age. 26 # release, then set age to 0. 28 # CURRENT:REVISION:AGE
|
/packages/apps/UnifiedEmail/src/org/apache/commons/io/filefilter/ |
AgeFileFilter.java | 54 * Constructs a new age file filter for files equal to or older than
57 * @param cutoff the threshold age of the files
64 * Constructs a new age file filter for files on any one side
67 * @param cutoff the threshold age of the files
77 * Constructs a new age file filter for files older than (at or before)
80 * @param cutoffDate the threshold age of the files
87 * Constructs a new age file filter for files on any one side
90 * @param cutoffDate the threshold age of the files
99 * Constructs a new age file filter for files older than (at or before)
103 * time is usesd as the threshold age of the files [all...] |
/frameworks/base/tests/CoreTests/android/core/ |
HttpHeaderTest.java | 27 static final String CACHE_CONTROL_MAX_AGE = "Cache-Control:max-age=15"; 29 static final String CACHE_CONTROL_COMPOUND = "Cache-Control: no-cache, max-age=200000"; 30 static final String CACHE_CONTROL_COMPOUND2 = "Cache-Control: max-age=200000, no-cache"; 58 assertEquals("max-age=15", h.getCacheControl()); 63 assertEquals("max-age=15,private", h.getCacheControl());
|
/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/chromium_org/third_party/WebKit/Source/modules/geolocation/ |
PositionOptions.h | 59 void setMaximumAge(int age) 61 ASSERT(age >= 0); 63 m_maximumAge = age;
|
/external/stlport/stlport/stl/config/ |
_ibm.h | 6 # define _STLP_COMPILER "Visual Age C++" 30 * # define _STLP_WIN32THREADS 1 Only Visual Age 3.5 for Windows 67 * Visual Age C++ 3.x 111 /* AIX xlC, Visual Age 3.0 for OS/2 and MS */
|
/ndk/sources/cxx-stl/stlport/stlport/stl/config/ |
_ibm.h | 6 # define _STLP_COMPILER "Visual Age C++" 30 * # define _STLP_WIN32THREADS 1 Only Visual Age 3.5 for Windows 67 * Visual Age C++ 3.x 111 /* AIX xlC, Visual Age 3.0 for OS/2 and MS */
|
/prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/config/ |
_ibm.h | 6 # define _STLP_COMPILER "Visual Age C++" 30 * # define _STLP_WIN32THREADS 1 Only Visual Age 3.5 for Windows 67 * Visual Age C++ 3.x 111 /* AIX xlC, Visual Age 3.0 for OS/2 and MS */
|
/prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/config/ |
_ibm.h | 6 # define _STLP_COMPILER "Visual Age C++" 30 * # define _STLP_WIN32THREADS 1 Only Visual Age 3.5 for Windows 67 * Visual Age C++ 3.x 111 /* AIX xlC, Visual Age 3.0 for OS/2 and MS */
|
/prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/config/ |
_ibm.h | 6 # define _STLP_COMPILER "Visual Age C++" 30 * # define _STLP_WIN32THREADS 1 Only Visual Age 3.5 for Windows 67 * Visual Age C++ 3.x 111 /* AIX xlC, Visual Age 3.0 for OS/2 and MS */
|
/prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/config/ |
_ibm.h | 6 # define _STLP_COMPILER "Visual Age C++" 30 * # define _STLP_WIN32THREADS 1 Only Visual Age 3.5 for Windows 67 * Visual Age C++ 3.x 111 /* AIX xlC, Visual Age 3.0 for OS/2 and MS */
|
/prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/stl/config/ |
_ibm.h | 6 # define _STLP_COMPILER "Visual Age C++" 30 * # define _STLP_WIN32THREADS 1 Only Visual Age 3.5 for Windows 67 * Visual Age C++ 3.x 111 /* AIX xlC, Visual Age 3.0 for OS/2 and MS */
|
/external/chromium/net/base/ |
transport_security_state_unittest.cc | 28 "max-age", &max_age, &include_subdomains)); 30 " max-age", &max_age, &include_subdomains)); 32 " max-age ", &max_age, &include_subdomains)); 34 "max-age=", &max_age, &include_subdomains)); 36 " max-age=", &max_age, &include_subdomains)); 38 " max-age =", &max_age, &include_subdomains)); 40 " max-age= ", &max_age, &include_subdomains)); 42 " max-age = ", &max_age, &include_subdomains)); 44 " max-age = xy", &max_age, &include_subdomains)); 46 " max-age = 3488a923", &max_age, &include_subdomains)) [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;
|