HomeSort by relevance Sort by last modified time
    Searched defs:Toolkit (Results 1 - 4 of 4) sorted by null

  /frameworks/base/awt/java/awt/
MenuComponent.java 76 * The toolkit.
78 final Toolkit toolkit = Toolkit.getDefaultToolkit(); field in class:MenuComponent
119 * @Override public int getAccessibleIndexInParent() { toolkit.lockAWT();
125 * return aIndex; } } } } return -1; } finally { toolkit.unlockAWT(); } }
128 * @Override public Accessible getAccessibleParent() { toolkit.lockAWT();
132 * } finally { toolkit.unlockAWT(); } }
160 * f) { return MenuComponent.this.toolkit.getFontMetrics(f); } public Point
166 * size.setSize(toolkit.theme.calculateMenuSize(this)); } void reset() { fo
    [all...]
Cursor.java 305 Toolkit.checkHeadless();
346 Image img = Toolkit.getDefaultToolkit().createImage(fileStr);
409 Toolkit toolkit = Toolkit.getDefaultToolkit(); local
411 nativeCursor = toolkit.createNativeCursor(type);
413 nativeCursor = toolkit.createCustomNativeCursor(image, hotSpot, name);
Toolkit.java 62 * The Toolkit class is the representation of the platform-specific Abstract
63 * Window Toolkit implementation. Toolkit's subclasses are used to bind the
64 * various components to particular native toolkit implementations.
68 public abstract class Toolkit {
195 Toolkit.this.setDesktopProperty(name, value);
316 * Gets the default Toolkit.
318 * @return the default Toolkit.
320 public static Toolkit getDefaultToolkit() {
325 Toolkit defToolkit = ContextStorage.getDefaultToolkit()
    [all...]
  /frameworks/base/awt/org/apache/harmony/awt/gl/font/
AndroidFont.java 24 import java.awt.Toolkit;
60 Toolkit.getDefaultToolkit();

Completed in 459 milliseconds