Searched defs:target (Results 251 - 275 of 670) sorted by relevance

<<11121314151617181920>>

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/
H A DAnyTypeBeanInfo.java87 public String getId(Object element, XMLSerializer target) { argument
91 public void serializeBody(Object element, XMLSerializer target) throws SAXException, IOException, XMLStreamException { argument
99 target.text(child.getNodeValue(),null);
102 target.writeDom((Element)child,domHandler,null,null);
108 public void serializeAttributes(Object element, XMLSerializer target) throws SAXException { argument
124 target.attribute(uri,local,a.getValue());
128 public void serializeRoot(Object element, XMLSerializer target) throws SAXException { argument
129 target.reportError(
137 public void serializeURIs(Object element, XMLSerializer target) { argument
140 NamespaceContext2 context = target
[all...]
H A DLeafBeanInfoImpl.java105 public final String getId(BeanT bean, XMLSerializer target) { argument
120 public final void serializeAttributes(BeanT bean, XMLSerializer target) { argument
124 public final void serializeRoot(BeanT bean, XMLSerializer target) throws SAXException, IOException, XMLStreamException { argument
126 target.reportError(
134 target.startElement(tagName,bean);
135 target.childAsSoleContent(bean,null);
136 target.endElement();
140 public final void serializeURIs(BeanT bean, XMLSerializer target) throws SAXException { argument
145 xducer.declareNamespace(bean,target);
147 target
[all...]
H A DValueListBeanInfoImpl.java93 state.target = toArray(r);
105 public void serializeBody(Object array, XMLSerializer target) throws SAXException, IOException, XMLStreamException { argument
110 xducer.writeText(target,item,"arrayItem");
112 target.reportError("arrayItem",e);
117 public final void serializeURIs(Object array, XMLSerializer target) throws SAXException { argument
123 xducer.declareNamespace(item,target);
125 target.reportError("arrayItem",e);
147 public final String getId(Object array, XMLSerializer target) { argument
151 public final void serializeAttributes(Object array, XMLSerializer target) { argument
155 public final void serializeRoot(Object array, XMLSerializer target) throw argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/addressing/
H A DWsaServerTube.java176 WSEndpointReference target = msg.isFault()?faultTo:replyTo;
178 if(target.isAnonymous() || isAnonymousRequired )
182 if(target.isNone()) {
189 processNonAnonymousReply(response,target);
205 * @param target
208 private void processNonAnonymousReply(final Packet packet, WSEndpointReference target) { argument
222 adrs = new EndpointAddress(URI.create(target.getAddress()));
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/util/xml/
H A DContentHandlerToXMLStreamWriter.java158 public void processingInstruction(String target, String data) argument
162 staxWriter.writeProcessingInstruction(target, data);
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/bind/
H A DUnmarshaller.java1089 * Callback method invoked before unmarshalling into <tt>target</tt>.
1092 * This method is invoked immediately after <tt>target</tt> was created and
1094 * if the class of <tt>target</tt> defines its own <tt>beforeUnmarshal</tt> method,
1097 * @param target non-null instance of JAXB mapped class prior to unmarshalling into it.
1098 * @param parent instance of JAXB mapped class that will eventually reference <tt>target</tt>.
1099 * <tt>null</tt> when <tt>target</tt> is root element.
1101 public void beforeUnmarshal(Object target, Object parent) { argument
1106 * Callback method invoked after unmarshalling XML data into <tt>target</tt>.
1109 * This method is invoked after all the properties (except IDREF) are unmarshalled into <tt>target</tt>,
1110 * but before <tt>target</t
1118 afterUnmarshal(Object target, Object parent) argument
[all...]
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dawt_DrawingSurface.c58 * Lock the surface of the target component for native rendering.
75 jobject target, peer; local
86 target = ds->target;
88 /* Make sure the target is a java.awt.Component */
90 if (!(*env)->IsInstanceOf(env, target, componentClass)) {
102 /* Get the peer of the target component */
103 peer = (*env)->GetObjectField(env, target, componentIDs.peer);
126 jobject target, peer; local
141 target
200 jobject target, peer; local
328 awt_GetDrawingSurface(JNIEnv* env, jobject target) argument
391 jobject target = NULL; local
[all...]
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWChoicePeer.java40 FontMetrics fm = getFontMetrics(((Choice)target).getFont());
41 Choice c = (Choice)target;
81 WChoicePeer(Choice target) { argument
82 super(target);
88 Choice opt = (Choice)target;
101 Window parentWindow = SunToolkit.getContainingWindow((Component)target);
122 Window parentWindow = SunToolkit.getContainingWindow((Component)target);
135 final Choice c = (Choice)target;
146 Choice c = (Choice)target;
H A DWMenuItemPeer.java52 WToolkit.targetDisposedPeer(target, this);
81 MenuShortcut sc = ((MenuItem)target).getShortcut();
102 WMenuItemPeer(MenuItem target) { argument
103 this(target, false);
106 WMenuItemPeer(MenuItem target, boolean isCheckbox) { argument
107 this.target = target;
108 this.parent = (WMenuPeer) WToolkit.targetToPeer(target.getParent());
138 WToolkit.postEvent(WToolkit.targetToAppContext(target), event);
148 WToolkit.executeOnEventHandlerThread(target, ne
[all...]
H A DWScrollbarPeer.java40 if (((Scrollbar)target).getOrientation() == Scrollbar.VERTICAL) {
58 WScrollbarPeer(Scrollbar target) { argument
59 super(target);
65 Scrollbar sb = (Scrollbar)target;
78 final Scrollbar sb = (Scrollbar)target;
121 final Scrollbar sb = (Scrollbar)target;
H A DWTextComponentPeer.java43 setBackground(((TextComponent)target).getBackground());
53 WTextComponentPeer(TextComponent target) { argument
54 super(target);
58 TextComponent tc = (TextComponent)target;
100 postEvent(new TextEvent(target, TextEvent.TEXT_VALUE_CHANGED));
/openjdk7/jdk/src/windows/classes/sun/nio/ch/
H A DPollArrayWrapper.java78 // over the entry in the target wrapper at the target index.
80 PollArrayWrapper target, int tindex) {
81 target.putDescriptor(tindex, source.getDescriptor(sindex));
82 target.putEventOps(tindex, source.getEventOps(sindex));
79 replaceEntry(PollArrayWrapper source, int sindex, PollArrayWrapper target, int tindex) argument
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_DrawingSurface.cpp46 jobject target = parent->target; local
47 if (JNU_IsNull(env, target)) {
48 DTRACE_PRINTLN("NULL target");
51 HWND newHwnd = AwtComponent::GetHWnd(env, target);
59 bounds.x = env->GetIntField(target, AwtComponent::xID);
60 bounds.y = env->GetIntField(target, AwtComponent::yID);
61 bounds.width = env->GetIntField(target, AwtComponent::widthID);
62 bounds.height = env->GetIntField(target, AwtComponent::heightID);
97 target
237 DSGetDrawingSurface(JNIEnv* env, jobject target) argument
[all...]
H A Dawt_PrintDialog.cpp169 Java_sun_awt_windows_WPrintDialog_setPeer(JNIEnv *env, jobject target, argument
174 env->SetObjectField(target, AwtComponent::peerID, peer);
205 jobject target = env->GetObjectField(peerGlobalRef, AwtObject::targetID); local
206 DASSERT(target != NULL);
208 jobject control = env->GetObjectField(target, AwtPrintDialog::controlID);
269 AwtDialog::ModalActivateNextWindow(NULL, target, peer);
273 env->DeleteLocalRef(target);
/openjdk7/jdk/test/com/sun/jdi/
H A DExceptionEvents.java108 final String target; field in class:ExceptionEvents
117 ExceptionEvents(String target, argument
122 this.target = target;
240 static void goCaught(String target, argument
242 goSuspendPolicy(target, true, exceptionName,
244 goSuspendPolicy(target, true, exceptionName,
246 goSuspendPolicy(target, false, exceptionName,
248 goSuspendPolicy(target, false, exceptionName,
256 static void goUncaught(String target, argument
271 goNeither(String target, String exceptionName) argument
287 goSuspendPolicy(String target, boolean expectedEvent, String exceptionName, boolean caught, boolean uncaught) argument
304 go(String target, boolean expectedEvent, String exceptionName, boolean caught, boolean uncaught, int suspendPolicy) argument
[all...]
/openjdk7/jdk/test/java/awt/event/MouseEvent/SpuriousExitEnter/
H A DSpuriousExitEnter_3.java152 private Component target; field in class:EnterExitAdapter
156 public EnterExitAdapter(Component target) { argument
157 this.target = target;
161 return target;
172 System.out.println("Zeroeing on " +target.getClass().getName());
/openjdk7/jdk/test/java/nio/file/Files/
H A DCopyAndMove.java144 // move source to target with verification
145 static void moveAndVerify(Path source, Path target, CopyOption... options) argument
169 // record link target if symbolic link
182 Path result = move(source, target, options);
183 assertTrue(result == target);
190 if (computeHash(target) != hash)
194 // verify link target
196 if (!readSymbolicLink(target).equals(linkTarget))
202 readAttributes(target, BasicFileAttributes.class, NOFOLLOW_LINKS));
205 if (source.getFileSystem().provider() == target
598 copyAndVerify(Path source, Path target, CopyOption... options) argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/formats/html/markup/
H A DHtmlDocWriter.java177 * @param target Target frame.
182 String stylename, String title, String target) {
194 if (target != null && target.length() != 0) {
195 retlink.append(" target=\"" + target + "\"");
225 * @param target Target frame.
229 Content label, String title, String target) {
237 if (target != null && target
180 getHyperLinkString(String link, String where, String label, boolean strong, String stylename, String title, String target) argument
228 getHyperLink(String link, String where, Content label, String title, String target) argument
[all...]
/openjdk7/jdk/src/share/javavm/export/
H A Djawt.h40 * legacy C and C++ applications to Java and to target the needs of the
191 /* Cached reference to the target object */
192 jobject target; member in struct:jawt_DrawingSurface
194 * Lock the surface of the target component for native rendering.
227 * Unlock the drawing surface of the target component for native rendering.
244 * Return a drawing surface from a target jobject. This value
253 (JNIEnv* env, jobject target);
/openjdk7/jdk/src/share/classes/sun/security/provider/certpath/
H A DBuilder.java112 * When building reverse, the target certificate will complete the path.
245 * a given target.
250 * may not actually lead to the target at all.
252 * @param target GeneralNameInterface name of target
253 * @return distance from this certificate to target:
255 * <li>-1 means certificate could be CA for target, but
258 * matches target
260 * target.
262 * parent of target
283 targetDistance(NameConstraintsExtension constraints, X509Certificate cert, GeneralNameInterface target) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/swing/
H A DDefaultLayoutStyle.java101 * @param target Second component
106 protected int getButtonGap(JComponent source, JComponent target, argument
110 offset -= getButtonGap(target, flipDirection(position));
/openjdk7/jdk/src/share/classes/sun/text/
H A DCompactByteArray.java216 byte[] target, int targetStart,
222 if (source[i] != target[i + delta])
215 arrayRegionMatches(byte[] source, int sourceStart, byte[] target, int targetStart, int len) argument
/openjdk7/jdk/src/share/classes/sun/text/normalizer/
H A DUTF16.java401 * @param target the buffer to append to
408 public static StringBuffer append(StringBuffer target, int char32) argument
418 target.append(getLeadSurrogate(char32));
419 target.append(getTrailSurrogate(char32));
422 target.append((char)char32);
424 return target;
H A DUtility.java48 char[] target, int targetStart,
54 if (source[i]!=target[i + delta])
47 arrayRegionMatches(char[] source, int sourceStart, char[] target, int targetStart, int len) argument
/openjdk7/jdk/src/share/classes/sun/tools/tree/
H A DUplevelReference.java55 LocalMember target; field in class:UplevelReference
58 * The local variable which bears a copy of the target's value,
61 * "val$x" for other target variables <code>x</code>.
72 * bears a copy of the target's value.
87 public UplevelReference(ClassDefinition client, LocalMember target) { argument
89 this.target = target;
93 if (target.getName().equals(idThis)) {
94 ClassDefinition tc = target.getClassDefinition();
135 valName = Identifier.lookup(prefixVal + target
[all...]

Completed in 127 milliseconds

<<11121314151617181920>>