Searched refs:position (Results 251 - 275 of 462) sorted by relevance

<<111213141516171819

/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DJSR.java94 int i = getTargetOffset(); // Depending on old position value
96 position += offset; // Position may be shifted by preceding expansions
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/encoding/
H A DTypeCodeInputStream.java93 public void addTypeCodeAtPosition(TypeCodeImpl tc, int position) { argument
98 //if (TypeCodeImpl.debug) System.out.println(this + " adding tc " + tc + " at position " + position);
99 typeMap.put(new Integer(position), tc);
102 public TypeCodeImpl getTypeCodeAtPosition(int position) { argument
106 //System.out.println("Getting tc " + (TypeCode)typeMap.get(new Integer(position)) +
107 //" at position " + position);
109 return (TypeCodeImpl)typeMap.get(new Integer(position));
H A DWrapperInputStream.java154 public void addTypeCodeAtPosition(TypeCodeImpl tc, int position) { argument
159 //if (TypeCodeImpl.debug) System.out.println(this + " adding tc " + tc + " at position " + position);
160 typeMap.put(new Integer(position), tc);
163 public TypeCodeImpl getTypeCodeAtPosition(int position) { argument
166 //if (TypeCodeImpl.debug) System.out.println("Getting tc " + (TypeCodeImpl)typeMap.get(new Integer(position)) +
167 //" at position " + position);
168 return (TypeCodeImpl)typeMap.get(new Integer(position));
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJMenu.java377 // Figure out the sizes needed to caclulate the menu position
385 Point position = getLocationOnScreen();
396 if(dgc.getBounds().contains(position)) {
413 position.x -= Math.abs(screenInsets.left);
414 position.y -= Math.abs(screenInsets.top);
426 if (position.x + x + pmSize.width >= screenBounds.width
429 screenBounds.width - s.width < 2*(position.x
437 if (position.x + x < screenBounds.x &&
439 screenBounds.width - s.width > 2*(position.x -
447 if (position
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/metal/
H A DMetalLookAndFeel.java2371 JComponent component2, ComponentPlacement type, int position,
2374 super.getPreferredGap(component1, component2, type, position,
2382 if (position == SwingConstants.EAST ||
2383 position == SwingConstants.WEST) {
2384 int indent = getIndent(component1, position);
2427 if (isLabelAndNonlabel(component1, component2, position)) {
2435 return getButtonGap(component1, component2, position,
2438 return getButtonGap(component1, component2, position, offset);
2442 public int getContainerGap(JComponent component, int position, argument
2444 super.getContainerGap(component, position, paren
2370 getPreferredGap(JComponent component1, JComponent component2, ComponentPlacement type, int position, Container parent) argument
2466 getButtonGap(JComponent source, JComponent target, int position, int offset) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DAudioFloatConverter.java142 bytebuffer.position(0);
143 floatbuffer.position(0);
164 floatbuffer.position(0);
165 bytebuffer.position(0);
194 bytebuffer.position(0);
195 floatbuffer.position(0);
216 floatbuffer.position(0);
217 bytebuffer.position(0);
250 bytebuffer.position(0);
251 floatbuffer.position(
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/hat/internal/parser/
H A DMappedReadBuffer.java81 assert pos <= Integer.MAX_VALUE : "position overflow";
82 buf.position((int)pos);
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/HierarchicalLayout/src/com/sun/hotspot/igv/hierarchicallayout/
H A DClusterNode.java49 private Point position; field in class:ClusterNode
60 position = new Point(0, 0);
172 return position;
177 this.position = pos;
/openjdk7/jdk/src/solaris/native/sun/nio/ch/
H A DFileChannelImpl.c156 jlong position, jlong count,
160 off64_t offset = (off64_t)position;
181 sfv.sfv_off = (off64_t)position;
211 result = sendfile(srcFD, dstFD, position, &numBytes, NULL, 0);
154 Java_sun_nio_ch_FileChannelImpl_transferTo0(JNIEnv *env, jobject this, jint srcFD, jlong position, jlong count, jint dstFD) argument
/openjdk7/jdk/test/java/nio/Buffer/
H A DCopyDirectByteMemory.java37 b.position(0);
H A DCopyDirectCharMemory.java37 b.position(0);
H A DCopyDirectDoubleMemory.java37 b.position(0);
H A DCopyDirectFloatMemory.java37 b.position(0);
H A DCopyDirectIntMemory.java37 b.position(0);
H A DCopyDirectLongMemory.java37 b.position(0);
H A DCopyDirectShortMemory.java37 b.position(0);
/openjdk7/jdk/test/java/nio/MappedByteBuffer/
H A DTruncate.java46 fc.position(INITIAL_FILE_SIZE).write(ByteBuffer.wrap("THE END".getBytes()));
/openjdk7/jdk/test/java/nio/channels/FileChannel/
H A DReadToLimit.java47 if (dstBuffers[i].position() != 5)
/openjdk7/jdk/test/sun/security/ssl/com/sun/net/ssl/internal/ssl/SSLEngineImpl/
H A DCloseEngineException.java132 if (!dataDone && (appOut1.limit() == appIn2.position()) &&
133 (appOut2.limit() == appIn1.position())) {
265 a.position(a.limit());
266 b.position(b.limit());
H A DCloseInboundException.java123 if (!done && (appOut1.limit() == appIn2.position()) &&
124 (appOut2.limit() == appIn1.position())) {
158 int pos = oneToTwo.position();
163 if ((pos >= oneToTwo.position()) ||
H A DSSLEngineDeadlock.java274 if (!dataDone && (clientOut.limit() == serverIn.position()) &&
275 (serverOut.limit() == clientIn.position())) {
361 a.position(a.limit());
362 b.position(b.limit());
/openjdk7/jdk/test/sun/security/ssl/javax/net/ssl/NewAPIs/SSLEngine/
H A DExtendedKeyEngine.java128 if (!dataDone && (appOut1.limit() == appIn2.position()) &&
129 (appOut2.limit() == appIn1.position())) {
263 a.position(a.limit());
264 b.position(b.limit());
H A DTestAllSuites.java193 if (!dataDone && (appOut1.limit() == appIn2.position()) &&
194 (appOut2.limit() == appIn1.position())) {
344 a.position(a.limit());
345 b.position(b.limit());
/openjdk7/jdk/test/sun/security/ssl/templates/
H A DSSLEngineTemplate.java238 if (!dataDone && (clientOut.limit() == serverIn.position()) &&
239 (serverOut.limit() == clientIn.position())) {
346 a.position(a.limit());
347 b.position(b.limit());
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/taglets/
H A DReturnTaglet.java82 writer.getMsgRetriever().warning(holder.position(),

Completed in 63 milliseconds

<<111213141516171819