Searched defs:offset (Results 101 - 125 of 840) sorted by relevance

1234567891011>>

/openjdk7/jdk/test/javax/swing/JScrollPane/
H A DTest6526631.java60 private void update(int offset) { argument
62 size.width += offset;
/openjdk7/jdk/src/share/classes/sun/java2d/pipe/
H A DAATileGenerator.java104 public void getAlpha(byte tile[], int offset, int rowstride); argument
H A DOutlineTextRenderer.java68 char data[], int offset, int length,
71 String s = new String(data, offset, length);
67 drawChars(SunGraphics2D g2d, char data[], int offset, int length, int x, int y) argument
H A DTextPipe.java47 char data[], int offset, int length,
46 drawChars(SunGraphics2D g2d, char data[], int offset, int length, int x, int y) argument
/openjdk7/jdk/src/share/classes/sun/misc/
H A DBASE64Encoder.java82 protected void encodeAtom(OutputStream outStream, byte data[], int offset, int len) argument
87 a = data[offset];
95 a = data[offset];
96 b = data[offset+1];
103 a = data[offset];
104 b = data[offset+1];
105 c = data[offset+2];
H A DHashing.java52 public static int murmur3_32(int seed, byte[] data, int offset, int len) { argument
58 int k1 = (data[offset] & 0x0FF)
59 | (data[offset + 1] & 0x0FF) << 8
60 | (data[offset + 2] & 0x0FF) << 16
61 | data[offset + 3] << 24;
64 offset += 4;
82 k1 ^= (data[offset + 2] & 0xff) << 16;
85 k1 ^= (data[offset + 1] & 0xff) << 8;
88 k1 ^= (data[offset] & 0xff);
120 public static int murmur3_32(int seed, char[] data, int offset, in argument
174 murmur3_32(int seed, int[] data, int offset, int len) argument
[all...]
H A DRegexp.java105 /** Returns true iff the substring of s from offset for len characters
107 boolean matches(String s, int offset, int len) { argument
110 exp.regionMatches(ignoreCase, 0, s, offset, len);
115 0, s, offset, prefixLen)
119 0, s, offset + len - suffixLen,
125 int spos = offset + prefixLen;
126 int limit = offset+len-suffixLen;
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dtd/models/
H A DMixedContentModel.java118 * @param offset The start offset position in the children.
122 public MixedContentModel(QName[] children, int[] type, int offset, int length , boolean ordered) { argument
128 fChildren[i] = new QName(children[offset + i]);
129 fChildrenType[i] = type[offset + i];
154 * @param offset Offset into the array where the children starts.
163 public int validate(QName[] children, int offset, int length) { argument
171 final QName curChild = children[offset + outIndex];
179 if (fChildren[inIndex].rawname != children[offset + outIndex].rawname) {
210 final QName curChild = children[offset
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/util/
H A DSynchronizedSymbolTable.java88 * @param offset The offset into the buffer of the new symbol.
91 public String addSymbol(char[] buffer, int offset, int length) { argument
94 return fSymbolTable.addSymbol(buffer, offset, length);
118 * @param offset The offset into the buffer.
121 public boolean containsSymbol(char[] buffer, int offset, int length) { argument
124 return fSymbolTable.containsSymbol(buffer, offset, length);
H A DXMLStringBuffer.java78 * <code>offset</code>, and <code>length</code> fields directly.
134 public XMLStringBuffer(char[] ch, int offset, int length) { argument
136 append(ch, offset, length);
151 offset = 0;
199 * @param offset
202 public void append(char[] ch, int offset, int length) { argument
215 System.arraycopy(ch, offset, this.ch, this.length, length);
226 append(s.ch, s.offset, s.length);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/xni/
H A DXMLString.java25 * character buffer of the scanner. The offset and length fields allow the
31 * should also not modify the offset and length if this structure (or
55 /** The offset into the character array. */
56 public int offset; field in class:XMLString
58 /** The length of characters from the offset. */
74 * @param offset The offset into the character array.
75 * @param length The length of characters from the offset.
77 public XMLString(char[] ch, int offset, int length) { argument
78 setValues(ch, offset, lengt
106 setValues(char[] ch, int offset, int length) argument
140 equals(char[] ch, int offset, int length) argument
[all...]
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/toJavaPortable/
H A DTCOffsets.java61 public int offset (String name) method in class:TCOffsets
65 } // offset
73 offset += 8;
76 tcs.put (entry.fullName (), new Integer (offset));
77 offset += 4;
80 offset += alignStrLen (repID) + alignStrLen (entry.name ());
82 offset += alignStrLen (repID) + alignStrLen (entry.name ()) + 4;
84 offset += alignStrLen (repID) + alignStrLen (entry.name ()) + 12;
87 offset += alignStrLen (repID) + alignStrLen (entry.name ()) + 4;
90 offset
144 private int offset = 0; field in class:TCOffsets
[all...]
/openjdk7/corba/src/share/classes/javax/rmi/CORBA/
H A DValueHandler.java51 * @param offset the current position in the input stream.
58 int offset,
57 readValue(org.omg.CORBA.portable.InputStream in, int offset, java.lang.Class clz, String repositoryID, org.omg.SendingContext.RunTime sender) argument
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/sparc/
H A DV9AlternateSpaceDecoder.java39 SPARCRegisterIndirectAddress newRegisterIndirectAddress(SPARCRegister rs1, int offset) { argument
40 return new SPARCV9RegisterIndirectAddress(rs1, offset);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/bugspot/
H A DPCFinder.java39 private long offset; field in class:PCFinder.Info
42 public Info(String name, long offset, int confidence) { argument
44 this.offset = offset;
51 /** If this is -1, a symbol could not be found, and the offset
53 public long getOffset() { return offset; }
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/posix/
H A DAddressDataSource.java33 offset = 0;
38 byte res = (byte) addr.getCIntegerAt(offset, 1, false);
39 ++offset;
87 offset = pos;
91 return offset;
98 private long offset; field in class:AddressDataSource
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/windbg/
H A DAddressDataSource.java34 offset = 0;
39 byte res = (byte) addr.getCIntegerAt(offset, 1, false);
40 ++offset;
87 offset = pos;
91 return offset;
98 private long offset; field in class:AddressDataSource
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DExceptionTableElement.java58 private long offset; field in class:ExceptionTableElement
60 public ExceptionTableElement(OopHandle handle, long offset) { argument
62 this.offset = offset;
66 return (int) handle.getCIntegerAt(offset + offsetOfStartPC, 2, true);
70 return (int) handle.getCIntegerAt(offset + offsetOfEndPC, 2, true);
74 return (int) handle.getCIntegerAt(offset + offsetOfHandlerPC, 2, true);
78 return (int) handle.getCIntegerAt(offset + offsetOfCatchTypeIndex, 2, true);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/types/basic/
H A DBasicCIntegerField.java37 boolean isStatic, long offset, Address staticFieldAddress) {
38 super(db, containingType, name, type, isStatic, offset, staticFieldAddress);
36 BasicCIntegerField(BasicTypeDataBase db, Type containingType, String name, Type type, boolean isStatic, long offset, Address staticFieldAddress) argument
H A DBasicNarrowOopField.java43 boolean isStatic, long offset, Address staticFieldAddress) {
44 super(db, containingType, name, type, isStatic, offset, staticFieldAddress);
47 System.out.println(" name " + name + " type " + type + " isStatic " + isStatic + " offset " + offset + " static addr " + staticFieldAddress);
42 BasicNarrowOopField(BasicTypeDataBase db, Type containingType, String name, Type type, boolean isStatic, long offset, Address staticFieldAddress) argument
/openjdk7/jdk/src/share/classes/javax/security/sasl/
H A DSaslClient.java158 * <tt>offset</tt> and <tt>len</tt> specify the portion of <tt>incoming</tt>
163 * @param offset The starting position at <tt>incoming</tt> of the bytes to use.
172 public abstract byte[] unwrap(byte[] incoming, int offset, int len) argument
186 * <tt>offset</tt> and <tt>len</tt> specify the portion of <tt>outgoing</tt>
190 * @param offset The starting position at <tt>outgoing</tt> of the bytes to use.
199 public abstract byte[] wrap(byte[] outgoing, int offset, int len) argument
H A DSaslServer.java151 * <tt>offset</tt> and <tt>len</tt> specify the portion of <tt>incoming</tt>
156 * @param offset The starting position at <tt>incoming</tt> of the bytes to use.
165 public abstract byte[] unwrap(byte[] incoming, int offset, int len) argument
178 * <tt>offset</tt> and <tt>len</tt> specify the portion of <tt>outgoing</tt>
182 * @param offset The starting position at <tt>outgoing</tt> of the bytes to use.
191 public abstract byte[] wrap(byte[] outgoing, int offset, int len) argument
/openjdk7/jdk/src/share/classes/java/awt/im/
H A DInputMethodRequests.java67 * Gets the location of a specified offset in the current composed text,
75 * InputMethodEvent sent to it contained composed text), then the offset is
76 * relative to the composed text - offset 0 indicates the first character
80 * If the component doesn't have composed text, the offset should be ignored,
96 * @param offset the offset within the composed text, if there is composed
98 * @return a rectangle representing the screen location of the offset
100 Rectangle getTextLocation(TextHitInfo offset); argument
103 * Gets the offset within the composed text for the specified absolute x
105 * to handle mouse clicks and the mouse cursor. The offset i
[all...]
/openjdk7/jdk/src/share/classes/java/awt/image/
H A DDataBufferByte.java121 * specified array, size, and offset. <CODE>dataArray</CODE> must have at least
122 * <CODE>offset</CODE> + <CODE>size</CODE> elements. Only elements <CODE>offset</CODE>
123 * through <CODE>offset</CODE> + <CODE>size</CODE> - 1
133 * @param offset The offset into the <CODE>dataArray</CODE>. <CODE>dataArray</CODE>
134 * must have at least <CODE>offset</CODE> + <CODE>size</CODE> elements.
136 public DataBufferByte(byte dataArray[], int size, int offset){ argument
137 super(UNTRACKABLE, TYPE_BYTE, size, 1, offset);
167 * be at least as large as <CODE>size</CODE> + the corresponding <CODE>offset</COD
[all...]
H A DDataBufferInt.java120 * specified array, size, and offset. <CODE>dataArray</CODE> must have at least
121 * <CODE>offset</CODE> + <CODE>size</CODE> elements. Only elements <CODE>offset</CODE>
122 * through <CODE>offset</CODE> + <CODE>size</CODE> - 1
132 * @param offset The offset into the <CODE>dataArray</CODE>.
134 public DataBufferInt(int dataArray[], int size, int offset) { argument
135 super(UNTRACKABLE, TYPE_INT, size, 1, offset);
165 * be at least as large as <CODE>size</CODE> + the corresponding offset. There must
166 * be an entry in the offset arra
[all...]

Completed in 100 milliseconds

1234567891011>>