Home | History | Annotate | Download | only in dxconvext

Lines Matching full:bytes

79         byte[] bytes = FileUtils.readFile(inFile);
91 ClassFileParser.this.processFileBytes(w, cfName, bytes);
100 * @param allbytes the bytes of this java src file
126 * @param bytes non-null; the source that is being parsed
127 * @param offset offset into <code>bytes</code> for the start of
132 public void startParsingMember(ByteArray bytes, int offset,
134 // ByteArray ba = bytes.slice(offset, bytes.size());
136 + offset + ", len:" + (bytes.size() - offset)
145 * @param bytes non-null; the source that was parsed
146 * @param offset offset into <code>bytes</code> for the end of the
152 public void endParsingMember(ByteArray bytes, int offset,
154 ByteArray ba = bytes.slice(offset, bytes.size());
164 * @param bytes non-null; the source that was parsed
165 * @param offset offset into <code>bytes</code> for what was
167 * @param len number of bytes parsed
170 public void parsed(ByteArray bytes, int offset, int len,
176 ByteArray ba = bytes.slice(offset, offset + len);