Searched defs:target (Results 501 - 525 of 670) sorted by relevance

<<21222324252627

/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_Instruction.cpp350 int vtable_index, ciMethod* target, ValueStack* state_before)
356 , _target(target)
358 set_flag(TargetIsLoadedFlag, target->is_loaded());
359 set_flag(TargetIsFinalFlag, target_is_loaded() && target->is_final_method());
360 set_flag(TargetIsStrictfpFlag, target_is_loaded() && target->is_strict());
632 // the successor could be the target of a switch so it might have
349 Invoke(Bytecodes::Code code, ValueType* result_type, Value recv, Values* args, int vtable_index, ciMethod* target, ValueStack* state_before) argument
/openjdk7/jdk/src/macosx/classes/sun/lwawt/
H A DLWToolkit.java212 private LWWindowPeer createDelegatedPeer(Window target, PlatformComponent platformComponent, argument
215 LWWindowPeer peer = new LWWindowPeer(target, platformComponent, platformWindow, peerType);
216 targetCreatedPeer(target, peer);
222 public WindowPeer createWindow(Window target) { argument
225 return createDelegatedPeer(target, platformComponent, platformWindow, LWWindowPeer.PeerType.SIMPLEWINDOW);
229 public FramePeer createFrame(Frame target) { argument
232 return createDelegatedPeer(target, platformComponent, platformWindow, LWWindowPeer.PeerType.FRAME);
235 public LWWindowPeer createEmbeddedFrame(CEmbeddedFrame target) { argument
238 return createDelegatedPeer(target, platformComponent, platformWindow, LWWindowPeer.PeerType.EMBEDDED_FRAME);
241 public LWWindowPeer createEmbeddedFrame(CViewEmbeddedFrame target) { argument
248 createCPrinterDialog(CPrinterDialog target) argument
257 createDialog(Dialog target) argument
268 createFileDialog(FileDialog target) argument
277 createButton(Button target) argument
286 createCheckbox(Checkbox target) argument
295 createCheckboxMenuItem(CheckboxMenuItem target) argument
300 createChoice(Choice target) argument
309 createLabel(Label target) argument
318 createCanvas(Canvas target) argument
327 createList(List target) argument
336 createMenu(Menu target) argument
341 createMenuBar(MenuBar target) argument
346 createMenuItem(MenuItem target) argument
351 createPanel(Panel target) argument
360 createPopupMenu(PopupMenu target) argument
365 createScrollPane(ScrollPane target) argument
374 createScrollbar(Scrollbar target) argument
383 createTextArea(TextArea target) argument
392 createTextField(TextField target) argument
413 createDesktopPeer(Desktop target) argument
460 createRobot(Robot target, GraphicsDevice screen) argument
470 createSystemTray(SystemTray target) argument
475 createTrayIcon(TrayIcon target) argument
507 createFileDialogPeer(FileDialog target) argument
514 targetToPeer(Object target) argument
521 targetDisposedPeer(Object target, Object peer) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/modeler/wsdl/
H A DWSDLModelerBase.java643 String target) {
651 if (target.equals(s)) {
641 tokenListContains( String tokenList, String target) argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/
H A DOptions.java151 public SpecVersion target = SpecVersion.LATEST; field in class:Options
163 target = SpecVersion.V2_1;
165 target = SpecVersion.LATEST;
579 if (args[i].equals("-target")) {
580 String token = requireArgument("-target",args,++i);
581 target = SpecVersion.parse(token);
582 if(target==null)
742 private void addFile(String name, List<InputSource> target, String suffix) throws BadCommandLineException { argument
751 target.add(absolutize(new InputSource(Util.escapeSpace(((URL)src).toExternalForm()))));
755 addRecursive(fsrc,suffix,target);
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/stax/
H A DStAXDocumentSerializer.java396 public void writeProcessingInstruction(String target) argument
399 writeProcessingInstruction(target, "");
402 public void writeProcessingInstruction(String target, String data) argument
410 encodeProcessingInstruction(target, data);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/encoding/
H A DMtomCodec.java527 public int getTextCharacters(int sourceStart, char[] target, int targetStart, int length) throws XMLStreamException { argument
529 if(target == null){
530 throw new NullPointerException("target char array can't be null") ;
533 if(targetStart < 0 || length < 0 || sourceStart < 0 || targetStart >= target.length ||
534 (targetStart + length ) > target.length) {
548 System.arraycopy(base64EncodedText, sourceStart , target, targetStart, copiedLength);
551 return reader.getTextCharacters(sourceStart, target, targetStart, length);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/streaming/
H A DDOMStreamReader.java647 public int getTextCharacters(int sourceStart, char[] target, int targetStart, argument
651 text.getChars(sourceStart, sourceStart + copiedSize, target, targetStart);
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWFileDialogPeer.java60 FileDialog fileDialog = (FileDialog)target;
69 WFileDialogPeer(FileDialog target) { argument
70 super(target);
82 setFilenameFilter(((FileDialog) target).getFilenameFilter());
87 WToolkit.targetDisposedPeer(target, this);
114 window.modalDisable((Dialog)target, hwnd);
116 window.modalEnable((Dialog)target);
164 final FileDialog fileDialog = (FileDialog)target;
181 final FileDialog fileDialog = (FileDialog)target;
214 window.modalDisable((Dialog)target, hwn
[all...]
/openjdk7/jdk/src/windows/native/sun/java2d/d3d/
H A DD3DShaderGen.c66 D3DShaderGen_WriteShader(char *source, char *target, char *name, int flags) argument
91 target, name, flags);
769 // that is too complex for the target shader model (ps_2_0) to handle
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_ScrollPane.cpp89 jobject target = NULL; local
104 target = env->GetObjectField(self, AwtObject::targetID);
105 JNI_CHECK_NULL_GOTO(target, "null target", done);
112 env->GetIntField(target, scrollbarDisplayPolicyID);
126 jint x = env->GetIntField(target, AwtComponent::xID);
127 jint y = env->GetIntField(target, AwtComponent::yID);
128 jint width = env->GetIntField(target, AwtComponent::widthID);
129 jint height = env->GetIntField(target, AwtComponent::heightID);
140 env->DeleteLocalRef(target);
228 jobject target = AwtObject::GetTarget(env); local
557 jobject target = AwtObject::GetTarget(env); local
[all...]
H A Dawt_Scrollbar.cpp101 jobject target = NULL; local
116 target = env->GetObjectField(peer, AwtObject::targetID);
117 JNI_CHECK_NULL_GOTO(target, "null target", done);
123 env->GetIntField(target, AwtScrollbar::orientationID);
127 env->GetIntField(target, AwtScrollbar::lineIncrementID);
129 env->GetIntField(target, AwtScrollbar::pageIncrementID);
134 jint x = env->GetIntField(target, AwtComponent::xID);
135 jint y = env->GetIntField(target, AwtComponent::yID);
136 jint width = env->GetIntField(target, AwtComponen
[all...]
/openjdk7/jdk/test/java/nio/file/Files/
H A DPassThroughFileSystem.java248 public void createSymbolicLink(Path link, Path target, FileAttribute<?>... attrs) argument
251 Files.createSymbolicLink(unwrap(link), unwrap(target), attrs);
261 Path target = Files.readSymbolicLink(unwrap(link));
262 return new PassThroughPath(delegate, target);
267 public void copy(Path source, Path target, CopyOption... options) throws IOException { argument
268 Files.copy(unwrap(source), unwrap(target), options);
272 public void move(Path source, Path target, CopyOption... options) throws IOException { argument
273 Files.move(unwrap(source), unwrap(target), options);
/openjdk7/langtools/src/share/classes/com/sun/tools/classfile/
H A DDependencies.java175 * Get a filter which uses a regular expression on the target's class name
177 * @param pattern the pattern used to match the target's class name
178 * @return a filter for matching the target class name with a regular expression
185 * Get a filter which checks the package of a target's class name
187 * package of the target's class matches any of a set of given package
189 * @param packageNames the package names used to match the target's class name
191 * @return a filter for checking the target package name against a list of package names
349 public SimpleDependency(Location origin, Location target) { argument
351 this.target = target;
383 private Location target; field in class:Dependencies.SimpleDependency
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/
H A DSymtab.java80 private final Target target; field in class:Symtab
317 Name n = target.boxWithConstructors() ? names.init : names.valueOf;
346 target = Target.instance(context);
462 iterableType = target.hasIterable()
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DMemberEnter.java77 private final Target target; field in class:MemberEnter
103 target = Target.instance(context);
459 if (!target.compilerBootstrap(tree.sym)) return;
797 if (!target.hasMethodHandles()) {
798 // Somebody is compiling JDK7 source code to a JDK6 target.
801 "wrong.target.for.polymorphic.signature.definition",
802 target.name);
804 // Pull the flag through for better diagnostics, even on a bad target.
890 : ((tree.mods.flags & Flags.ENUM) != 0 && !target.compilerBootstrap(c))
903 if ((tree.mods.flags & Flags.ENUM) != 0 && target
[all...]
H A DTransTypes.java100 /** Construct an attributed tree for a cast of expression to target type,
103 * @param target The target type.
105 JCExpression cast(JCExpression tree, Type target) { argument
108 if (!types.isSameType(tree.type, target)) {
109 if (!resolve.isAccessible(env, target.tsym))
110 resolve.logAccessErrorInternal(env, tree, target);
111 tree = make.TypeCast(make.Type(target), tree).setType(target);
118 * target typ
123 coerce(JCExpression tree, Type target) argument
154 retype(JCExpression tree, Type erasedType, Type target) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/java/
H A DMemberDefinition.java293 public void setAccessMethodTarget(MemberDefinition target) { argument
294 if (getAccessMethodTarget() != target) {
297 target.accessPeer != null) {
301 if (accessPeer != null || target.accessPeer != null) {
304 accessPeer = target;
/openjdk7/jdk/src/share/demo/applets/SpreadSheet/
H A DSpreadSheet.java409 Cell target; field in class:CellUpdater
416 target = c;
422 dataStream = new URL(target.app.getDocumentBase(),
423 target.getValueString()).openStream();
436 target.setTransientValue((float) tokenStream.nval);
437 if (!target.app.isStopped && !target.paused) {
438 target.app.repaint();
/openjdk7/jdk/src/share/classes/sun/nio/ch/
H A DDatagramChannelImpl.java224 Inet4Address target = Net.anyInet4Address(interf);
225 if (target == null)
227 int targetAddress = Net.inet4AsInt(target);
432 public int send(ByteBuffer src, SocketAddress target) argument
440 InetSocketAddress isa = Net.checkAddress(target);
446 if (target == null)
458 if (!target.equals(remoteAddress)) {
460 "Connected address not equal to target address");
490 private int send(FileDescriptor fd, ByteBuffer src, InetSocketAddress target) argument
494 return sendFromNativeBuffer(fd, src, target);
520 sendFromNativeBuffer(FileDescriptor fd, ByteBuffer bb, InetSocketAddress target) argument
[all...]
H A DFileChannelImpl.java390 // Assume that the underlying kernel sendfile() will work if the target
395 // Assume that the underlying kernel sendfile() will work if the target
401 WritableByteChannel target)
408 if (target instanceof FileChannelImpl) {
411 targetFD = ((FileChannelImpl)target).fd;
412 } else if (target instanceof SelChImpl) {
414 if ((target instanceof SinkChannelImpl) && !pipeSupported)
416 targetFD = ((SelChImpl)target).getFD();
436 if (target instanceof SinkChannelImpl)
438 if (target instanceo
400 transferToDirectly(long position, int icount, WritableByteChannel target) argument
457 transferToTrustedChannel(long position, long count, WritableByteChannel target) argument
505 transferToArbitraryChannel(long position, int icount, WritableByteChannel target) argument
541 transferTo(long position, long count, WritableByteChannel target) argument
[all...]
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXChoicePeer.java123 XChoicePeer(Choice target) { argument
124 super(target);
129 Choice target = (Choice)this.target;
130 int numItems = target.getItemCount();
131 unfurledChoice = new UnfurledChoice(target);
139 target.getFont(),
149 Choice target = (Choice)this.target;
150 int numItems = target
755 UnfurledChoice(Component target) argument
[all...]
H A DXEmbedCanvasPeer.java58 XEmbedCanvasPeer(Component target) { argument
59 super(target);
71 target.setFocusTraversalKeysEnabled(false);
103 Window toplevel = getTopLevel(target);
111 Window toplevel = getTopLevel(target);
276 //target.setFocusTraversalKeysEnabled(true);
330 XToolkit.postEvent(XToolkit.targetToAppContext(target), new ComponentEvent(target, ComponentEvent.COMPONENT_RESIZED));
336 postEvent(new InvocationEvent(target, new Runnable() {
338 KeyboardFocusManager.getCurrentKeyboardFocusManager().focusNextComponent(target);
[all...]
H A DXFileDialogPeer.java45 FileDialog target; field in class:XFileDialogPeer
47 // This variable holds value exactly the same as value of the 'target.file' variable except:
49 // 2) keep the same value if 'target.file' is incorrect (see setFile())
62 // Seems that the purpose of this variable is cashing of 'target.file' variable in order to help method show()
63 // We should think about using 'target.file' instead of 'savedFile'
64 // Perhaps, 'target.file' just more correct (see target.setFile())
88 // Namely, we invoke target.setFile() and then user can get this value
120 Locale l = target.getLocale();
133 XFileDialogPeer(FileDialog target) { argument
138 init(FileDialog target) argument
[all...]
H A DXTextFieldPeer.java68 public XTextFieldPeer(TextField target) { argument
69 super(target);
72 text = target.getText();
73 xtext = new XAWTTextField(text,this, target.getParent());
75 xtext.setCursor(target.getCursor());
78 TextField txt = (TextField) target;
114 setVisible(target.isVisible());
119 foreground = compAccessor.getForeground(target);
125 background = compAccessor.getBackground(target);
127 if (((TextField)target)
[all...]
/openjdk7/jdk/src/solaris/classes/sun/awt/
H A DX11GraphicsConfig.java256 * have the origin in the upper left-hand corner of the target region of
377 * that is associated with the target Component.
379 public Image createAcceleratedImage(Component target, argument
386 return new OffScreenImage(target, model, wr,
432 * Creates a VolatileImage that essentially wraps the target Component's
435 public VolatileImage createBackBufferImage(Component target, argument
438 return new SunVolatileImage(target,
439 target.getWidth(), target.getHeight(),
444 * Performs the native XDBE flip operation for the given target Componen
446 flip(X11ComponentPeer peer, Component target, VolatileImage xBackBuffer, int x1, int y1, int x2, int y2, BufferCapabilities.FlipContents flipAction) argument
[all...]

Completed in 143 milliseconds

<<21222324252627