Searched defs:location (Results 1 - 7 of 7) sorted by relevance

/libcore/ojluni/src/main/java/java/net/
H A DHttpRetryException.java43 private String location; field in class:HttpRetryException
63 * @param location the URL to be redirected to
65 public HttpRetryException(String detail, int code, String location) { argument
68 this.location = location;
94 * @return The location string
97 return location;
/libcore/dom/src/test/java/org/w3c/domts/
H A DDOMErrorImpl.java30 private final DOMLocator location; field in class:DOMErrorImpl
42 this.location = new DOMLocatorImpl(src.getLocation());
66 return location;
/libcore/luni/src/main/java/javax/xml/transform/
H A DTransformerException.java48 * @param location A SourceLocator object, or null to clear the location.
50 public void setLocator(SourceLocator location) { argument
51 locator = location;
201 * Get the error message with location information
205 * location information appended.
241 * Get the location information as a string.
243 * @return A string with location info, or null
244 * if there is no location information.
/libcore/libart/src/main/java/java/lang/
H A DDexCache.java44 /** The location of the associated dex file. */
45 String location; field in class:DexCache
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
H A DAbstractListTest.java375 public E get(int location) { argument
521 assertEquals("did not return the right location of element 3", 2, list
526 assertEquals("did not return the right location of element null", 5,
537 assertEquals("did not return the right location of element 4", 6, list
542 assertEquals("did not return the right location of element null", 10,
551 public E get(int location) {
552 return list.get(location);
/libcore/ojluni/src/main/java/java/util/jar/
H A DJarVerifier.java605 VerifierCodeSource(Object csdomain, URL location, CodeSigner[] signers) { argument
606 super(location, signers);
608 vlocation = location;
612 VerifierCodeSource(Object csdomain, URL location, java.security.cert.Certificate[] certs) { argument
613 super(location, certs);
615 vlocation = location;
/libcore/xml/src/main/java/org/kxml2/io/
H A DKXmlParser.java45 private static final String PROPERTY_LOCATION = "http://xmlpull.org/v1/doc/properties.html#location";
89 private String location; field in class:KXmlParser
1799 return location != null ? location : reader.toString();
1911 if (location != null) {
1913 buf.append(location);
2108 location = String.valueOf(value);

Completed in 312 milliseconds