Searched defs:stretchy (Results 1 - 3 of 3) sorted by relevance

/external/dexmaker/src/dx/java/com/android/dx/util/
H A DByteArrayAnnotatedOutput.java32 /** default size for stretchy instances */
36 * whether the instance is stretchy, that is, whether its array
39 private final boolean stretchy; field in class:ByteArrayAnnotatedOutput
79 * Constructs a "stretchy" instance. The underlying array may be
88 * Constructs a "stretchy" instance with initial size {@code size}. The
100 * @param stretchy whether the instance is to be stretchy
102 private ByteArrayAnnotatedOutput(byte[] data, boolean stretchy) { argument
107 this.stretchy = stretchy;
[all...]
/external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
H A DByteArrayAnnotatedOutput.java40 /** default size for stretchy instances */
44 * whether the instance is stretchy, that is, whether its array
47 private final boolean stretchy; field in class:ByteArrayAnnotatedOutput
90 * Constructs a "stretchy" instance. The underlying array may be
102 * @param stretchy whether the instance is to be stretchy
104 private ByteArrayAnnotatedOutput(byte[] data, boolean stretchy) { argument
109 this.stretchy = stretchy;
163 if (stretchy) {
[all...]
H A DByteArrayOutput.java38 /** default size for stretchy instances */
42 * whether the instance is stretchy, that is, whether its array
45 private final boolean stretchy; field in class:ByteArrayOutput
85 * Constructs a "stretchy" instance. The underlying array may be
97 * @param stretchy whether the instance is to be stretchy
99 private ByteArrayOutput(byte[] data, boolean stretchy) { argument
104 this.stretchy = stretchy;
158 if (stretchy) {
[all...]

Completed in 1113 milliseconds