Searched refs:size (Results 176 - 200 of 864) sorted by relevance

1234567891011>>

/dalvik/dx/src/com/android/dx/dex/code/
H A DPositionList.java75 int sz = insns.size();
117 * @param size {@code >= 0;} the size of the list
119 public PositionList(int size) { argument
120 super(size);
128 * @param n {@code >= 0, < size();} which index
138 * @param n {@code >= 0, < size();} which index
/dalvik/dx/src/com/android/dx/dex/code/form/
H A DForm12x.java47 int sz = regs.size();
83 switch (regs.size()) {
120 int sz = regs.size();
/dalvik/dx/src/com/android/dx/dex/file/
H A DTypeListItem.java33 /** element size in bytes */
36 /** header size in bytes */
48 super(ALIGNMENT, (list.size() * ELEMENT_SIZE) + HEADER_SIZE);
68 int sz = list.size();
94 int sz = list.size();
98 out.annotate(HEADER_SIZE, " size: " + Hex.u4(sz));
H A DParameterAnnotationStruct.java66 int size = annotationsList.size();
68 ArrayList<AnnotationSetRefItem>(size);
70 for (int i = 0; i < size; i++) {
/dalvik/dx/src/com/android/dx/ssa/
H A DInterferenceRegisterMapper.java42 * size of this matrix will be (countSsaRegs * countRopRegs), which may
85 if (newReg >= newRegInterference.size()) {
123 while (newReg >= newRegInterference.size()) {
145 int sz = oldSpecs.size();
H A DRegisterMapper.java49 int sz = sources.size();
/dalvik/libcore/luni/src/main/java/java/io/
H A DBufferedOutputStream.java55 * {@code out}. The buffer size is set to the default value of 8 KB.
74 "Default buffer size used in BufferedOutputStream " +
82 * {@code out}. The buffer size is set to {@code size}.
86 * @param size
87 * the size of the buffer in bytes.
89 * if {@code size <= 0}.
91 public BufferedOutputStream(OutputStream out, int size) { argument
93 if (size <= 0) {
94 // K0058=size mus
[all...]
/dalvik/libcore/luni/src/test/java/tests/api/java/util/
H A DBitSetTest.java44 // Default size for a BitSet should be 64 elements;
46 assertEquals("Created BitSet of incorrect size", 64, bs.size());
63 // Default size for a BitSet should be 64 elements;
65 assertEquals("Created BitSet of incorrect size", 128, bs.size());
72 assertEquals("Failed to round BitSet element size", 128, bs.size());
167 bs.set(0, bs.size() - 1); // ensure all bits are 1's
168 bs.set(bs.size()
[all...]
/dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/x509/
H A DCertificatePolicies.java93 if (policies.size() > nr)
126 for (int i=0;i<policies.size();i++)
137 for (int i=0;i<policies.size();i++)
H A DHolder.java51 if (seq.size() > 3)
53 throw new IllegalArgumentException("Bad sequence size: "
54 + seq.size());
57 for (int i = 0; i != seq.size(); i++)
H A DV2Form.java49 if (seq.size() > 3)
51 throw new IllegalArgumentException("Bad sequence size: " + seq.size());
62 for (int i = index; i != seq.size(); i++)
H A DAttributeCertificateInfo.java50 if (seq.size() < 7 || seq.size() > 9)
52 throw new IllegalArgumentException("Bad sequence size: " + seq.size());
63 for (int i = 7; i < seq.size(); i++)
H A DIetfAttrSyntax.java43 else if (seq.size() == 2)
106 ASN1OctetString[] tmp = new ASN1OctetString[values.size()];
117 DERObjectIdentifier[] tmp = new DERObjectIdentifier[values.size()];
128 DERUTF8String[] tmp = new DERUTF8String[values.size()];
/dalvik/libcore/x-net/src/main/java/org/apache/harmony/xnet/provider/jsse/
H A DServerHello.java92 int size = in.readUint8();
93 session_id = new byte[size];
94 in.read(session_id, 0, size);
H A DOpenSSLSocketImplWrapper.java115 public void setSendBufferSize(int size) throws SocketException { argument
116 socket.setSendBufferSize(size);
120 public void setReceiveBufferSize(int size) throws SocketException { argument
121 socket.setReceiveBufferSize(size);
/dalvik/dx/src/com/android/dx/util/
H A DFixedSizeList.java22 * Simple (mostly) fixed-size list of objects, which may be made immutable.
32 * @param size the size of the list
34 public FixedSizeList(int size) { argument
35 super(size != 0);
38 arr = new Object[size];
41 throw new IllegalArgumentException("size < 0");
123 public final int size() { method in class:FixedSizeList
172 * @param n {@code >= 0, < size();} which element
196 * @param n {@code >= 0, < size();} whic
[all...]
/dalvik/libcore/include/
H A DLocalArray.h24 * A fixed-size array with a size hint. That number of bytes will be allocated
35 * Allocates a new fixed-size array of the given size. If this size is
58 size_t size() { return mSize; } function in class:LocalArray
/dalvik/libcore/luni/src/main/java/java/util/
H A DCollection.java116 * @see #size
189 * @see #size
278 public int size(); method in interface:Collection
H A DSet.java66 * @see #size
93 * Equality for a set means that both sets have the same size and the same
119 * @see #size
171 public int size(); method in interface:Set
/dalvik/libcore/prefs/src/main/java/java/util/prefs/
H A DNodeSet.java24 return list.size();
/dalvik/libcore/security/src/main/java/java/security/
H A DAlgorithmParameterGenerator.java178 * Initializes this {@code AlgorithmParameterGenerator} with the given size.
182 * @param size
183 * the size (in number of bits).
185 public final void init(int size) { argument
186 spiImpl.engineInit(size, randm);
190 * Initializes this {@code AlgorithmParameterGenerator} with the given size
194 * @param size
195 * the size (in number of bits).
199 public final void init(int size, SecureRandom random) { argument
200 spiImpl.engineInit(size, rando
[all...]
/dalvik/libcore/security/src/main/java/org/apache/harmony/security/asn1/
H A DASN1Choice.java271 int size = map.size();
272 identifiers = new int[2][size];
275 for (int i = 0; i < size; i++) {
/dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/
H A DDERConstructedSequence.java21 return size();
/dalvik/libcore/support/src/test/java/tests/support/
H A DSupport_UnmodifiableMapTest.java93 // size
94 assertTrue("Size should return 100, returned: " + map.size(), map
95 .size() == 100);
140 // size
142 "UnmodifiableMapTest - keySetTest - returned wrong size. Wanted 100, got: "
143 + keySet.size(), keySet.size() == 100);
/dalvik/libcore/xml/src/main/java/org/apache/harmony/xml/dom/
H A DLeafNodeImpl.java46 if (parent == null || index + 1 >= parent.children.size()) {

Completed in 587 milliseconds

1234567891011>>