Searched defs:toggle (Results 1 - 9 of 9) sorted by relevance

/frameworks/base/core/java/android/widget/
H A DCheckable.java41 void toggle(); method in interface:Checkable
H A DRadioButton.java69 * If the radio button is already checked, this method will not toggle the radio button.
72 public void toggle() { method in class:RadioButton
73 // we override to prevent toggle when the radio is already
76 super.toggle();
H A DCheckedTextView.java78 public void toggle() { method in class:CheckedTextView
H A DCompoundButton.java86 public void toggle() { method in class:CompoundButton
98 /* When clicked, toggle the state */
99 toggle();
H A DSlidingDrawer.java713 public void toggle() { method in class:SlidingDrawer
730 * @see #toggle()
743 * @see #toggle()
758 * @see #toggle()
775 * @see #toggle()
797 * @see #toggle()
954 toggle();
/frameworks/base/core/java/com/android/internal/view/
H A DCheckableLinearLayout.java62 public void toggle() { method in class:CheckableLinearLayout
63 mCheckBox.toggle();
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DToggleSlider.java65 mToggle = (CompoundButton)findViewById(R.id.toggle);
78 public void onCheckedChanged(CompoundButton toggle, boolean checked) { argument
/frameworks/av/media/libmedia/
H A DSoundPool.cpp599 // The toggle is concatenated with the SoundChannel address and passed to AudioTrack
603 unsigned long toggle = mToggle ^ 1; local
604 void *userData = (void *)((unsigned long)this | toggle);
627 // From now on, AudioTrack callbacks received with previous toggle value will be ignored.
628 mToggle = toggle;
692 void SoundChannel::process(int event, void *info, unsigned long toggle) argument
703 if (mToggle != toggle) {
704 ALOGV("process wrong toggle %p channel %d", this, mChannelID);
/frameworks/base/core/java/android/hardware/
H A DCamera.java3014 * @param toggle new state of the auto-exposure lock. True means that
3020 public void setAutoExposureLock(boolean toggle) { argument
3021 set(KEY_AUTO_EXPOSURE_LOCK, toggle ? TRUE : FALSE);
3083 * @param toggle new state of the auto-white balance lock. True means
3090 public void setAutoWhiteBalanceLock(boolean toggle) { argument
3091 set(KEY_AUTO_WHITEBALANCE_LOCK, toggle ? TRUE : FALSE);
3451 * @param toggle Set to true to enable video stabilization, and false to
3456 public void setVideoStabilization(boolean toggle) { argument
3457 set(KEY_VIDEO_STABILIZATION, toggle ? TRUE : FALSE);

Completed in 229 milliseconds