HomeSort by relevance Sort by last modified time
    Searched refs:Control (Results 51 - 75 of 187) sorted by null

1 23 4 5 6 7 8

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
InputDensityDialog.java 28 import org.eclipse.swt.widgets.Control;
48 protected Control createDialogArea(Composite parent) {
ColumnDialog.java 29 import org.eclipse.swt.widgets.Control;
54 protected Control createDialogArea(Composite parent) {
LintListDialog.java 36 import org.eclipse.swt.widgets.Control;
79 protected Control createContents(Composite parent) {
80 Control contents = super.createContents(parent);
89 protected Control createDialogArea(Composite parent) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/
WorkingSetGroup.java 21 import org.eclipse.swt.widgets.Control;
57 // *before* we construct the control. However the control is created when the
96 for (Control control : parent.getChildren()) {
97 if (control instanceof Button && (control.getStyle() & SWT.CHECK) == SWT.CHECK) {
98 return (Button) control;
99 } else if (control instanceof Composite) {
100 Button found = findCheckbox((Composite) control);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.base/src/com/android/ide/eclipse/base/internal/preferences/
UsagePreferencePage.java 30 import org.eclipse.swt.widgets.Control;
51 protected Control createContents(Composite parent) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/views/detail/
TextureImageDetailsProvider.java 30 import org.eclipse.swt.widgets.Control;
63 public Control getControl() {
ShaderUniformDetailsProvider.java 28 import org.eclipse.swt.widgets.Control;
54 public Control getControl() {
  /sdk/hierarchyviewer2/app/src/com/android/hierarchyviewer/
AboutDialog.java 31 import org.eclipse.swt.widgets.Control;
54 protected Control createDialogArea(Composite parent) {
55 Composite control = new Composite(parent, SWT.NONE); local
56 control.setLayout(new GridLayout(2, true));
57 Composite imageControl = new Composite(control, SWT.BORDER);
63 CLabel textLabel = new CLabel(control, SWT.NONE);
69 return control;
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/
PropertyEditor.java 19 import org.eclipse.swt.widgets.Control;
57 * create here any {@link Control}'s required to edit {@link Property}.
75 * Sets the new bounds for editor's control.
82 * {@link Control}'s created before in {@link #activate(PropertyTable, Property, Point)}.
  /external/jmonkeyengine/engine/src/core/com/jme3/scene/control/
AbstractControl.java 33 package com.jme3.scene.control;
45 * An abstract implementation of the Control interface.
49 public abstract class AbstractControl implements Control {
59 throw new IllegalStateException("This control has already been added to a Spatial");
UpdateControl.java 32 package com.jme3.scene.control;
88 public Control cloneForSpatial(Spatial newSpatial) {
89 UpdateControl control = new UpdateControl(); local
90 control.setSpatial(newSpatial);
91 control.setEnabled(isEnabled());
92 control.taskQueue.addAll(taskQueue);
93 return control;
  /external/jmonkeyengine/engine/src/core/com/jme3/scene/
Spatial.java 49 import com.jme3.scene.control.Control;
144 protected SafeArrayList<Control> controls = new SafeArrayList<Control>(Control.class);
539 for (Control c : controls.getArray()) {
546 * controls attached to this Spatial using the Control.render() method.
551 * @see Spatial#addControl(com.jme3.scene.control.Control)
559 for (Control c : controls.getArray())
583 Control control = controls.remove(i); local
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/maccommon/
SDL_macwm.c 111 cParam.ioCompletion = NULL; /* set up control params */
261 err = Control((**hGD).gdRefNum, cscSetGamma, (Ptr) &csPtr); /* restore gamma */
271 err = Control((**hGD).gdRefNum, cscSetEntries, (Ptr) &csPtr); /* SetEntries in CLUT */
356 err = Control((**hGD).gdRefNum, cscSetGamma, (Ptr) &csPtr); /* restore gamma (note, display drivers may delay returning from this until VBL) */
365 err = Control((**hGD).gdRefNum, cscSetEntries, (Ptr) &csPtr); /* SetEntries in CLUT */
377 err = Control((**hGD).gdRefNum, cscSetGamma, (Ptr) &csPtr); /* restore gamma */
386 err = Control((**hGD).gdRefNum, cscSetEntries, (Ptr) &csPtr); /* SetEntries in CLUT */
391 return false; /* memory allocation or device control failed if we get here */
  /external/jmonkeyengine/engine/src/bullet-common/com/jme3/bullet/control/
GhostControl.java 5 package com.jme3.bullet.control;
19 import com.jme3.scene.control.Control;
69 public Control cloneForSpatial(Spatial spatial) {
70 GhostControl control = new GhostControl(collisionShape); local
71 control.setCcdMotionThreshold(getCcdMotionThreshold());
72 control.setCcdSweptSphereRadius(getCcdSweptSphereRadius());
73 control.setCollideWithGroups(getCollideWithGroups());
74 control.setCollisionGroup(getCollisionGroup());
75 control.setPhysicsLocation(getPhysicsLocation())
    [all...]
  /external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/
TerrainLodControl.java 44 import com.jme3.scene.control.AbstractControl;
45 import com.jme3.scene.control.Control;
62 * This control serializes, but it does not save the Camera reference.
133 public Control cloneForSpatial(Spatial spatial) {
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/
InfoPanel.java 25 import org.eclipse.swt.widgets.Control;
42 "Supports Profiling Control:",
43 "Supports HPROF Control:",
53 * Create our control(s).
56 protected Control createControl(Composite parent) {
80 * Sets the focus to the proper control inside the panel.
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
ConvertSwitchDialog.java 32 import org.eclipse.swt.widgets.Control;
67 protected Control createDialogArea(Composite parent) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/
UiElementPart.java 29 import org.eclipse.swt.widgets.Control;
163 for (Control c : table.getChildren()) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.monitor/src/com/android/ide/eclipse/monitor/
SdkLocationChooserDialog.java 33 import org.eclipse.swt.widgets.Control;
52 protected Control createDialogArea(Composite parent) {
  /sdk/sdkstats/src/com/android/sdkstats/
SdkStatsPermissionDialog.java 31 import org.eclipse.swt.widgets.Control;
100 protected Control createDialogArea(Composite parent) {
  /sdk/traceview/src/com/android/traceview/
PropertiesDialog.java 29 import org.eclipse.swt.widgets.Control;
54 protected Control createDialogArea(Composite parent) {
  /external/guava/guava-tests/test/com/google/common/hash/
AbstractStreamingHasherTest.java 130 Control control = new Control(); local
131 Hasher controlSink = control.newHasher(1024);
218 private static class Control extends AbstractNonStreamingHashFunction {
  /external/jmonkeyengine/engine/src/core/com/jme3/cinematic/events/
MotionTrack.java 49 import com.jme3.scene.control.Control;
54 * A MotionTrack is a control over the spatial that manage the position and direction of the spatial while following a motion Path
60 public class MotionTrack extends AbstractCinematicEvent implements Control {
259 * Clone this control for the given spatial
263 public Control cloneForSpatial(Spatial spatial) {
264 MotionTrack control = new MotionTrack(spatial, path); local
265 control.playState = playState;
266 control.currentWayPoint = currentWayPoint;
267 control.currentValue = currentValue
    [all...]
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/log/event/
DisplaySyncPerf.java 24 import org.eclipse.swt.widgets.Control;
111 * @return the created control (which may have children).
114 public Control createComposite(final Composite parent, EventLogParser logParser,
116 Control composite = createCompositeChart(parent, logParser, "Sync Performance");
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/
GLTraceCollectorDialog.java 30 import org.eclipse.swt.widgets.Control;
61 protected Control createButtonBar(Composite parent) {
73 protected Control createDialogArea(Composite parent) {

Completed in 1967 milliseconds

1 23 4 5 6 7 8