Searched refs:target (Results 201 - 225 of 985) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWListPeer.java46 List l = (List)target;
93 List l = (List)target;
104 List li = (List)target;
118 WListPeer(List target) { argument
119 super(target);
125 List li = (List)target;
135 // add any items that were already inserted in the target.
189 fm = getFontMetrics( ((List)target).getFont() );
196 final List l = (List)target;
200 postEvent(new ActionEvent(target, ActionEven
[all...]
H A DWTrayIconPeer.java57 WToolkit.targetDisposedPeer(target, this);
60 WTrayIconPeer(TrayIcon target) { argument
61 this.target = target;
68 Image image = ((TrayIcon)target).getImage();
80 SunToolkit.executeOnEventHandlerThread(target, new Runnable() {
82 PopupMenu newPopup = ((TrayIcon)target).getPopupMenu();
119 boolean autosize = ((TrayIcon)target).isImageAutoSize();
169 WToolkit.postEvent(WToolkit.targetToAppContext(target), event);
189 if (image != ((TrayIcon)target)
[all...]
H A DWWindowPeer.java95 AppContext appContext = SunToolkit.targetToAppContext(target);
130 if ((value && ((Window)target).isVisible()) || !value) {
136 setAlwaysOnTop(((Window)target).isAlwaysOnTop());
140 setFocusableWindow(((Window)target).isFocusableWindow());
162 WWindowPeer(Window target) { argument
163 super(target);
171 Font f = ((Window)target).getFont();
174 ((Window)target).setFont(f);
181 initActiveWindowsTracking((Window)target);
185 Shape shape = ((Window)target)
[all...]
/openjdk7/jdk/src/share/classes/sun/java2d/
H A DDisposer.java99 * @param target Object to be registered
104 public static void addRecord(Object target, argument
107 disposerInstance.add(target,
113 * @param target Object to be registered
117 public static void addRecord(Object target, DisposerRecord rec) { argument
118 disposerInstance.add(target, rec);
122 * Performs the actual registration of the target object to be disposed.
123 * @param target Object to be registered, or if target is an instance
129 synchronized void add(Object target, DisposerRecor argument
[all...]
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXContentWindow.java138 AWTAccessor.getComponentAccessor().setSize((Component)target, bounds.width, bounds.height);
139 postEvent(new ComponentEvent(target, ComponentEvent.COMPONENT_RESIZED));
143 public void handleExposeEvent(Component target, int x, int y, int w, int h) { argument
158 iconifiedExposeEvents.add(new SavedExposeEvent(target, x, y, w, h));
161 super.handleExposeEvent(target, x, y, w, h);
167 super.handleExposeEvent(evt.target, evt.x, evt.y, evt.w, evt.h);
173 Component target; field in class:XContentWindow.SavedExposeEvent
175 SavedExposeEvent(Component target, int x, int y, int w, int h) { argument
176 this.target = target;
[all...]
H A DXTrayIconPeer.java46 TrayIcon target; field in class:XTrayIconPeer
71 XTrayIconPeer(TrayIcon target) argument
74 this.target = target;
78 canvas = new TrayIconCanvas(target, TRAY_ICON_WIDTH, TRAY_ICON_HEIGHT);
209 SunToolkit.executeOnEventHandlerThread(xtiPeer.target, new Runnable() {
211 SystemTray.getSystemTray().remove(xtiPeer.target);
260 balloon = new InfoWindow.Balloon(eframe, target, this);
261 tooltip = new InfoWindow.Tooltip(eframe, target, this);
267 if (SunToolkit.isDispatchThreadForAppContext(target)) {
517 TrayIcon target; field in class:XTrayIconPeer.TrayIconCanvas
520 TrayIconCanvas(TrayIcon target, int width, int height) argument
[all...]
H A DXSystemTrayPeer.java38 SystemTray target; field in class:XSystemTrayPeer
52 XSystemTrayPeer(SystemTray target) { argument
53 this.target = target;
70 firePropertyChange(SYSTEM_TRAY_PROPERTY_NAME, null, target);
83 firePropertyChange(SYSTEM_TRAY_PROPERTY_NAME, target, null);
160 .firePropertyChange(target, propertyName, oldValue, newValue);
169 TrayIcon[] icons = target.getTrayIcons();
184 TrayIcon[] icons = target.getTrayIcons();
H A DXLabelPeer.java54 Label target = (Label) this.target;
55 label = target.getText();
59 alignment = target.getAlignment();
62 XLabelPeer(Label target) { argument
63 super(target);
/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_Menu.cpp80 jobject target = NULL; local
88 target = env->GetObjectField(self, AwtObject::targetID);
89 JNI_CHECK_NULL_GOTO(target, "null target", done);
98 env->DeleteLocalRef(target);
110 env->DeleteLocalRef(target);
115 if (target != NULL) {
116 env->DeleteLocalRef(target);
191 int AwtMenu::CountItem(jobject target) argument
194 jint nCount = env->CallIntMethod(target, AwtMen
199 GetItem(jobject target, jint index) argument
231 jobject target = GetTarget(env); local
261 jobject target = GetTarget(env); local
[all...]
/openjdk7/hotspot/src/share/vm/classfile/
H A DstackMapFrame.cpp174 const StackMapFrame* target) const {
176 // target frame does not depend upon the current type.
186 assert(max_locals() == target->max_locals() &&
187 stack_size() == target->stack_size(), "StackMap sizes must match");
192 if (!flag_this_uninit() || target->flags() != 0) {
196 for (int i = 0; i < target->locals_size(); ++i) {
197 if (locals()[i] == this_type && target->locals()[i] != top) {
202 for (int i = 0; i < target->stack_size(); ++i) {
203 if (stack()[i] == this_type && target->stack()[i] != top) {
212 const StackMapFrame* target, boo
211 is_assignable_to( const StackMapFrame* target, bool is_exception_handler, ErrorContext* ctx, TRAPS) const argument
[all...]
/openjdk7/jdk/src/share/classes/java/lang/invoke/
H A DInvokeGeneric.java96 /** Return a method handle to invoke on the callerType, target, and remaining arguments.
98 * This is the first look at the caller type and target.
100 private MethodHandle dispatch(MethodType callerType, MethodHandle target) { argument
101 MethodType targetType = target.type();
102 if (USE_AS_TYPE_PATH || target.isVarargsCollector()) {
103 MethodHandle newTarget = target.asType(callerType);
116 private MethodHandle dispatchWithConversion(MethodType callerType, MethodHandle target) { argument
117 MethodHandle finisher = dispatch(callerType, target);
118 if (returnConversionNeeded(callerType, target))
127 private boolean returnConversionNeeded(MethodType callerType, MethodHandle target) { argument
[all...]
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkNativeWrapper.hpp41 methodHandle target,
46 target,
54 methodHandle target,
59 _target(target),
80 methodHandle target() const { function in class:SharkNativeWrapper
87 return target()->size_of_parameters();
96 return target()->is_static();
99 return target()->is_synchronized();
102 return target()->is_returning_oop();
40 build(SharkBuilder* builder, methodHandle target, const char* name, BasicType* arg_types, BasicType return_type) argument
53 SharkNativeWrapper(SharkBuilder* builder, methodHandle target, const char* name, BasicType* arg_types, BasicType return_type) argument
/openjdk7/jdk/src/share/classes/sun/java2d/loops/
H A DDrawGlyphList.java141 DrawGlyphList target; field in class:DrawGlyphList.TraceDrawGlyphList
143 public TraceDrawGlyphList(DrawGlyphList target) { argument
144 super(target.getSourceType(),
145 target.getCompositeType(),
146 target.getDestType());
147 this.target = target;
157 tracePrimitive(target);
158 target.DrawGlyphList(sg2d, dest, glyphs);
H A DDrawGlyphListAA.java139 DrawGlyphListAA target; field in class:DrawGlyphListAA.TraceDrawGlyphListAA
141 public TraceDrawGlyphListAA(DrawGlyphListAA target) { argument
142 super(target.getSourceType(),
143 target.getCompositeType(),
144 target.getDestType());
145 this.target = target;
155 tracePrimitive(target);
156 target.DrawGlyphListAA(sg2d, dest, glyphs);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/
H A DArrayBeanInfoImpl.java82 state.target = new ArrayList();
87 state.target = toArray((List)state.target);
106 ((List)state.target).add(o);
118 public void serializeBody(Object array, XMLSerializer target) throws SAXException, IOException, XMLStreamException { argument
123 target.startElement("","item",null,null);
125 target.writeXsiNilTrue();
127 target.childAsXsiType(item,"arrayItem",itemBeanInfo, false);
129 target.endElement();
150 public final String getId(Object array, XMLSerializer target) { argument
154 serializeAttributes(Object array, XMLSerializer target) argument
158 serializeRoot(Object array, XMLSerializer target) argument
167 serializeURIs(Object array, XMLSerializer target) argument
[all...]
/openjdk7/jdk/src/solaris/sample/dtrace/hotspot/
H A Dmethod_invocation_stat.d104 hotspot$target:::method-entry
129 hotspot_jni$target:::*-entry
137 /pid == $target && SYS_DEEP == 0/
143 /pid == $target/
151 /pid == $target/
157 /pid == $target && SYS_DEEP == 0/
207 /pid == $target/
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DSelect.java75 protected int[] indices; // target offsets
76 protected InstructionHandle[] targets; // target objects in instruction list
88 * (Match, target) pairs for switch.
93 * @param target default instruction target
96 InstructionHandle target) {
97 super(opcode, target);
107 throw new ClassGenException("Match and target array have not the same length");
150 index = getTargetOffset(); // Write default target offset
166 // Default branch target commo
95 Select(short opcode, int[] match, InstructionHandle[] targets, InstructionHandle target) argument
197 setTarget(int i, InstructionHandle target) argument
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/
H A DLivenessAnalysis.java47 public static LivenessPathList computeAllLivenessPaths(Oop target) { argument
48 LivenessPathList list = computeAllLivenessPaths(target, true);
67 // returned. On the other hand, if the target object itself is
71 private static LivenessPathList computeAllLivenessPaths(Oop target, boolean trimPathsThroughPopularObjects) { argument
79 if (rev.get(target) == null) {
93 visitedOops.add(target);
99 path.push(new LivenessPathElement(target, null));
/openjdk7/jdk/src/share/classes/com/sun/tools/hat/internal/server/
H A DRootsQuery.java57 JavaHeapObject target = snapshot.findThing(id);
58 if (target == null) {
65 startHtml("Rootset references to " + target
68 startHtml("Rootset references to " + target
74 = snapshot.rootsetReferencesTo(target, includeWeak);
90 printThing(target);
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DEventQueueImpl.java42 TargetVM target; field in class:EventQueueImpl
45 EventQueueImpl(VirtualMachine vm, TargetVM target) { argument
47 this.target = target;
48 target.addEventQueue(this);
210 target.notifyDequeueEventSet();
/openjdk7/jdk/src/macosx/native/sun/osxapp/
H A DThreadUtilities.m61 + (void)performOnMainThread:(SEL)aSelector on:(id)target withObject:(id)arg waitUntilDone:(BOOL)wait {
63 [target performSelector:aSelector withObject:arg];
65 [JNFRunLoop performOnMainThread:aSelector on:target withObject:arg waitUntilDone:wait];
/openjdk7/jdk/test/java/util/Collections/
H A DFindSubList.java36 List target[]= new List[N+1];
43 target[i] = t;
59 int idx = Collections.indexOfSubList(s, target[i]);
67 throw new Exception(s.getClass()+" indexOfSubList: big target");
74 Collections.reverse(target[i]);
76 index[i] = srcSize - index[i] - target[i].size();
84 int idx = Collections.lastIndexOfSubList(s, target[i]);
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaComboBoxUI.java359 int target = first - page;
360 if (target < 0) target = 0;
362 listBox.ensureIndexIsVisible(target);
363 listBox.setSelectedIndex(target);
380 int target = last + page;
381 if (target > end) target = end;
383 listBox.ensureIndexIsVisible(target);
384 listBox.setSelectedIndex(target);
[all...]
/openjdk7/jdk/src/share/classes/java/beans/
H A DXMLEncoder.java136 * The "class" attribute is used to specify the target of a static
141 * the outer context as the target if no target is defined
224 public boolean marked = false; // Marked -> refs > 0 unless ref was a target.
334 private List<Statement> statementList(Object target) { argument
335 List<Statement> list = targetToStatementList.get(target);
338 targetToStatementList.put(target, list);
364 Object target = exp.getTarget();
366 if (!(target instanceof Class)) {
367 statementList(target)
[all...]

Completed in 65 milliseconds

1234567891011>>