Searched refs:location (Results 1 - 25 of 39) sorted by relevance

12

/dalvik/libcore/luni/src/main/java/java/net/
H A DHttpRetryException.java31 private String location = null; field in class:HttpRetryException
49 * response code, the given detail message and the value of the location
56 * @param location
59 public HttpRetryException(String detail, int code, String location) { argument
62 this.location = location;
66 * Gets the location value.
68 * @return the stored location from the HTTP header.
71 return location;
/dalvik/libcore/text/src/main/java/java/text/
H A DParseException.java31 * message and the location of the error filled in.
35 * @param location
38 public ParseException(String detailMessage, int location) { argument
40 errorOffset = location;
46 * @return the location of this exception in the parsed string.
H A DStringCharacterIterator.java51 * @param location
54 * if {@code location} is negative or greater than the length
57 public StringCharacterIterator(String value, int location) { argument
61 if (location < 0 || location > end) {
64 offset = location;
77 * @param location
80 * if {@code start < 0}, {@code start > end}, {@code location <
81 * start}, {@code location > end} or if {@code end} is greater
85 int location) {
84 StringCharacterIterator(String value, int start, int end, int location) argument
247 setIndex(int location) argument
[all...]
H A DCharacterIterator.java107 * @param location
112 * if {@code location} is less than the begin index or greater than
115 public char setIndex(int location); argument
/dalvik/libcore/luni/src/main/java/java/util/
H A DAbstractSequentialList.java37 public void add(int location, E object) { argument
38 listIterator(location).add(object);
42 public boolean addAll(int location, Collection<? extends E> collection) { argument
43 ListIterator<E> it = listIterator(location);
53 public E get(int location) { argument
55 return listIterator(location).next();
67 public abstract ListIterator<E> listIterator(int location); argument
70 public E remove(int location) { argument
72 ListIterator<E> it = listIterator(location);
82 public E set(int location, argument
[all...]
H A DVector.java124 * Adds the specified object into this vector at the specified location. The
126 * increasing their index by 1. If the location is equal to the size of this
129 * @param location
134 * if {@code location < 0 || location > size()}.
139 public void add(int location, E object) { argument
140 insertElementAt(object, location);
161 * Inserts the objects in the specified collection at the specified location
164 * or higher than {@code location} have their index increased by the size of
167 * @param location
176 addAll(int location, Collection<? extends E> collection) argument
325 elementAt(int location) argument
442 get(int location) argument
544 indexOf(Object object, int location) argument
577 insertElementAt(E object, int location) argument
661 lastIndexOf(Object object, int location) argument
694 remove(int location) argument
795 removeElementAt(int location) argument
874 set(int location, E object) argument
895 setElementAt(E object, int location) argument
[all...]
H A DAbstractList.java250 public void add(int location, E object) { argument
252 if (0 <= location && location <= size) {
253 fullList.add(location + offset, object);
265 public boolean addAll(int location, Collection<? extends E> collection) { argument
267 if (0 <= location && location <= size) {
268 boolean result = fullList.addAll(location + offset,
295 public E get(int location) { argument
297 if (0 <= location
311 listIterator(int location) argument
324 remove(int location) argument
351 set(int location, E object) argument
410 add(int location, E object) argument
455 addAll(int location, Collection<? extends E> collection) argument
519 get(int location) argument
629 listIterator(int location) argument
644 remove(int location) argument
687 set(int location, E object) argument
[all...]
H A DList.java29 * Inserts the specified object into this {@code List} at the specified location.
31 * location. If the location is equal to the size of this {@code List}, the object
32 * is added at the end. If the location is smaller than the size of this
33 * {@code List}, then all elements beyond the specified location are moved by one
36 * @param location
48 * if {@code location < 0 || location > size()}
50 public void add(int location, E object); argument
69 * Inserts the objects in the specified collection at the specified location
89 addAll(int location, Collection<? extends E> collection) argument
164 get(int location) argument
236 listIterator(int location) argument
249 remove(int location) argument
306 set(int location, E object) argument
[all...]
H A DLinkedList.java67 LinkIterator(LinkedList<ET> object, int location) { argument
70 if (0 <= location && location <= list.size) {
75 if (location < list.size / 2) {
76 for (pos = -1; pos + 1 < location; pos++) {
80 for (pos = list.size; pos >= location; pos--) {
209 * specified location. The object is inserted before any previous element at
210 * the specified location. If the location is equal to the size of this
213 * @param location
221 add(int location, E object) argument
282 addAll(int location, Collection<? extends E> collection) argument
445 get(int location) argument
562 listIterator(int location) argument
576 remove(int location) argument
680 set(int location, E object) argument
[all...]
H A DCollections.java64 public E get(int location) { argument
65 if (0 <= location && location < n) {
88 public Object get(int location) { argument
302 public E get(int location) { argument
303 if (location == 0) {
563 public void add(int location, E object) { argument
565 list.add(location, object);
569 public boolean addAll(int location, Collection<? extends E> collection) { argument
571 return list.addAll(location, collectio
582 get(int location) argument
649 listIterator(int location) argument
655 remove(int location) argument
661 set(int location, E object) argument
1095 add(int location, E object) argument
1099 addAll(int location, Collection<? extends E> collection) argument
1108 get(int location) argument
1129 listIterator(final int location) argument
1171 remove(int location) argument
1175 set(int location, E object) argument
[all...]
/dalvik/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;
/dalvik/libcore/security/src/main/java/java/security/
H A DCodeSource.java43 * {@code CodeSource} encapsulates the location from where code is loaded and
55 private URL location; field in class:CodeSource
74 * @param location
75 * the {@code URL} representing the location from where code is
79 * the specified {@code location}, maybe {@code null}.
81 public CodeSource(URL location, Certificate[] certs) { argument
82 this.location = location;
93 * @param location
94 * the {@code URL} representing the location fro
100 CodeSource(URL location, CodeSigner[] signers) argument
[all...]
/dalvik/vm/compiler/codegen/arm/
H A DCodegenFactory.c51 if (rlSrc.location == kLocPhysReg) {
53 } else if (rlSrc.location == kLocRetval) {
56 assert(rlSrc.location == kLocDalvikFrame);
84 if (rlSrc.location == kLocPhysReg) {
86 } else if (rlSrc.location == kLocRetval) {
90 assert(rlSrc.location == kLocDalvikFrame);
117 if (rlSrc.location == kLocDalvikFrame) {
119 rlSrc.location = kLocPhysReg;
121 } else if (rlSrc.location == kLocRetval) {
123 rlSrc.location
[all...]
H A DRallocUtil.c61 * entries in the cUnit->reglocation[] array. Therefore, when location
557 if (rl.location == kLocPhysReg) {
743 * Return an updated location record with current in-register status.
754 if (loc.location == kLocDalvikFrame) {
762 loc.location = kLocPhysReg;
775 if (loc.location == kLocDalvikFrame) {
800 loc.location = kLocPhysReg;
832 if (loc.location == kLocPhysReg) {
854 assert((loc.location != kLocRetval) || (loc.sRegLow == INVALID_SREG));
855 assert((loc.location !
[all...]
/dalvik/libcore/security/src/main/java/org/apache/harmony/security/fortress/
H A DPolicyUtils.java58 * Auxiliary action for opening InputStream from specified location.
63 * URL of target location.
65 public URL location; field in class:PolicyUtils.URLLoader
70 public URLLoader(URL location) { argument
71 this.location = location;
78 return location.openStream();
398 * dynamic policy location via system properties is allowed.
444 * to use additional policy location, read the system property under the
450 * If the additional location fro
[all...]
H A DDefaultPolicyParser.java109 * @param location an URL of a policy file to be loaded
112 * @throws Exception IO error while reading location or file syntax error
114 public Collection<PolicyEntry>parse(URL location, Properties system) argument
123 new PolicyUtils.URLLoader(location))),
138 KeyStore ks = initKeyStore(keystores, location, system, resolve);
447 * <b>Note:</b> an url may be relative to the policy file location or absolute.
449 * @param base the policy file location
471 URL location = new URL(base, ke.url);
473 .doPrivileged(new PolicyUtils.URLLoader(location));
/dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/x509/
H A DAccessDescription.java56 * create an AccessDescription with the oid and location provided.
60 GeneralName location)
63 accessLocation = location;
77 * @return the access location
58 AccessDescription( DERObjectIdentifier oid, GeneralName location) argument
H A DAuthorityInformationAccess.java58 * create an AuthorityInformationAccess with the oid and location provided.
62 GeneralName location)
66 descriptions[0] = new AccessDescription(oid, location);
60 AuthorityInformationAccess( DERObjectIdentifier oid, GeneralName location) argument
/dalvik/libcore/xml/src/main/java/org/apache/xml/serializer/dom3/
H A DDOMErrorImpl.java54 // The location of the exception
99 * @param location
102 Exception exception, Object relatedData, DOMLocatorImpl location) {
108 fLocation = location;
132 * The location of the DOMError.
134 * @return A DOMLocator object containing the DOMError location.
101 DOMErrorImpl(short severity, String message, String type, Exception exception, Object relatedData, DOMLocatorImpl location) argument
/dalvik/vm/mterp/
H A Dgen-mterp.py120 # Set location of a single opcode's source file.
192 location = opcode_locations[op]
194 location = default_op_dir
196 if location == "c":
197 loadAndEmitC(location, i)
201 loadAndEmitAsm(location, i, sister_list)
231 def loadAndEmitC(location, opindex):
233 source = "%s/%s.c" % (location, op)
247 def loadAndEmitAsm(location, opindex, sister_list):
249 source = "%s/%s.S" % (location, o
[all...]
/dalvik/vm/mterp/x86-atom/
H A DOP_FILL_ARRAY_DATA.S36 lea (rPC, %edx, 2), %edx # %edx<- PC + +BBBBBBBB; array data location
/dalvik/vm/compiler/template/
H A Dgen-template.py118 # Set location of a single opcode's source file.
181 location = opcode_locations[op]
183 location = default_op_dir
185 loadAndEmitAsm(location, i, sister_list)
194 def loadAndEmitAsm(location, opindex, sister_list):
196 source = "%s/%s.S" % (location, op)
/dalvik/libcore/xml/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.
/dalvik/libcore/luni/src/main/java/java/lang/
H A DAbstractStringBuilder.java255 final void deleteCharAt0(int location) { argument
256 if (0 > location || location >= count) {
257 throw new StringIndexOutOfBoundsException(location);
259 int length = count - location - 1;
262 System.arraycopy(value, location + 1, value, location, length);
265 System.arraycopy(value, 0, newData, 0, location);
267 .arraycopy(value, location + 1, newData, location,
[all...]
/dalvik/vm/compiler/codegen/arm/FP/
H A DThumbVFP.c32 if (rlSrc.location == kLocPhysReg) {
105 if (rlDest.location == kLocPhysReg) {
150 if (rlDest.location == kLocPhysReg) {

Completed in 3322 milliseconds

12