/openjdk7/corba/src/share/classes/org/omg/CORBA/portable/ |
H A D | IndirectionException.java | 44 * for an object with the stream offset specified by the indirection 45 * tag. The stream offset is returned in the exception's offset field. 52 * Points to the stream's offset. 54 public int offset; field in class:IndirectionException 57 * Creates an IndirectionException with the right offset value. 58 * The stream offset is returned in the exception's offset field. 62 * @param offset the stream offset wher 64 IndirectionException(int offset) argument [all...] |
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/interpreter/ |
H A D | OffsetClosure.java | 28 public void offsetDo(int offset); argument
|
H A D | LookupswitchPair.java | 38 public int offset() { method in class:LookupswitchPair
|
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/ |
H A D | BitMapClosure.java | 29 public void doBit(int offset); argument
|
/openjdk7/jdk/src/share/classes/sun/awt/ |
H A D | CharsetString.java | 29 * chars for this string. See also offset, length. 36 public int offset; field in class:CharsetString 51 public CharsetString(char charsetChars[], int offset, int length, argument 55 this.offset = offset;
|
/openjdk7/hotspot/src/cpu/zero/vm/ |
H A D | interp_masm_zero.hpp | 41 int offset) { 39 delayed_value_impl(intptr_t* delayed_value_addr, Register tmp, int offset) argument
|
H A D | fakeStubFrame_zero.hpp | 54 int offset, 53 identify_word(int frame_index, int offset, char* fieldbuf, char* valuebuf, int buflen) const argument
|
/openjdk7/jaxp/src/org/w3c/dom/ |
H A D | Text.java | 71 * Breaks this node into two nodes at the specified <code>offset</code>, 73 * will contain all the content up to the <code>offset</code> point. A 75 * after the <code>offset</code> point, is returned. If the original 77 * of the original node. When the <code>offset</code> is equal to the 79 * @param offset The 16-bit unit offset at which to split, starting from 83 * INDEX_SIZE_ERR: Raised if the specified offset is negative or greater 87 public Text splitText(int offset) argument
|
H A D | CharacterData.java | 97 * @param offset Start offset of substring to extract. 99 * @return The specified substring. If the sum of <code>offset</code> and 103 * INDEX_SIZE_ERR: Raised if the specified <code>offset</code> is 110 public String substringData(int offset, argument 126 * Insert a string at the specified 16-bit unit offset. 127 * @param offset The character offset at which to insert. 130 * INDEX_SIZE_ERR: Raised if the specified <code>offset</code> is 135 public void insertData(int offset, argument 154 deleteData(int offset, int count) argument 177 replaceData(int offset, int count, String arg) argument [all...] |
/openjdk7/jdk/src/share/classes/java/awt/image/ |
H A D | ByteLookupTable.java | 34 * and it contains an offset which will be subtracted from the 54 * band. The offset will be subtracted from input 58 * @param offset the value subtracted from the input values 62 * @throws IllegalArgumentException if <code>offset</code> is 66 public ByteLookupTable(int offset, byte data[][]) { argument 67 super(offset,data.length); 80 * bands. The offset will be subtracted from input 83 * @param offset the value subtracted from the input values 86 * @throws IllegalArgumentException if <code>offset</code> is 90 public ByteLookupTable(int offset, byt argument [all...] |
H A D | ShortLookupTable.java | 34 * and it contains an offset which will be subtracted from the 54 * band. The offset will be subtracted from the input 58 * @param offset the value subtracted from the input values 63 public ShortLookupTable(int offset, short data[][]) { argument 64 super(offset,data.length); 77 * band. The offset will be subtracted from the input 80 * @param offset the value subtracted from the input values 84 public ShortLookupTable(int offset, short data[]) { argument 85 super(offset,data.length); 117 * <code>(src[i]&0xffff)-offset</cod [all...] |
/openjdk7/jdk/src/share/classes/java/nio/channels/ |
H A D | GatheringByteChannel.java | 62 * srcs[offset].remaining() 63 * + srcs[offset+1].remaining() 64 * + ... + srcs[offset+length-1].remaining()</pre></blockquote> 70 * Up to the first <tt>srcs[offset].remaining()</tt> bytes of this sequence 71 * are written from buffer <tt>srcs[offset]</tt>, up to the next 72 * <tt>srcs[offset+1].remaining()</tt> bytes are written from buffer 73 * <tt>srcs[offset+1]</tt>, and so forth, until the entire byte sequence is 92 * @param offset 93 * The offset within the buffer array of the first buffer from 100 * <tt>srcs.length</tt> - <tt>offset</t 127 write(ByteBuffer[] srcs, int offset, int length) argument [all...] |
H A D | ScatteringByteChannel.java | 62 * dsts[offset].remaining() 63 * + dsts[offset+1].remaining() 64 * + ... + dsts[offset+length-1].remaining()</pre></blockquote> 70 * Up to the first <tt>dsts[offset].remaining()</tt> bytes of this sequence 71 * are transferred into buffer <tt>dsts[offset]</tt>, up to the next 72 * <tt>dsts[offset+1].remaining()</tt> bytes are transferred into buffer 73 * <tt>dsts[offset+1]</tt>, and so forth, until the entire byte sequence 87 * @param offset 88 * The offset within the buffer array of the first buffer into 95 * <tt>dsts.length</tt> - <tt>offset</t 123 read(ByteBuffer[] dsts, int offset, int length) argument [all...] |
/openjdk7/jdk/src/share/classes/javax/crypto/spec/ |
H A D | DESedeKeySpec.java | 67 * <code>key</code>, beginning at <code>offset</code> inclusive, 71 * <code>key[offset]</code> and <code>key[offset+23]</code> inclusive. 74 * 24 bytes of the buffer beginning at <code>offset</code> inclusive 76 * @param offset the offset in <code>key</code>, where the DES-EDE key 81 * <code>offset</code> inclusive, is shorter than 24 bytes 83 public DESedeKeySpec(byte[] key, int offset) throws InvalidKeyException { argument 84 if (key.length - offset < 24) { 88 System.arraycopy(key, offset, thi 114 isParityAdjusted(byte[] key, int offset) argument [all...] |
H A D | IvParameterSpec.java | 58 * bytes in <code>iv</code>, beginning at <code>offset</code> 62 * <code>iv[offset]</code> and <code>iv[offset+len-1]</code> inclusive. 65 * bytes of the buffer beginning at <code>offset</code> inclusive 67 * @param offset the offset in <code>iv</code> where the IV 71 * or <code>(iv.length - offset < len)</code> 72 * @throws ArrayIndexOutOfBoundsException is thrown if <code>offset</code> 75 public IvParameterSpec(byte[] iv, int offset, int len) { argument 79 if (iv.length - offset < le [all...] |
/openjdk7/hotspot/src/share/vm/oops/ |
H A D | instanceOop.hpp | 38 // If compressed, the offset of the fields of the instance may not be aligned. 45 static bool contains_field_offset(int offset, int nonstatic_field_size) { argument 47 return (offset >= base_in_bytes && 48 (offset-base_in_bytes) < nonstatic_field_size * heapOopSize);
|
/openjdk7/jdk/src/share/classes/com/sun/media/sound/ |
H A D | ModelChannelMixer.java | 45 public boolean process(float[][] buffer, int offset, int len); argument
|
/openjdk7/hotspot/src/share/vm/runtime/ |
H A D | reflectionUtils.cpp | 66 int offset; local 67 offset = java_lang_Throwable::get_backtrace_offset(); 68 _filtered_fields->append(new FilteredField(SystemDictionary::Throwable_klass(), offset)); 73 offset = sun_reflect_ConstantPool::cp_oop_offset(); 74 _filtered_fields->append(new FilteredField(SystemDictionary::reflect_ConstantPool_klass(), offset)); 75 offset = sun_reflect_UnsafeStaticFieldAccessorImpl::base_offset(); 76 _filtered_fields->append(new FilteredField(SystemDictionary::reflect_UnsafeStaticFieldAccessorImpl_klass(), offset));
|
/openjdk7/hotspot/src/share/vm/shark/ |
H A D | sharkRuntime.hpp | 83 static intptr_t tos_at(JavaThread *thread, int offset) { argument 84 return *(thread->zero_stack()->sp() + offset);
|
/openjdk7/hotspot/src/share/vm/utilities/ |
H A D | decoder_elf.cpp | 37 bool ElfDecoder::decode(address addr, char *buf, int buflen, int* offset, const char* filepath) { argument 46 if (!file->decode(addr, buf, buflen, offset)) {
|
/openjdk7/jdk/test/java/io/Serializable/oldTests/ |
H A D | SerializeWithException.java | 55 for (int offset = 0; offset < 200; offset++) { 65 ostream.setExceptionOffset(offset); 88 "offset " + offset); 93 " not expected at offset " + offset); 122 public void setExceptionOffset(int offset) { argument 123 exceptionOffset = offset; [all...] |
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/ |
H A D | GOTO.java | 63 * GOTO - Branch always (to relative offset, not absolute address) 96 protected int updatePosition(int offset, int max_offset) { argument 99 position += offset; // Position may be shifted by preceding expansions
|
H A D | JSR.java | 93 protected int updatePosition(int offset, int max_offset) { argument 96 position += offset; // Position may be shifted by preceding expansions
|
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dtd/models/ |
H A D | ContentModelValidator.java | 78 * @param offset 86 public int validate(QName[] children, int offset, int length); argument
|
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/util/ |
H A D | ShadowedSymbolTable.java | 82 * @param offset The offset into the buffer of the new symbol. 85 public String addSymbol(char[] buffer, int offset, int length) { argument 87 if (fSymbolTable.containsSymbol(buffer, offset, length)) { 88 return fSymbolTable.addSymbol(buffer, offset, length); 90 return super.addSymbol(buffer, offset, length); 113 * @param offset The offset into the character buffer of the start 117 public int hash(char[] buffer, int offset, int length) { argument 118 return fSymbolTable.hash(buffer, offset, lengt [all...] |