Searched refs:Control (Results 1 - 25 of 86) sorted by relevance

1234

/external/jmonkeyengine/engine/src/bullet-common/com/jme3/bullet/control/
H A DPhysicsControl.java8 import com.jme3.scene.control.Control;
14 public interface PhysicsControl extends Control {
/external/icu4c/data/brkitr/
H A Dchar.txt17 $Control = [\p{Grapheme_Cluster_Break = Control}];
47 [^$Control $CR $LF] $Extend;
49 [^$Control $CR $LF] $SpacingMark;
50 # TODO: Restore if the Prepend set becomes non-empty again: $Prepend [^$Control $CR $LF];
63 $Extend [^$Control $CR $LF];
64 $SpacingMark [^$Control $CR $LF];
65 # TODO: Restore if the Prepend set becomes non-empty again: [^$Control $CR $LF] $Prepend;
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/editor/structure/
H A DIPage.java15 import org.eclipse.swt.widgets.Control;
25 * Creates the {@link Control} for this page.
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/
H A DControl.java43 * <code>Control</code>s are used to specify certain update and render logic
48 public interface Control extends Savable { interface in inherits:Savable
51 * Creates a clone of the Control, the given Spatial is the cloned
56 public Control cloneForSpatial(Spatial spatial);
72 * @see Control#setEnabled(boolean)
/external/libvpx/libvpx/test/
H A Dborders_test.cc33 encoder->Control(VP8E_SET_CPUUSED, 1);
34 encoder->Control(VP8E_SET_ENABLEAUTOALTREF, 1);
35 encoder->Control(VP8E_SET_ARNR_MAXFRAMES, 7);
36 encoder->Control(VP8E_SET_ARNR_STRENGTH, 5);
37 encoder->Control(VP8E_SET_ARNR_TYPE, 3);
H A Dcpu_speed_test.cc35 encoder->Control(VP8E_SET_CPUUSED, set_cpu_used_);
36 encoder->Control(VP8E_SET_ENABLEAUTOALTREF, 1);
37 encoder->Control(VP8E_SET_ARNR_MAXFRAMES, 7);
38 encoder->Control(VP8E_SET_ARNR_STRENGTH, 5);
39 encoder->Control(VP8E_SET_ARNR_TYPE, 3);
H A Daltref_test.cc39 encoder->Control(VP8E_SET_ENABLEAUTOALTREF, 1);
40 encoder->Control(VP8E_SET_CPUUSED, 3);
H A Dcq_test.cc49 encoder->Control(VP8E_SET_CQ_LEVEL, cq_level_);
51 encoder->Control(VP8E_SET_CPUUSED, 3);
H A Ddecode_test_driver.h62 void Control(int ctrl_id, int arg) { function in class:libvpx_test::Decoder
68 void Control(int ctrl_id, const void *arg) { function in class:libvpx_test::Decoder
H A Dtile_independence_test.cc40 inv_dec_->Control(VP9_INVERT_TILE_DECODE_ORDER, 1);
56 encoder->Control(VP9E_SET_TILE_COLUMNS, n_tiles_);
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/
H A DPropertyTooltipTextProvider.java14 import org.eclipse.swt.widgets.Control;
31 public Control createTooltipControl(Property property,
49 // create tooltip Control
H A DPropertyTooltipProvider.java18 import org.eclipse.swt.widgets.Control;
47 public abstract Control createTooltipControl(Property property,
94 Control tooltipControl = (Control) event.widget;
H A DHtmlTooltipHelper.java25 import org.eclipse.swt.widgets.Control;
51 public static Control createTooltipControl(Composite parent, String header, String details) {
55 public static Control createTooltipControl(Composite parent,
59 // prepare Control
60 Control control;
77 Control tooltipControl = (Control) event.widget;
90 private static Control createTooltipControl_Browser(Composite parent,
300 private static Control createTooltipControl_Label(Composite parent, String html) {
321 private static void hideTooltip(Control toolti
[all...]
H A DPropertyTableTooltipHelper.java15 import org.eclipse.swt.widgets.Control;
54 Control control = Display.getCurrent().getCursorControl();
150 Control control = provider.createTooltipControl(m_property, m_tooltip, endX - startX, this);
184 * Sets given {@link Control} correct background/foreground for tooltips.
186 private void configureColors(Control control) {
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/binding/editors/controls/
H A DDefaultControlActionsManager.java17 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) {
H A DAbstractControlActionsManager.java28 import org.eclipse.swt.widgets.Control;
38 * Manager for installing/unistalling global handlers for {@link Control} actions commands.
58 protected final Control m_control;
61 public AbstractControlActionsManager(final Control control) {
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/ui/
H A DPixelConverter.java16 import org.eclipse.swt.widgets.Control;
33 public PixelConverter(Control control) {
H A DGridDataFactory.java15 import org.eclipse.swt.widgets.Control;
102 private final Control m_control;
111 private GridDataFactory(Control control, GridData gridData) {
124 public static GridDataFactory create(Control control) {
132 public static GridDataFactory modify(Control control) {
/external/jmonkeyengine/engine/src/core/com/jme3/app/
H A DStatsView.java44 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/
H A DControlTest.java19 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 wit
[all...]
H A DResourceBundleTest.java20 import static java.util.ResourceBundle.Control.FORMAT_CLASS;
21 import static java.util.ResourceBundle.Control.FORMAT_DEFAULT;
22 import static java.util.ResourceBundle.Control.FORMAT_PROPERTIES;
39 import java.util.ResourceBundle.Control;
65 private static final Control CLASS_CONTROL = Control
68 private static final Control PROPERTIES_CONTROL = Control
71 private static final Control DEFAULT_CONTROL = Control
[all...]
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/presentation/
H A DButtonPropertyEditorPresentationImpl.java18 import org.eclipse.swt.widgets.Control;
54 Control control = m_propertyToControl.remove(propertyTable, property);
68 Control control = m_propertyToControl.get(propertyTable, property);
80 * Finds and select the appropriate {@link Control} belonging to given property.
91 // Control
97 private Control createControl(final PropertyTable propertyTable, final Property property) {
98 Control control = createControlImpl(propertyTable, property);
100 // when Control disposed, remove Control/Property from map to avoid memory leak
138 * Creates the {@link Control} instanc
[all...]
H A DButtonPropertyEditorPresentationImplMac.java18 import org.eclipse.swt.widgets.Control;
39 // Control
43 protected final Control createControlImpl(final PropertyTable propertyTable, Property property) {
/external/eigen/Eigen/src/UmfPackSupport/
H A DUmfPackSupport.h33 const double Control [UMFPACK_CONTROL], double Info [UMFPACK_INFO])
35 return umfpack_di_symbolic(n_row,n_col,Ap,Ai,Ax,Symbolic,Control,Info);
40 const double Control [UMFPACK_CONTROL], double Info [UMFPACK_INFO])
42 return umfpack_zi_symbolic(n_row,n_col,Ap,Ai,&internal::real_ref(Ax[0]),0,Symbolic,Control,Info);
47 const double Control[UMFPACK_CONTROL],double Info [UMFPACK_INFO])
49 return umfpack_di_numeric(Ap,Ai,Ax,Symbolic,Numeric,Control,Info);
54 const double Control[UMFPACK_CONTROL],double Info [UMFPACK_INFO])
56 return umfpack_zi_numeric(Ap,Ai,&internal::real_ref(Ax[0]),0,Symbolic,Numeric,Control,Info);
61 const double Control[UMFPACK_CONTROL], double Info[UMFPACK_INFO])
63 return umfpack_di_solve(sys,Ap,Ai,Ax,X,B,Numeric,Control,Inf
45 umfpack_numeric( const int Ap[], const int Ai[], const double Ax[], void *Symbolic, void **Numeric, const double Control[UMFPACK_CONTROL],double Info [UMFPACK_INFO]) argument
52 umfpack_numeric( const int Ap[], const int Ai[], const std::complex<double> Ax[], void *Symbolic, void **Numeric, const double Control[UMFPACK_CONTROL],double Info [UMFPACK_INFO]) argument
59 umfpack_solve( int sys, const int Ap[], const int Ai[], const double Ax[], double X[], const double B[], void *Numeric, const double Control[UMFPACK_CONTROL], double Info[UMFPACK_INFO]) argument
66 umfpack_solve( int sys, const int Ap[], const int Ai[], const std::complex<double> Ax[], std::complex<double> X[], const std::complex<double> B[], void *Numeric, const double Control[UMFPACK_CONTROL], double Info[UMFPACK_INFO]) argument
[all...]
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/
H A DNormalRecalcControl.java42 import com.jme3.scene.control.Control;
70 public Control cloneForSpatial(Spatial spatial) {

Completed in 578 milliseconds

1234