Searched refs:toggle (Results 1 - 12 of 12) sorted by relevance

/frameworks/base/core/java/android/widget/
H A DCheckable.java41 void toggle(); method in interface:Checkable
H A DRadioButton.java68 * If the radio button is already checked, this method will not toggle the radio button.
71 public void toggle() { method in class:RadioButton
72 // we override to prevent toggle when the radio is already
75 super.toggle();
H A DToggleButton.java140 layerDrawable.findDrawableByLayerId(com.android.internal.R.id.toggle);
H A DCompoundButton.java86 public void toggle() { method in class:CompoundButton
98 /* When clicked, toggle the state */
99 toggle();
H A DCheckedTextView.java76 public void toggle() { method in class:CheckedTextView
H A DSlidingDrawer.java712 public void toggle() { method in class:SlidingDrawer
729 * @see #toggle()
742 * @see #toggle()
757 * @see #toggle()
774 * @see #toggle()
796 * @see #toggle()
941 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/base/media/jni/soundpool/
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);
626 // From now on, AudioTrack callbacks recevieved with previous toggle value will be ignored.
627 mToggle = toggle;
691 void SoundChannel::process(int event, void *info, unsigned long toggle) argument
702 if (mToggle != toggle) {
703 LOGV("process wrong toggle %p channel %d", this, mChannelID);
H A DSoundPool.h145 void process(int event, void *info, unsigned long toggle);
/frameworks/base/core/java/android/hardware/
H A DCamera.java2853 * @param toggle new state of the auto-exposure lock. True means that
2859 public void setAutoExposureLock(boolean toggle) { argument
2860 set(KEY_AUTO_EXPOSURE_LOCK, toggle ? TRUE : FALSE);
2922 * @param toggle new state of the auto-white balance lock. True means
2929 public void setAutoWhiteBalanceLock(boolean toggle) { argument
2930 set(KEY_AUTO_WHITEBALANCE_LOCK, toggle ? TRUE : FALSE);
3290 * @param toggle Set to true to enable video stabilization, and false to
3295 public void setVideoStabilization(boolean toggle) { argument
3296 set(KEY_VIDEO_STABILIZATION, toggle ? TRUE : FALSE);
/frameworks/ex/carousel/java/com/android/ex/carousel/
H A Dcarousel.rs1008 static bool toggle;
1027 rsgClearColor(toggle ? backgroundColor.x : 1.0f,
1028 toggle ? backgroundColor.y : 0.0f,
1029 toggle ? backgroundColor.z : 0.0f,
1031 toggle = !toggle;
/frameworks/base/services/surfaceflinger/
H A DSurfaceFlinger.cpp1012 static int toggle = 0;
1013 toggle = 1 - toggle;
1014 if (toggle) {
1704 case 1008: // toggle use of hw composer
1710 case 1009: // toggle use of transform hint

Completed in 1962 milliseconds