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.java718 public void toggle() { method in class:SlidingDrawer
735 * @see #toggle()
748 * @see #toggle()
763 * @see #toggle()
780 * @see #toggle()
802 * @see #toggle()
959 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/settings/
H A DToggleSlider.java64 mToggle = (CompoundButton)findViewById(R.id.toggle);
85 public void onCheckedChanged(CompoundButton toggle, boolean checked) { argument
/frameworks/av/media/libmedia/
H A DSoundPool.cpp597 // The toggle is concatenated with the SoundChannel address and passed to AudioTrack
601 unsigned long toggle = mToggle ^ 1; local
602 void *userData = (void *)((unsigned long)this | toggle);
625 // From now on, AudioTrack callbacks received with previous toggle value will be ignored.
626 mToggle = toggle;
688 void SoundChannel::process(int event, void *info, unsigned long toggle) argument
699 if (mToggle != toggle) {
700 ALOGV("process wrong toggle %p channel %d", this, mChannelID);
/frameworks/base/core/java/android/hardware/
H A DCamera.java3266 * @param toggle new state of the auto-exposure lock. True means that
3272 public void setAutoExposureLock(boolean toggle) { argument
3273 set(KEY_AUTO_EXPOSURE_LOCK, toggle ? TRUE : FALSE);
3335 * @param toggle new state of the auto-white balance lock. True means
3342 public void setAutoWhiteBalanceLock(boolean toggle) { argument
3343 set(KEY_AUTO_WHITEBALANCE_LOCK, toggle ? TRUE : FALSE);
3707 * @param toggle Set to true to enable video stabilization, and false to
3712 public void setVideoStabilization(boolean toggle) { argument
3713 set(KEY_VIDEO_STABILIZATION, toggle ? TRUE : FALSE);

Completed in 194 milliseconds