Searched defs:target (Results 476 - 500 of 670) sorted by relevance

<<11121314151617181920>>

/openjdk7/jdk/src/solaris/classes/sun/java2d/opengl/
H A DGLXGraphicsConfig.java241 * that is associated with the target Component.
244 public Image createAcceleratedImage(Component target, argument
250 return new OffScreenImage(target, model, wr,
295 * Creates a VolatileImage that essentially wraps the target Component's
299 public VolatileImage createBackBufferImage(Component target, argument
302 return new SunVolatileImage(target,
303 target.getWidth(), target.getHeight(),
308 * Performs the native GLX flip operation for the given target Component.
312 Component target, VolatileImag
311 flip(X11ComponentPeer peer, Component target, VolatileImage xBackBuffer, int x1, int y1, int x2, int y2, BufferCapabilities.FlipContents flipAction) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DMethodGen.java492 throw new ClassGenException("Exception handler target is null instruction");
815 InstructionHandle target; field in class:MethodGen.BranchTarget
818 BranchTarget(InstructionHandle target, int stackDepth) { argument
819 this.target = target;
828 public void push(InstructionHandle target, int stackDepth) { argument
829 if(visited(target))
832 branchTargets.push(visit(target, stackDepth));
844 private final BranchTarget visit(InstructionHandle target, int stackDepth) { argument
845 BranchTarget bt = new BranchTarget(target, stackDept
851 visited(InstructionHandle target) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/
H A DXMLScanner.java635 // target
637 String target = fEntityScanner.scanName();
638 if (target == null) {
643 scanPIData(target, data);
651 * target name <em>starts with</em> "xml". (e.g. xmlfoo)
656 * @param target The PI target
666 protected void scanPIData(String target, XMLStringBuffer data) argument
669 // check target
670 if (target
[all...]
H A DXMLStreamReaderImpl.java359 /** Get the target of a processing instruction
360 * @return the target or null
1125 * The "targetStart" argument must be greater than or equal to 0 and less than the length of "target",
1126 * Length must be greater than 0 and "targetStart + length" must be less than or equal to length of "target".
1129 * @param target the destination array
1130 * @param targetStart the start offset in the target array
1134 * @throws IndexOutOfBoundsException if targetStart < 0 or > than the length of target
1135 * @throws IndexOutOfBoundwhile(isCharacters()) ;sException if length < 0 or targetStart + length > length of target
1137 * @throws NullPointerException is if target is null
1139 public int getTextCharacters(int sourceStart, char[] target, in argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/opti/
H A DDefaultXMLDocumentHandler.java131 * target name and, optionally, text data. The data is only meaningful
140 * @param target The target.
147 public void processingInstruction(String target, XMLString data, Augmentations augs) argument
462 * target name and, optionally, text data. The data is only meaningful
471 * @param target The target.
479 public void processingInstruction(String target, XMLString data,
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/jaxp/
H A DJAXPValidatorComponent.java393 public void processingInstruction(String target, XMLString data, Augmentations augs) throws XNIException { argument
395 fContentHandler.processingInstruction(target,data.toString());
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/parsers/
H A DAbstractXMLDocumentParser.java327 * target name and, optionally, text data. The data is only meaningful
336 * @param target The target.
343 public void processingInstruction(String target, XMLString data, Augmentations augs) argument
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/xpointer/
H A DXPointerHandler.java1002 * target name and, optionally, text data. The data is only meaningful
1011 * @param target The target.
1018 public void processingInstruction(String target, XMLString data, argument
1023 super.processingInstruction(target, data, augs);
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/ref/
H A DIncrementalSAXSource_Filter.java282 public void processingInstruction(java.lang.String target, java.lang.String data) argument
291 clientContentHandler.processingInstruction(target,data);
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serialize/
H A DBaseMarkupSerializer.java598 public final void processingInstruction( String target, String code ) argument
602 processingInstructionIO( target, code );
608 public void processingInstructionIO( String target, String code ) argument
617 // Make sure we don't have '?>' inside either target or code.
618 index = target.indexOf( "?>" );
620 fStrBuffer.append( "<?" ).append( target.substring( 0, index ) );
622 fStrBuffer.append( "<?" ).append( target );
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serializer/
H A DToHTMLStream.java1607 * @param target The processing instruction target.
1615 public void processingInstruction(String target, String data) argument
1624 if (target.equals(Result.PI_DISABLE_OUTPUT_ESCAPING))
1628 else if (target.equals(Result.PI_ENABLE_OUTPUT_ESCAPING))
1648 //writer.write("<?" + target);
1650 writer.write(target);
1675 super.fireEscapingEvent(target, data);
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/interceptors/
H A DClientRequestInfoImpl.java251 /*target*/ { true , true , true , true , true },
282 public org.omg.CORBA.Object target (){ method in class:ClientRequestInfoImpl
297 * effective_target will contain the forwarded IOR while target will
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJRootPane.java957 * @param target the Container for which this layout manager
961 public Dimension maximumLayoutSize(Container target) { argument
1015 public float getLayoutAlignmentX(Container target) { return 0.0f; } argument
1016 public float getLayoutAlignmentY(Container target) { return 0.0f; } argument
1017 public void invalidateLayout(Container target) {} argument
H A DUIManager.java990 * {@code target}. Typically, this is a cover for
991 * {@code getDefaults().getUI(target)}. However, if an auxiliary
993 * {@code getUI(target)} on the multiplexing look and feel's
996 * @param target the <code>JComponent</code> to return the
998 * @return the <code>ComponentUI</code> object for {@code target}
999 * @throws NullPointerException if {@code target} is {@code null}
1002 public static ComponentUI getUI(JComponent target) { argument
1004 maybeInitializeFocusPolicy(target);
1010 ui = multiLAF.getDefaults().getUI(target);
1013 ui = getDefaults().getUI(target);
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/metal/
H A DMetalLookAndFeel.java2466 protected int getButtonGap(JComponent source, JComponent target, argument
2468 offset = super.getButtonGap(source, target, position, offset);
2473 target, flipDirection(position));
/openjdk7/jdk/src/share/classes/javax/swing/text/html/parser/
H A DParser.java796 int strIndexOf(char target) { argument
798 if (str[i] == target) {
/openjdk7/jdk/src/share/classes/javax/swing/text/rtf/
H A DRTFReader.java37 * described by the RTF to a <code>StyledDocument</code> (the <em>target</em>).
52 StyledDocument target; field in class:RTFReader
150 target = destination;
283 target.putProperty(propName,
503 // target.changeAttributes(new LFDictionary(LFArray.arrayWithObject(value), LFArray.arrayWithObject(name)));
997 realizedStyle = target.addStyle(styleName, basis);
1331 set.setResolveParent(target.getStyle(StyleContext.DEFAULT_STYLE));
1601 * StyledDocument given by the <code>target</code> ivar of the
1611 target.insertString(target
[all...]
/openjdk7/jdk/src/share/classes/sun/applet/
H A DAppletViewer.java482 public void showDocument(URL url, String target) { argument
/openjdk7/jdk/src/share/classes/sun/awt/
H A DHToolkit.java62 public WindowPeer createWindow(Window target) argument
67 public FramePeer createFrame(Frame target) argument
72 public DialogPeer createDialog(Dialog target) argument
77 public ButtonPeer createButton(Button target) argument
82 public TextFieldPeer createTextField(TextField target) argument
87 public ChoicePeer createChoice(Choice target) argument
92 public LabelPeer createLabel(Label target) argument
97 public ListPeer createList(List target) argument
102 public CheckboxPeer createCheckbox(Checkbox target) argument
107 public ScrollbarPeer createScrollbar(Scrollbar target) argument
112 createScrollPane(ScrollPane target) argument
117 createTextArea(TextArea target) argument
122 createFileDialog(FileDialog target) argument
127 createMenuBar(MenuBar target) argument
132 createMenu(Menu target) argument
137 createPopupMenu(PopupMenu target) argument
142 createMenuItem(MenuItem target) argument
147 createCheckboxMenuItem(CheckboxMenuItem target) argument
158 createRobot(Robot target, GraphicsDevice screen) argument
168 createTrayIcon(TrayIcon target) argument
173 createSystemTray(SystemTray target) argument
352 createDesktopPeer(Desktop target) argument
[all...]
/openjdk7/jdk/src/share/classes/java/lang/
H A DString.java1704 * source is the character array being searched, and the target
1710 * @param target the characters being searched for.
1711 * @param targetOffset offset of the target string.
1712 * @param targetCount count of the target string.
1716 char[] target, int targetOffset, int targetCount,
1728 char first = target[targetOffset];
1742 == target[k]; j++, k++);
1795 * source is the character array being searched, and the target
1801 * @param target the characters being searched for.
1802 * @param targetOffset offset of the target strin
1715 indexOf(char[] source, int sourceOffset, int sourceCount, char[] target, int targetOffset, int targetCount, int fromIndex) argument
1806 lastIndexOf(char[] source, int sourceOffset, int sourceCount, char[] target, int targetOffset, int targetCount, int fromIndex) argument
2179 replace(CharSequence target, CharSequence replacement) argument
[all...]
/openjdk7/jdk/src/share/classes/java/nio/file/
H A DFiles.java946 * Creates a symbolic link to a target <i>(optional operation)</i>.
948 * <p> The {@code target} parameter is the target of the link. It may be an
950 * the target is a relative path then file system operations on the resulting
967 * @param target
968 * the target of the symbolic link
990 public static Path createSymbolicLink(Path link, Path target, argument
994 provider(link).createSymbolicLink(link, target, attrs);
1047 * symbolic link itself, not the final target of the link, is deleted.
1087 * symbolic link itself, not the final target o
1219 copy(Path source, Path target, CopyOption... options) argument
1339 move(Path source, Path target, CopyOption... options) argument
2805 copy(InputStream in, Path target, CopyOption... options) argument
[all...]
/openjdk7/hotspot/src/share/vm/oops/
H A DmethodDataOop.cpp130 // the corresponding target bci.
134 int target; local
137 target = stream->dest_w();
139 target = stream->dest();
142 int target_di = mdo->bci_to_di(target);
315 // target of the ret and cache a corresponding displacement.
381 int target = stream->dest(); local
383 int target_di = mdo->bci_to_di(target);
404 // case was taken and specify the data displacment for each branch target.
421 int target; local
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/hat/internal/model/
H A DSnapshot.java440 rootsetReferencesTo(JavaHeapObject target, boolean includeWeak) { argument
446 visited.put(target, target);
447 fifo.addElement(new ReferenceChain(target, null));
/openjdk7/jdk/src/share/classes/java/awt/
H A DEvent.java449 * The target component. This indicates the component over which the
456 public Object target; field in class:Event
583 * down to the peer once the target has processed it -
615 * Creates an instance of <code>Event</code> with the specified target
619 * @param target the target component.
628 public Event(Object target, long when, int id, int x, int y, int key, argument
630 this.target = target;
666 * Creates an instance of <code>Event</code>, with the specified target
678 Event(Object target, long when, int id, int x, int y, int key, int modifiers) argument
693 Event(Object target, int id, Object arg) argument
[all...]
/openjdk7/hotspot/src/cpu/sparc/vm/
H A DmethodHandles_sparc.cpp123 void MethodHandles::jump_from_method_handle(MacroAssembler* _masm, Register method, Register target, Register temp, argument
126 assert_different_registers(method, target, temp);
138 __ ld_ptr(G5_method, in_bytes(methodOopDesc::interpreter_entry_offset()), target);
139 __ jmp(target, 0);
148 __ ld_ptr(G5_method, in_bytes(entry_offset), target);
149 __ jmp(target, 0);
404 // get target methodOop & entry point

Completed in 1778 milliseconds

<<11121314151617181920>>