Searched defs:databuf (Results 1 - 2 of 2) sorted by relevance

/openjdk7/langtools/src/share/classes/com/sun/tools/javac/jvm/
H A DCRTable.java84 /** Compute source positions and write CRT to the databuf.
85 * @param databuf The buffer to write bytecodes to.
87 public int writeCRT(ByteBuffer databuf, Position.LineMap lineMap, Log log) { argument
128 databuf.appendChar(entry.startPc);
130 databuf.appendChar(entry.endPc - 1);
131 databuf.appendInt(startPos);
132 databuf.appendInt(endPos);
133 databuf.appendChar(entry.flags);
H A DClassWriter.java117 ByteBuffer databuf = new ByteBuffer(DATA_BUF_SIZE); field in class:ClassWriter
575 databuf.appendChar(pool.put(attrName));
576 databuf.appendInt(0);
577 return databuf.length;
583 putInt(databuf, index - 4, databuf.length - index);
590 databuf.appendChar(0);
591 return databuf.length;
597 putChar(databuf, index - 2, count);
616 databuf
[all...]

Completed in 224 milliseconds