Searched refs:buffer (Results 201 - 225 of 668) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/bdi/
H A DExceptionSpec.java105 StringBuffer buffer = new StringBuffer("exception catch ");
106 buffer.append(refSpec.toString());
107 return buffer.toString();
H A DMethodBreakpointSpec.java129 StringBuffer buffer = new StringBuffer("breakpoint ");
130 buffer.append(refSpec.toString());
131 buffer.append('.');
132 buffer.append(methodId);
135 buffer.append('(');
138 buffer.append(',');
140 buffer.append(name);
143 buffer.append(")");
145 buffer.append(" (");
146 buffer
[all...]
/openjdk7/hotspot/src/cpu/zero/vm/
H A DinterpreterRT_zero.hpp99 SignatureHandlerGenerator(methodHandle method, CodeBuffer* buffer) argument
100 : SignatureHandlerGeneratorBase(method, (ffi_cif *) buffer->insts_end()),
101 _cb(buffer) {
/openjdk7/jdk/src/macosx/classes/sun/java2d/
H A DDataBufferNIOInt.java153 ByteBuffer buffer = ByteBuffer.allocateDirect(size);
154 buffer.order(ByteOrder.nativeOrder());
155 return buffer;
/openjdk7/jdk/src/macosx/native/jobjc/src/tests/java/com/apple/jobjc/
H A DBenchFunCall.java61 ARGS.argPtrsPtr = ARGS.buffer.bufferPtr;
62 ARGS.argValuesPtr = ARGS.buffer.bufferPtr + 256;
74 FunCall.invoke(fc.cif.cif.bufferPtr, fc.fxnPtr, ARGS.retValPtr, ARGS.buffer.bufferPtr);
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/jpeg/
H A DCOMMarkerSegment.java51 * Constructs a marker segment from the given buffer, which contains
55 COMMarkerSegment(JPEGBuffer buffer) throws IOException { argument
56 super(buffer);
57 loadData(buffer);
H A DDQTMarkerSegment.java57 DQTMarkerSegment(JPEGBuffer buffer) throws IOException { argument
58 super(buffer);
61 Qtable newGuy = new Qtable(buffer);
65 buffer.bufAvail -= length;
222 Qtable(JPEGBuffer buffer) throws IIOException { argument
223 elementPrecision = buffer.buf[buffer.bufPtr] >>> 4;
224 tableID = buffer.buf[buffer.bufPtr++] & 0xf;
232 data[i] = buffer
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/soap/
H A DFastInfosetDataContentHandler.java111 int n; byte[] buffer = new byte[4096];
112 while ((n = is.read(buffer)) != -1) {
113 os.write(buffer, 0, n);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/txw2/
H A DDocument.java123 * Appends the given object to the end of the given buffer.
179 public void onPcdata(StringBuilder buffer) {
181 buffer = fixPrefix(buffer);
182 out.text(buffer);
185 public void onCdata(StringBuilder buffer) {
187 buffer = fixPrefix(buffer);
188 out.cdata(buffer);
191 public void onComment(StringBuilder buffer) {
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/
H A DPolicyAssertion.java278 * A helper method that appends indented string representation of this instance to the input string buffer.
281 * @param buffer buffer to be used for appending string representation of this instance
282 * @return modified buffer containing new string representation of the instance
284 protected StringBuffer toString(final int indentLevel, final StringBuffer buffer) { argument
288 buffer.append(indent).append("Assertion[").append(this.getClass().getName()).append("] {").append(PolicyUtils.Text.NEW_LINE);
289 data.toString(indentLevel + 1, buffer);
290 buffer.append(PolicyUtils.Text.NEW_LINE);
293 buffer.append(innerIndent).append("parameters {").append(PolicyUtils.Text.NEW_LINE);
295 parameter.toString(indentLevel + 2, buffer)
[all...]
/openjdk7/jdk/test/java/lang/instrument/
H A DRedefineBigClassAgent.java63 final byte[] buffer = new byte[redefineLength];
64 new BufferedInputStream(redefineStream).read(buffer);
73 ClassDefinition cld = new ClassDefinition(clz, buffer);
H A DRedefineClassWithNativeMethodAgent.java57 final byte[] buffer = new byte[redefineLength];
58 new BufferedInputStream(redefineStream).read(buffer);
63 ClassDefinition cld = new ClassDefinition(clz, buffer);
/openjdk7/jdk/src/share/native/sun/awt/image/jpeg/
H A Djdpostct.c28 /* Private buffer controller object */
33 /* Color quantization source buffer: this holds output data from
35 * For two-pass color quantization, we need a full-image buffer;
36 * for one-pass operation, a strip buffer is sufficient.
39 JSAMPARRAY buffer; /* strip buffer, or current strip of virtual */ member in struct:__anon719
40 JDIMENSION strip_height; /* buffer size in rows */
88 * allocate a strip buffer. Use the virtual-array buffer as workspace.
90 if (post->buffer
[all...]
/openjdk7/jdk/src/share/classes/sun/security/pkcs11/
H A DP11Digest.java57 // data in buffer, all fields valid, session acquired
84 // one byte buffer for the update(byte) method, initialized on demand
87 // buffer to reduce number of JNI calls
88 private final byte[] buffer; field in class:P11Digest
90 // offset into the buffer
118 buffer = new byte[BUFFER_SIZE];
138 token.p11.C_DigestFinal(session.id(), buffer, 0, buffer.length);
191 buffer, 0, bufOfs, digest, ofs, len);
194 doUpdate(buffer,
[all...]
H A DP11Signature.java111 // buffer, for update(byte) or DSA
112 private final byte[] buffer; field in class:P11Signature
139 byte[] buffer = null;
151 buffer = new byte[1];
156 buffer = new byte[1];
161 buffer = new byte[1];
170 buffer = new byte[20];
179 buffer = new byte[RAW_ECDSA_MAX];
226 this.buffer = buffer;
[all...]
/openjdk7/jdk/test/java/util/jar/JarEntry/
H A DGetMethodsReturnClones.java45 byte[] buffer = new byte[8192];
51 while (is.read(buffer, 0, buffer.length) != -1) {
/openjdk7/jaxp/src/com/sun/xml/internal/stream/
H A DXMLEntityStorage.java440 StringBuffer buffer = new StringBuffer(len*3);
445 buffer.append('/');
457 buffer.append('%');
458 buffer.append(gAfterEscaping1[ch]);
459 buffer.append(gAfterEscaping2[ch]);
463 buffer.append((char)ch);
486 buffer.append('%');
487 buffer.append(gHexChs[ch >> 4]);
488 buffer.append(gHexChs[ch & 0xf]);
491 buffer
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/sourcemodel/
H A DModelNode.java521 * A helper method that appends indented string representation of this instance to the input string buffer.
524 * @param buffer buffer to be used for appending string representation of this instance
525 * @return modified buffer containing new string representation of the instance
527 public StringBuffer toString(final int indentLevel, final StringBuffer buffer) { argument
531 buffer.append(indent).append(type).append(" {").append(PolicyUtils.Text.NEW_LINE);
534 buffer.append(innerIndent).append("no assertion data set");
536 nodeData.toString(indentLevel + 1, buffer);
538 buffer.append(PolicyUtils.Text.NEW_LINE);
541 buffer
[all...]
H A DPolicyReferenceData.java112 * A helper method that appends indented string representation of this instance to the input string buffer.
115 * @param buffer buffer to be used for appending string representation of this instance
116 * @return modified buffer containing new string representation of the instance
118 public StringBuffer toString(final int indentLevel, final StringBuffer buffer) { argument
122 buffer.append(indent).append("reference data {").append(PolicyUtils.Text.NEW_LINE);
123 buffer.append(innerIndent).append("referenced policy model URI = '").append(referencedModelUri).append('\'').append(PolicyUtils.Text.NEW_LINE);
125 buffer.append(innerIndent).append("no digest specified").append(PolicyUtils.Text.NEW_LINE);
127 buffer.append(innerIndent).append("digest algorith URI = '").append(digestAlgorithmUri).append('\'').append(PolicyUtils.Text.NEW_LINE);
128 buffer
[all...]
/openjdk7/jdk/src/windows/classes/sun/nio/fs/
H A DWindowsWatchService.java97 // buffer for change events
98 private NativeBuffer buffer; field in class:WindowsWatchService.WindowsWatchKey
100 // pointer to bytes returned (in buffer)
103 // pointer to overlapped structure (in buffer)
120 NativeBuffer buffer,
128 this.buffer = buffer;
151 NativeBuffer buffer() { method in class:WindowsWatchService.WindowsWatchKey
152 return buffer;
171 // close directory and release buffer
117 init(long handle, Set<? extends WatchEvent.Kind<?>> events, boolean watchSubtree, NativeBuffer buffer, long countAddress, long overlappedAddress, int completionKey) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/font/
H A DTrueTypeFont.java333 int readBlock(ByteBuffer buffer, int offset, int length) { argument
362 buffer.clear();
365 int cnt = disposerRecord.channel.read(buffer);
376 // We could still flip() the buffer here because
387 buffer.flip();
400 buffer.flip();
401 if (bread > length) { // possible if buffer.size() > length
418 return readBlock(buffer, offset, length);
441 ByteBuffer buffer = ByteBuffer.allocate(length);
451 buffer
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DTabSet.java202 StringBuilder buffer = new StringBuilder("[ ");
206 buffer.append(" - ");
207 buffer.append(getTab(counter).toString());
209 buffer.append(" ]");
210 return buffer.toString();
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DAudioFileSoundbankReader.java80 byte[] buffer;
90 buffer = baos.toByteArray();
92 buffer = new byte[(int) (ais.getFrameLength()
94 new DataInputStream(ais).readFully(buffer);
97 new ModelByteBuffer(buffer), ais.getFormat(), -4800);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/stream/buffer/
H A DMutableXMLStreamBuffer.java26 package com.sun.xml.internal.stream.buffer;
28 import com.sun.xml.internal.stream.buffer.sax.Properties;
29 import com.sun.xml.internal.stream.buffer.sax.SAXBufferCreator;
30 import com.sun.xml.internal.stream.buffer.stax.StreamReaderBufferCreator;
31 import com.sun.xml.internal.stream.buffer.stax.StreamWriterBufferCreator;
44 * A mutable stream-based buffer of an XML infoset.
76 * Set the system identifier for this buffer.
98 // Set the first element of structure array to indicate an empty buffer
104 * Create contents of a buffer from a XMLStreamReader.
123 * Create contents of a buffer fro
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/scd/
H A DSimpleCharStream.java52 protected char[] buffer; field in class:SimpleCharStream
71 System.arraycopy(buffer, tokenBegin, newbuffer, 0, bufsize - tokenBegin);
72 System.arraycopy(buffer, 0, newbuffer,
74 buffer = newbuffer;
88 System.arraycopy(buffer, tokenBegin, newbuffer, 0, bufsize - tokenBegin);
89 buffer = newbuffer;
137 if ((i = inputStream.read(buffer, maxNextCharInd,
214 return buffer[bufpos];
220 char c = buffer[bufpos];
275 buffer
[all...]

Completed in 148 milliseconds

1234567891011>>