Searched refs:at (Results 1 - 25 of 78) sorted by relevance

1234

/dalvik/dx/src/com/android/dx/cf/iface/
H A DStdAttributeList.java6 * You may obtain a copy of the License at
70 int at;
73 for (at = 0; at < sz; at++) {
74 Attribute att = get(at);
85 for (at++; at < sz; at++) {
86 Attribute att = get(at);
[all...]
/dalvik/dx/src/com/android/dx/cf/code/
H A DSwitchList.java6 * You may obtain a copy of the License at
81 * Gets the indicated target. Asking for the target at {@code size()}
102 * Gets the list of all targets. This includes one extra element at the
173 int at = 0;
178 if (i != at) {
179 targets.set(at, target);
180 values.set(at, values.get(i));
182 at++;
186 if (at != sz) {
187 values.shrink(at);
[all...]
/dalvik/dx/src/com/android/dx/rop/cst/
H A DCstUtf8.java6 * You may obtain a copy of the License at
84 for (int at = 0; length > 0; /*at*/) {
85 int v0 = bytes.getUnsignedByte(at);
94 return throwBadUtf8(v0, at);
97 at++;
104 return throwBadUtf8(v0, at);
106 int v1 = bytes.getUnsignedByte(at + 1);
108 return throwBadUtf8(v1, at + 1);
116 return throwBadUtf8(v1, at
[all...]
/dalvik/dx/src/com/android/dx/cf/cst/
H A DConstantPoolParser.java6 * You may obtain a copy of the License at
164 int at = 10; // offset from the start of the file to the first cst
168 offsets[i] = at;
169 int tag = bytes.getUnsignedByte(at);
178 at += 5;
184 at += 9;
190 at += 3;
195 at += bytes.getUnsignedShort(at + 1) + 3;
202 " at offse
321 parseUtf8(int at) argument
[all...]
/dalvik/dx/src/com/android/dx/cf/direct/
H A DMemberListParser.java6 * You may obtain a copy of the License at
175 int at = offset + 2; // Skip the count.
187 int accessFlags = bytes.getUnsignedShort(at);
188 int nameIdx = bytes.getUnsignedShort(at + 2);
189 int descIdx = bytes.getUnsignedShort(at + 4);
194 observer.startParsingMember(bytes, at, name.getString(),
196 observer.parsed(bytes, at, 0, "\n" + humanName() +
199 observer.parsed(bytes, at, 2,
202 observer.parsed(bytes, at + 2, 2,
204 observer.parsed(bytes, at
[all...]
H A DDirectClassFile.java6 * You may obtain a copy of the License at
472 int at = cpParser.getEndOffset();
473 int accessFlags = bytes.getUnsignedShort(at); // u2 access_flags;
474 int cpi = bytes.getUnsignedShort(at + 2); // u2 this_class;
476 cpi = bytes.getUnsignedShort(at + 4); // u2 super_class;
478 int count = bytes.getUnsignedShort(at + 6); // u2 interfaces_count
481 observer.parsed(bytes, at, 2,
484 observer.parsed(bytes, at + 2, 2, "this_class: " + thisClass);
485 observer.parsed(bytes, at + 4, 2, "super_class: " +
487 observer.parsed(bytes, at
[all...]
H A DAttributeListParser.java6 * You may obtain a copy of the License at
124 int at = offset + 2; // Skip the count.
136 observer.parsed(bytes, at, 0,
142 attributeFactory.parse(cf, context, at, observer);
144 at += attrib.byteLength();
149 observer.parsed(bytes, at, 0,
162 endOffset = at;
/dalvik/dx/src/com/android/dx/util/
H A DHexParser.java6 * You may obtain a copy of the License at
47 int at = 0;
50 while (at < len) {
51 int nlAt = src.indexOf('\n', at);
55 int poundAt = src.indexOf('#', at);
59 line = src.substring(at, poundAt);
61 line = src.substring(at, nlAt);
63 at = nlAt + 1;
H A DFileUtils.java6 * You may obtain a copy of the License at
76 int at = 0;
78 int amt = in.read(result, at, length);
82 at += amt;
/dalvik/libcore/xml/src/main/java/org/apache/xml/utils/
H A DSuballocatedIntVector.java8 * You may obtain a copy of the License at
37 * Retrieval performance is critical, since this is used at the core
155 // total of m_blocksize squared elements, which at the default
156 // size is 4M integers... and we grow by at least that much each
245 * Inserts the specified node in this vector at the specified index.
253 * @param at Index of where to insert
255 private void insertElementAt(int value, int at) argument
257 if(at==m_firstFree)
259 else if (at>m_firstFree)
261 int index=at>>>m_SHIF
345 removeElementAt(int at) argument
387 setElementAt(int value, int at) argument
[all...]
H A DIntVector.java8 * You may obtain a copy of the License at
195 * Inserts the specified node in this vector at the specified index.
201 * @param at Index of where to insert
203 public final void insertElementAt(int value, int at) argument
217 if (at <= (m_firstFree - 1))
219 System.arraycopy(m_map, at, m_map, at + 1, m_firstFree - at);
222 m_map[at] = value;
228 * Inserts the specified node in this vector at th
[all...]
H A DObjectVector.java8 * You may obtain a copy of the License at
195 * Inserts the specified object in this vector at the specified index.
201 * @param at Index of where to insert
203 public final void insertElementAt(Object value, int at) argument
217 if (at <= (m_firstFree - 1))
219 System.arraycopy(m_map, at, m_map, at + 1, m_firstFree - at);
222 m_map[at] = value;
274 * Deletes the component at th
[all...]
/dalvik/dx/src/com/android/dx/command/dump/
H A DMain.java6 * You may obtain a copy of the License at
43 int at = 0;
45 for (/*at*/; at < args.length; at++) {
46 String arg = args[at];
79 if (at == args.length) {
84 for (/*at*/; at < args.length; at
[all...]
H A DBaseDumper.java6 * You may obtain a copy of the License at
68 private int at; field in class:BaseDumper
92 this.at = 0;
131 if (offset < at) {
133 at = offset;
134 } else if (offset > at) {
135 String hex = rawBytes ? hexDump(at, offset - at) : "";
137 at = offset;
142 at
[all...]
H A DClassDumper.java6 * You may obtain a copy of the License at
69 int at = getAt();
70 if (at != bytes.length) {
71 parsed(ba, at, bytes.length - at, "<extra data at end of file>");
/dalvik/vm/mterp/x86/
H A DOP_CONST.S4 movl 2(rPC),%eax # grab all 32 bits at once
/dalvik/dx/src/com/android/dx/dex/code/
H A DPositionList.java6 * You may obtain a copy of the License at
78 int at = 0;
99 arr[at] = new PositionList.Entry(insn.getAddress(), pos);
100 at++;
105 PositionList result = new PositionList(at);
106 for (int i = 0; i < at; i++) {
124 * Gets the element at the given index. It is an error to call
129 * @return {@code non-null;} element at that index
136 * Sets the entry at the given index.
139 * @param entry {@code non-null;} the entry to set at {
[all...]
H A DLocalList.java6 * You may obtain a copy of the License at
52 * Gets the element at the given index. It is an error to call
57 * @return {@code non-null;} element at that index
64 * Sets the entry at the given index.
67 * @param entry {@code non-null;} the entry to set at {@code n}
339 * that to change at some point, when we start feeding that
405 throw new RuntimeException("redundant start at " +
413 throw new RuntimeException("redundant end at " +
430 "improperly marked end at " +
436 "redundant end at "
[all...]
/dalvik/libcore/security/src/main/java/org/apache/harmony/security/asn1/
H A DInformationObjectSet.java7 * the License. You may obtain a copy of the License at
51 public void put(AttributeType at) { argument
52 put(at.oid.getOid(), at);
/dalvik/dx/src/com/android/dx/rop/type/
H A DPrototype.java6 * You may obtain a copy of the License at
65 int at = 1;
68 int startAt = at;
69 char c = descriptor.charAt(at);
71 at++;
77 at++;
78 c = descriptor.charAt(at);
83 int endAt = descriptor.indexOf(';', at);
87 at = endAt + 1;
89 at
[all...]
/dalvik/dexlist/
H A DDexList.c6 * You may obtain a copy of the License at
54 size_t at = strlen(str); local
58 assert(str[at - 1] == ';');
59 at -= 2; /* Two fewer chars to copy. */
63 newStr = malloc(at + 1); /* Add one for the '\0'. */
64 newStr[at] = '\0';
66 while (at > 0) {
67 at--;
68 newStr[at] = (str[at]
[all...]
/dalvik/vm/
H A DMisc.c6 * You may obtain a copy of the License at
36 * If "mode" is kHexDumpLocal, we start at offset zero, and show a full
113 * We can overrun logcat easily by writing at full speed. On the
194 * Allocate a bit vector with enough space to hold at least the specified
415 size_t at = strlen(str); local
418 if ((at >= 2) && (str[0] == 'L') && (str[at - 1] == ';')) {
419 at -= 2; /* Two fewer chars to copy. */
423 newStr = malloc(at + 1); /* Add one for the '\0'. */
427 newStr[at]
448 char* at; local
[all...]
/dalvik/libcore/security/src/main/java/org/bouncycastle/x509/
H A DX509Attribute.java20 * @param at an object representing an attribute.
23 ASN1Encodable at)
25 this.attr = Attribute.getInstance(at);
22 X509Attribute( ASN1Encodable at) argument
/dalvik/dx/src/com/android/dx/dex/file/
H A DMixedItemSection.java6 * You may obtain a copy of the License at
286 * Places all the items in this instance at particular offsets. This
335 int at = 0;
347 int writeAt = (at + alignMask) & ~alignMask;
349 if (at != writeAt) {
350 out.writeZeroes(writeAt - at);
351 at = writeAt;
355 at += one.writeSize();
358 if (at != writeSize) {
/dalvik/libdex/
H A DDexProto.c6 * You may obtain a copy of the License at
76 * If the given DexStringCache doesn't already point at the given value,
79 * function is intended to be used after making a call that at least
156 char *at = (char*) pCache->value; local
157 *(at++) = '(';
162 strcpy(at, desc);
163 at += strlen(desc);
166 *(at++) = ')';
168 strcpy(at, dexStringByTypeIdx(dexFile, protoId->returnTypeIdx));
208 char *at local
[all...]

Completed in 1025 milliseconds

1234