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

1 2 3 4 5 6 7 8

  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/
Panel.java 20 import org.eclipse.swt.widgets.Control;
28 public final Control createPanel(Composite parent) {
29 Control panelControl = createControl(parent);
39 * Creates a control capable of displaying some information. This is
42 protected abstract Control createControl(Composite parent);
45 * Sets the focus to the proper control inside the panel.
  /external/icu4c/data/brkitr/
char.txt 17 $Control = [\p{Grapheme_Cluster_Break = Control}];
44 [^$Control $CR $LF] $Extend;
46 [^$Control $CR $LF] $SpacingMark;
47 $Prepend [^$Control $CR $LF];
58 $Extend [^$Control $CR $LF];
59 $SpacingMark [^$Control $CR $LF];
60 [^$Control $CR $LF] $Prepend;
char_th.txt 17 $Control = [\p{Grapheme_Cluster_Break = Control}];
42 [^$Control $CR $LF] $Extend;
52 $Extend [^$Control $CR $LF];
  /external/bluetooth/bluez/audio/
audio.conf 6 Enable=Source,Control,Sink
14 #Disable=Control,Source
  /external/jmonkeyengine/engine/src/bullet-common/com/jme3/bullet/control/
PhysicsControl.java 5 package com.jme3.bullet.control;
8 import com.jme3.scene.control.Control;
14 public interface PhysicsControl extends Control {
21 * The physics object is removed from the physics space when the control
22 * is disabled. When the control is enabled again the physics object is
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/
SwtUtils.java 20 import org.eclipse.swt.widgets.Control;
23 public static int getFontWidth(Control c) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.monitor/src/com/android/ide/eclipse/monitor/
SwtUtils.java 20 import org.eclipse.swt.widgets.Control;
23 public static int getFontWidth(Control c) {
AndroidPreferencePage.java 21 import org.eclipse.swt.widgets.Control;
36 protected Control createContents(Composite parent) {
  /system/bluetooth/data/
audio.conf 8 Enable=Sink,Control
16 #Disable=Control,Source
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/editor/structure/
IPage.java 15 import org.eclipse.swt.widgets.Control;
25 * Creates the {@link Control} for this page.
36 * control may never have been created.
41 * @return the {@link Control} of this page, may be <code>null</code>.
43 Control getControl();
  /external/jmonkeyengine/engine/src/core/com/jme3/scene/control/
Control.java 33 package com.jme3.scene.control;
43 * <code>Control</code>s are used to specify certain update and render logic
48 public interface Control extends Savable {
51 * Creates a clone of the Control, the given Spatial is the cloned
52 * version of the spatial to which this control is attached to.
54 * @return A clone of this control for the spatial
56 public Control cloneForSpatial(Spatial spatial);
65 * @param enabled Enable or disable the control. If disabled, update()
72 * @see Control#setEnabled(boolean)
77 * Updates the control. This should not be called from user code
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/views/detail/
IDetailProvider.java 21 import org.eclipse.swt.widgets.Control;
32 /** Obtain the top level control used by this detail provider. */
33 Control getControl();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/export/
ExportFieldsPart.java 21 import org.eclipse.swt.widgets.Control;
73 HashMap<String, Control> map = getNameToField();
84 protected void setFieldModifyListener(Control field, ModifyListener markDirtyListener) {
90 protected String getFieldText(Control field) {
96 protected void setFieldText(Control field, String value) {
AbstractPropertiesFieldsPart.java 30 import org.eclipse.swt.widgets.Control;
46 private final HashMap<String, Control> mNameToField = new HashMap<String, Control>();
57 protected HashMap<String, Control> getNameToField() {
78 * @see #setFieldModifyListener(Control, ModifyListener)
92 for (Control field : mNameToField.values()) {
98 * Sets a listener that will mark the part as dirty when the control is modified.
102 * The listener must call {@link #markDirty()} when the control is modified by the user.
104 * @param field A control previously registered with {@link #getNameToField()}.
109 protected void setFieldModifyListener(Control field, ModifyListener markDirtyListener)
    [all...]
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/
PropertyTooltipTextProvider.java 14 import org.eclipse.swt.widgets.Control;
31 public Control createTooltipControl(Property property,
49 // create tooltip Control
PropertyTooltipProvider.java 18 import org.eclipse.swt.widgets.Control;
45 * Create tooltip control.
47 public abstract Control createTooltipControl(Property property,
60 * Returns position for tooltip control. Usually we should show directly on same row, because we
94 Control tooltipControl = (Control) event.widget;
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/binding/editors/controls/
DefaultControlActionsManager.java 17 import org.eclipse.swt.widgets.Control;
21 * Default manager for installing/unistalling global handlers for {@link Control} actions commands.
31 public DefaultControlActionsManager(final Control control) {
32 super(control);
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/ui/
PixelConverter.java 16 import org.eclipse.swt.widgets.Control;
33 public PixelConverter(Control control) {
34 GC gc = new GC(control);
35 gc.setFont(control.getFont());
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/
FlagValueCellEditor.java 22 import org.eclipse.swt.widgets.Control;
39 protected Object openDialogBox(Control cellEditorWindow) {
ResourceValueCellEditor.java 23 import org.eclipse.swt.widgets.Control;
40 protected Object openDialogBox(Control cellEditorWindow) {
ListValueCellEditor.java 25 import org.eclipse.swt.widgets.Control;
40 protected Control createControl(Composite parent) {
  /external/jmonkeyengine/engine/src/core/com/jme3/app/
StatsView.java 44 import com.jme3.scene.control.Control;
62 public class StatsView extends Node implements Control {
114 public Control cloneForSpatial(Spatial spatial) {
115 return (Control) spatial;
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
ControlTest.java 19 import static java.util.ResourceBundle.Control.FORMAT_CLASS;
20 import static java.util.ResourceBundle.Control.FORMAT_DEFAULT;
21 import static java.util.ResourceBundle.Control.FORMAT_PROPERTIES;
22 import static java.util.ResourceBundle.Control.TTL_DONT_CACHE;
23 import static java.util.ResourceBundle.Control.TTL_NO_EXPIRATION_CONTROL;
44 import java.util.ResourceBundle.Control;
50 * Test cases for java.util.ResourceBundle.Control
57 * Control with format:FORMAT_PROPERTIES
59 private Control controlP;
62 * Control with format:FORMAT_CLAS
69 private Control control; field in class:ControlTest
    [all...]
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/presentation/
ButtonPropertyEditorPresentationImpl.java 18 import org.eclipse.swt.widgets.Control;
54 Control control = m_propertyToControl.remove(propertyTable, property); local
55 if (control != null) {
56 control.dispose();
67 // prepare control
68 Control control = m_propertyToControl.get(propertyTable, property); local
69 if (control == null) {
70 control = createControl(propertyTable, property)
98 Control control = createControlImpl(propertyTable, property); local
213 m_map.put(Pair.create(propertyTable, property), control); local
    [all...]
ButtonPropertyEditorPresentationImplMac.java 18 import org.eclipse.swt.widgets.Control;
39 // Control
43 protected final Control createControlImpl(final PropertyTable propertyTable, Property property) {

Completed in 575 milliseconds

1 2 3 4 5 6 7 8