HomeSort by relevance Sort by last modified time
    Searched refs:component (Results 1 - 25 of 133) sorted by null

1 2 3 4 5 6

  /external/junit/src/junit/swingui/
MacProgressBar.java 10 private JTextField component; field in class:MacProgressBar
12 public MacProgressBar(JTextField component) {
14 this.component= component;
18 component.setBackground(getStatusColor());
  /external/skia/include/core/
SkUnPreMultiply.h 52 static U8CPU ApplyScale(Scale scale, U8CPU component) {
53 SkASSERT(component <= 255);
54 return (scale * component + (1 << 23)) >> 24;
  /external/proguard/src/proguard/gui/
TabbedPane.java 66 * Adds a component with a given title to the tabbed pane.
69 * @param component the component that will be added as a tab.
71 public Component add(final String title, Component component)
137 cardPanel.add(title, component);
139 return component;
148 * @return the component containing the image.
150 public Component addImage(final Image image
158 JButton component = new JButton(new ImageIcon(image)); local
    [all...]
  /external/webkit/WebKitTools/Scripts/webkitpy/steps/
createbug.py 38 Options.component,
45 state["bug_id"] = self._tool.bugs.create_bug(state["bug_title"], state["bug_description"], component=self._options.component, cc=self._options.cc)