Searched defs:control (Results 1 - 25 of 38) sorted by relevance

12

/openjdk7/jdk/test/java/util/ResourceBundle/Control/
H A DBadControlsTest.java35 ResourceBundle.Control control;
37 control = new ResourceBundle.Control() {
42 testControl(control, "getFormats returns null");
44 control = new ResourceBundle.Control() {
49 testControl(control, "getFormats returns a List containing null");
51 control = new ResourceBundle.Control() {
56 testControl(control, "getCandidateLocales returns null");
58 control = new ResourceBundle.Control() {
63 testControl(control, "getCandidateLocales returns a List containing null");
71 control
103 testControl(ResourceBundle.Control control, String testTitle) argument
[all...]
H A DStressTest.java148 ResourceBundle.Control control; field in class:StressTest.Worker
157 control = new TestControl(max);
164 ResourceBundle rb = ResourceBundle.getBundle("StressOut", locale, control);
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWPageDialog.java45 WPageDialog(Frame parent, PrinterJob control, PageFormat page, Printable painter) { argument
46 super(parent, control);
52 WPageDialog(Dialog parent, PrinterJob control, PageFormat page, Printable painter) { argument
53 super(parent, control);
H A DWPrintDialog.java41 public WPrintDialog(Frame parent, PrinterJob control) { argument
43 this.pjob = control;
47 public WPrintDialog(Dialog parent, PrinterJob control) { argument
49 this.pjob = control;
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DModelConnectionBlock.java74 public ModelConnectionBlock(ModelSource source, ModelSource control, argument
77 if (control == null) {
83 this.sources[1] = control;
89 public ModelConnectionBlock(ModelSource source, ModelSource control, argument
92 if (control == null) {
98 this.sources[1] = control;
H A DSoftMixingMixer.java311 public Control getControl(Type control) { argument
312 throw new IllegalArgumentException("Unsupported control type : "
313 + control);
324 public boolean isControlSupported(Type control) { argument
H A DSoftMixingDataLine.java495 public final Control getControl(Type control) { argument
496 if (control != null) {
498 if (controls[i].getType() == control) {
503 throw new IllegalArgumentException("Unsupported control type : "
504 + control);
511 public final boolean isControlSupported(Type control) { argument
512 if (control != null) {
514 if (controls[i].getType() == control) {
H A DDLSModulator.java106 int control; field in class:DLSModulator
113 return control;
116 public void setControl(int control) { argument
117 this.control = control;
H A DSoftChannel.java93 double portamento_time = 1; // keyschanges per control buffer time
415 * start note within control buffers.
972 public void mapControlToDestination(int control, int[] destination, int[] range) { argument
974 if (!((control >= 0x01 && control <= 0x1F)
975 || (control >= 0x40 && control <= 0x5F))) {
981 cds_control_number = control;
988 new ModelIdentifier("midi_cc", Integer.toString(control)),
/openjdk7/jdk/src/share/classes/javax/sound/sampled/
H A DLine.java39 * entire set, and <code>{@link #getControl getControl}</code> returns a single control of
167 * Indicates whether the line supports a control of the specified type.
169 * @param control the type of the control for which support is queried
170 * @return <code>true</code> if at least one control of the specified type is
173 public boolean isControlSupported(Control.Type control); argument
177 * Obtains a control of the specified type,
180 * @param control the type of the requested control
181 * @return a control o
187 getControl(Control.Type control) argument
[all...]
/openjdk7/jdk/src/macosx/classes/apple/laf/
H A DJRSUIState.java77 public void apply(final JRSUIControl control) { argument
78 control.setEncodedState(encodedState);
126 public void apply(final JRSUIControl control) { argument
127 super.apply(control);
128 control.set(Key.ANIMATION_FRAME, animationFrame);
173 public void apply(final JRSUIControl control) { argument
174 super.apply(control);
175 control.set(Key.VALUE, value);
202 public void apply(final JRSUIControl control) { argument
203 super.apply(control);
246 apply(final JRSUIControl control) argument
[all...]
H A DJRSUIUtils.java99 public static void getPartBounds(final double[] rect, final JRSUIControl control, final double x, final double y, final double w, final double h, final ScrollBarPart part) { argument
100 control.getPartBounds(rect, x, y, w, h, part.ordinal);
103 public static double getNativeOffsetChange(final JRSUIControl control, final double x, final double y, final double w, final double h, final int offset, final int visibleAmount, final int extent) { argument
104 return control.getScrollBarOffsetChange(x, y, w, h, offset, visibleAmount, extent);
115 public static Hit getHitForPoint(final JRSUIControl control, final double x, final double y, final double w, final double h, final double hitX, final double hitY) { argument
116 return control.getHitForPoint(x, y, w, h, hitX, hitY);
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaPainter.java71 final JRSUIControl control; field in class:AquaPainter
73 AquaPainter(final JRSUIControl control, final T state) { argument
74 this.control = control;
79 control.set(state = state.derive());
80 return control;
112 AquaSingleImagePainter.paintFromSingleCachedImage(g, control, stateToPaint, boundsRect);
120 AquaSingleImagePainter.paintFromSingleCachedImage(g, control, stateToPaint, boundsRect);
123 slicesRef = new RecyclableJRSUISlicedImageControl(control, stateToPaint, metrics);
140 paintFromSingleCachedImage(g, control, stateToPain
143 paintFromSingleCachedImage(final Graphics2D g, final JRSUIControl control, final JRSUIState controlState, final Rectangle bounds) argument
178 private final JRSUIControl control; field in class:AquaPainter.RecyclableJRSUISlicedImageControl
181 RecyclableJRSUISlicedImageControl(final JRSUIControl control, final JRSUIState state, final NineSliceMetrics metrics) argument
[all...]
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_PrintDialog.cpp208 jobject control = env->GetObjectField(target, AwtPrintDialog::controlID); local
209 DASSERT(control != NULL);
218 BOOL ret = AwtPrintControl::InitPrintDialog(env, control, pd);
257 AwtPrintControl::UpdateAttributes(env, control, pd);
277 env->DeleteLocalRef(control);
/openjdk7/jdk/test/javax/sound/midi/Gervill/SoftAudioSynthesizer/
H A DDummySourceDataLine.java209 public Control getControl(Type control) { argument
210 throw new IllegalArgumentException("Unsupported control type : "
211 + control);
222 public boolean isControlSupported(Type control) { argument
/openjdk7/jdk/test/javax/sound/midi/Gervill/SoftSynthesizer/
H A DDummySourceDataLine.java209 public Control getControl(Type control) { argument
210 throw new IllegalArgumentException("Unsupported control type : "
211 + control);
222 public boolean isControlSupported(Type control) { argument
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/motif/
H A DMotifIconFactory.java96 private Color control = UIManager.getColor("control"); field in class:MotifIconFactory.CheckBoxIcon
147 g.setColor(control);
206 g.setColor(control);
H A DMotifBorders.java92 private Color control; field in class:MotifBorders.FocusBorder
94 public FocusBorder(Color control, Color focus) { argument
95 this.control = control;
104 g.setColor(control);
471 * resize control with a different size.
/openjdk7/jdk/src/share/classes/java/awt/
H A DSystemColor.java173 * {@link #control} system color.
174 * @see SystemColor#control
265 0xFFC0C0C0, // control = Color.lightGray;
337 * The color rendered for the background of text control objects, such as
343 * The color rendered for the text of text control objects, such as textfields
366 * The color rendered for the background of control panels and control objects,
369 public final static SystemColor control = new SystemColor((byte)CONTROL); field in class:SystemColor
372 * The color rendered for the text of control panels and control object
[all...]
/openjdk7/jdk/src/share/native/com/sun/media/sound/
H A DPortMixer.c147 /* ************************************** native control creation support ********************* */
158 // control specific constructors (initialized on demand)
252 TRACE0("PORT_NewCompoundControl: creating compound control\n");
320 int PORT_AddControl(void* creatorV, void* control) { argument
323 TRACE1("PORT_AddControl %p\n", (void*) control);
324 (*creator->env)->CallVoidMethod(creator->env, creator->vector, creator->vectorAddElement, (jobject) control);
/openjdk7/jdk/src/solaris/native/com/sun/media/sound/
H A DPLATFORM_API_BsdOS_ALSA_Ports.c249 TRACE2("Simple mixer control '%s',%i\n",
356 void* control; local
370 control = (creator->newFloatControl)(creator, portControl, CONTROL_TYPE_VOLUME, 0.0F, +1.0F, precision, "");
371 return control;
378 void* control; local
416 // single volume control
427 control = createVolumeControl(creator, portControl, elem, isPlayback);
428 if (control != NULL) {
429 controls[numControls++] = control;
432 } else { // more than two channels, each channels has its own control
[all...]
H A DPLATFORM_API_LinuxOS_ALSA_Ports.c249 TRACE2("Simple mixer control '%s',%i\n",
356 void* control; local
370 control = (creator->newFloatControl)(creator, portControl, CONTROL_TYPE_VOLUME, 0.0F, +1.0F, precision, "");
371 return control;
378 void* control; local
416 // single volume control
427 control = createVolumeControl(creator, portControl, elem, isPlayback);
428 if (control != NULL) {
429 controls[numControls++] = control;
432 } else { // more than two channels, each channels has its own control
[all...]
/openjdk7/jdk/src/share/classes/java/util/
H A DResourceBundle.java729 * default locale and the specified control. Calling this method
733 * this.getClass().getClassLoader(), control),
744 * @param control
745 * the control which gives information for the resource bundle
750 * if <code>baseName</code> or <code>control</code> is
755 * if the given <code>control</code> doesn't perform properly
756 * (e.g., <code>control.getCandidateLocales</code> returns null.)
757 * Note that validation of <code>control</code> is performed as
763 Control control) {
767 control);
762 getBundle(String baseName, Control control) argument
839 getBundle(String baseName, Locale targetLocale, Control control) argument
1241 getBundle(String baseName, Locale targetLocale, ClassLoader loader, Control control) argument
1249 getBundleImpl(String baseName, Locale locale, ClassLoader loader, Control control) argument
1345 findBundle(CacheKey cacheKey, List<Locale> candidateLocales, List<String> formats, int index, Control control, ResourceBundle baseBundle) argument
1422 loadBundle(CacheKey cacheKey, List<String> formats, Control control, boolean reload) argument
1516 findBundleInCache(CacheKey cacheKey, Control control) argument
1623 putBundleInCache(CacheKey cacheKey, ResourceBundle bundle, Control control) argument
1656 setExpirationTime(CacheKey cacheKey, Control control) argument
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A Dcfgnode.hpp102 // jump projection for node that produces multiple control-flow paths
116 // controlling RegionNode. Other slots map 1-for-1 with incoming control flow
170 assert(r != NULL && r->is_Region(), "Not valid control");
221 GotoNode( Node *control ) : Node(control) {}
235 // control projection for node that produces multiple control-flow paths
249 // control values. These are distinguished from other types of MultiNodes
250 // which yield multiple values, but control is always and only projection #0.
336 IfNode( Node *control, Nod argument
414 JumpNode( Node* control, Node* switch_val, uint size) argument
499 CreateExNode(const Type* t, Node* control, Node* i_o) argument
[all...]
/openjdk7/jdk/src/macosx/native/com/sun/media/sound/
H A DPLATFORM_API_MacOSX_Ports.cpp74 Balance // "virtual" control, manages 2 volume AudioControls (only for stereo lines)
166 break; // goto next control
412 // returns java control
416 PortControl *control = (PortControl *)calloc(1, sizeof(PortControl)); local
419 control->type = type;
420 control->controlCount = len;
421 control->audioControls = (AudioControl **)malloc(len * sizeof(AudioControl *));
422 memcpy(control->audioControls, audioControls + offset, len * sizeof(AudioControl *));
424 switch (control->type) {
426 jControl = creator->newFloatControl(creator, control, CONTROL_TYPE_VOLUM
487 AudioControl *control = &mixer->deviceControls[i]; local
523 AudioControl *control = &mixer->deviceControls[i]; local
648 TestPortControlValidity(PortControl *control) argument
660 PortControl *control = (PortControl *)controlIDV; local
694 PortControl *control = (PortControl *)controlIDV; local
720 GetPortControlVolumes(PortControl *control, Float32 *volumes, Float32 *maxVolume) argument
739 SetPortControlVolumes(PortControl *control, Float32 *volumes) argument
756 PortControl *control = (PortControl *)controlIDV; local
802 PortControl *control = (PortControl *)controlIDV; local
[all...]

Completed in 160 milliseconds

12