Searched refs:getRequestProperty (Results 1 - 5 of 5) sorted by relevance

/dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/net/
H A DHttpURLConnectionTest.java205 * @tests java.net.HttpURLConnection#getRequestProperty(String)
211 method = "getRequestProperty",
224 String res = uc.getRequestProperty("whatever"); //$NON-NLS-1$
228 res = uc.getRequestProperty(""); //$NON-NLS-1$
232 res = uc.getRequestProperty(""); //$NON-NLS-1$
243 * @tests java.net.HttpURLConnection#getRequestProperty(String)
255 method = "getRequestProperty",
274 String res = uc.getRequestProperty("whatever"); //$NON-NLS-1$
276 res = uc.getRequestProperty(null);
399 assertNull(conn.getRequestProperty("Conten
[all...]
H A DURLConnectionTest.java429 assertEquals("yo2", uc.getRequestProperty("prop"));
1496 * @tests {@link java.net.URLConnection#getRequestProperty(java.lang.String)}
1501 method = "getRequestProperty",
1508 assertNull(urlCon.getRequestProperty("test"));
1512 urlCon.getRequestProperty("test");
1520 * @tests {@link java.net.URLConnection#getRequestProperty(java.lang.String)}
1525 method = "getRequestProperty",
1530 assertTrue("Wrong property returned: " + uc.getRequestProperty("Yo"),
1531 uc.getRequestProperty("Yo").equals("yo"));
1532 assertNull("Wrong property returned: " + uc.getRequestProperty("N
[all...]
/dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/internal/net/www/protocol/https/
H A DHttpsURLConnectionImpl.java272 public String getRequestProperty(String field) { method in class:HttpsURLConnectionImpl
273 return httpsEngine.getRequestProperty(field);
/dalvik/libcore/luni/src/main/java/java/net/
H A DURLConnection.java338 * @deprecated Use {@link #getRequestProperty}
619 public String getRequestProperty(String field) { method in class:URLConnection
/dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/internal/net/www/protocol/http/
H A DHttpURLConnectionImpl.java1264 public String getRequestProperty(String field) { method in class:HttpURLConnectionImpl

Completed in 126 milliseconds