Searched refs:vector (Results 1 - 8 of 8) sorted by relevance

/dalvik/libcore/support/src/test/java/org/apache/harmony/security/tests/support/acl/
H A DGroupImpl.java84 Vector vector = new Vector(10);
85 return isMemberRecurse(principal, vector);
93 boolean isMemberRecurse(Principal principal, Vector vector) { argument
101 vector.addElement(this);
102 if(!vector.contains(groupimpl))
103 flag = groupimpl.isMemberRecurse(principal, vector);
106 if(!vector.contains(group1)) flag = group1.isMember(principal);
H A DAclImpl.java141 Vector vector = new Vector(20, 20);
142 for(; enumeration.hasMoreElements(); vector.addElement(enumeration.nextElement()));
147 if(!vector.contains(obj))
148 vector.addElement(obj);
150 return vector.elements();
154 Vector vector = new Vector(20, 20);
155 for(; enumeration.hasMoreElements(); vector.addElement(enumeration.nextElement()));
160 if(vector.contains(obj))
161 vector.removeElement(obj);
163 return vector
[all...]
/dalvik/libcore/support/src/test/java/org/apache/harmony/xnet/tests/support/
H A DmySSLSession.java158 Vector vector = new Vector();
161 vector.addElement(enumeration.nextElement());
163 String as[] = new String[vector.size()];
164 vector.copyInto(as);
/dalvik/libcore/x-net/src/main/java/org/apache/harmony/xnet/provider/jsse/
H A DHandshakeIODataStream.java150 * reads vector of opaque values
338 * writes vector of opaque values
339 * @param vector the vector to be written
341 public void write(byte[] vector) { argument
342 check(vector.length);
343 System.arraycopy(vector, 0, buffer, write_pos, vector.length);
344 write_pos += vector.length;
/dalvik/vm/compiler/codegen/arm/
H A DArchUtility.c22 static char * decodeRegList(int vector, char *buf) argument
27 for (i = 0; i < 8; i++, vector >>= 1) {
28 if (vector & 0x1) {
/dalvik/libcore/luni/src/main/java/java/util/
H A DVector.java45 * The number of elements or the size of the vector.
50 * The elements of the vector.
55 * How many elements should be added to the vector when it is detected that
64 * Constructs a new vector using the default capacity.
71 * Constructs a new vector using the specified capacity.
74 * the initial capacity of the new vector.
83 * Constructs a new vector using the specified capacity and capacity
87 * the initial capacity of the new vector.
89 * the amount to increase the capacity when this vector is full.
124 * Adds the specified object into this vector a
[all...]
/dalvik/libcore/xml/src/main/java/org/apache/xml/dtm/ref/
H A DDTMDefaultBase.java1415 protected int findInSortedSuballocatedIntVector(SuballocatedIntVector vector, int lookfor) argument
1419 if(vector != null) {
1421 int last = vector.size() - 1;
1425 int test = lookfor-vector.elementAt(i);
/dalvik/libcore/luni/src/test/java/tests/api/java/io/
H A DSerializationStressTest1.java1250 Vector<String> vector = new Vector<String>(1);
1251 vector.add(FOO);
1252 objToSave = vector;

Completed in 786 milliseconds