HomeSort by relevance Sort by last modified time
    Searched refs:toggle (Results 1 - 25 of 157) sorted by null

1 2 3 4 5 6 7

  /frameworks/base/core/java/android/widget/
Checkable.java 41 void toggle(); method in interface:Checkable
RadioButton.java 69 * 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();
  /external/chromium/chrome/common/extensions/docs/js/
sidebar.js 12 * For each node passed to this function, check to see if a toggle has been
13 * inserted into the node's parent. If yes, change the state of the toggle and
24 var toggle = list[i].parentNode &&
26 if (toggle && toggle.className.substring(0, 6) == 'toggle') {
27 var visible = toggle.className == 'toggle';
29 toggle.className = visible ? 'toggle selected' : 'toggle'
    [all...]
  /external/skia/src/effects/gradients/
SkLinearGradient.cpp 113 *dstC++ = cache[toggle + fi]; \
114 toggle = next_dither_toggle(toggle); \
121 int toggle, int count);
129 int toggle, int count) {
137 int index0 = fi + toggle;
152 int toggle, int count) {
158 cache[toggle + range.fV0],
159 cache[next_dither_toggle(toggle) + range.fV0],
180 cache[toggle + range.fV1]
223 int toggle = init_dither_toggle(x, y); local
225 int toggle = 0; local
408 int toggle = init_dither_toggle16(x, y); local
    [all...]
SkRadialGradient.cpp 60 int toggle, int count);
65 int toggle, int count) {
89 *dstC++ = cache[toggle +
91 toggle = next_dither_toggle16(toggle);
101 *dstC++ = cache[toggle +
103 toggle = next_dither_toggle16(toggle);
111 int toggle, int count) {
125 *dstC++ = cache[toggle + (fi >> SkGradientShaderBase::kCache16Shift)]
178 int toggle = init_dither_toggle16(x, y); local
429 int toggle = init_dither_toggle(x, y); local
431 int toggle = 0; local
    [all...]
  /external/webkit/Tools/QtTestBrowser/
launcherwindow.h 178 void toggleAcceleratedCompositing(bool toggle);
179 void toggleTiledBackingStore(bool toggle);
180 void toggleResizesToContents(bool toggle);
181 void toggleWebGL(bool toggle);
184 void toggleFrameFlattening(bool toggle);
189 void toggleLocalStorage(bool toggle);
190 void toggleOfflineStorageDatabase(bool toggle);
191 void toggleOfflineWebApplicationCache(bool toggle);
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowCompoundButton.java 25 @Override public void toggle() { method in class:ShadowCompoundButton
31 toggle(); method
ShadowCheckedTextView.java 14 public void toggle() { method in class:ShadowCheckedTextView
  /frameworks/base/core/java/com/android/internal/view/
CheckableLinearLayout.java 62 public void toggle() { method in class:CheckableLinearLayout
63 mCheckBox.toggle();
  /external/freetype/src/base/
ftdebug.c 90 /* define array of trace toggle names */
139 /* available toggle names. */
162 /* read toggle name, followed by ':' */
175 const char* toggle = ft_trace_toggles[n]; local
180 if ( toggle[i] != q[i] )
184 if ( i == len && toggle[i] == 0 )
  /development/samples/ApiDemos/src/com/example/android/apis/view/
CheckableFrameLayout.java 45 public void toggle() { method in class:CheckableFrameLayout
ProgressBar4.java 43 Button button = (Button) findViewById(R.id.toggle);
  /development/samples/Support13Demos/src/com/example/android/supportv13/view/
CheckableFrameLayout.java 45 public void toggle() { method in class:CheckableFrameLayout
  /development/samples/Support4Demos/src/com/example/android/supportv4/view/
CheckableFrameLayout.java 45 public void toggle() { method in class:CheckableFrameLayout
  /external/webkit/Source/WebCore/html/
ClassList.h 52 virtual bool toggle(const AtomicString&, ExceptionCode&);
DOMTokenList.h 50 virtual bool toggle(const AtomicString&, ExceptionCode&) = 0;
DOMTokenList.idl 36 boolean toggle(in DOMString token) raises(DOMException);
  /packages/apps/Contacts/src/com/android/contacts/quickcontact/
CheckableImageView.java 49 public void toggle() { method in class:CheckableImageView
  /packages/apps/Music/src/com/android/music/
CheckableRelativeLayout.java 49 public void toggle() { method in class:CheckableRelativeLayout
  /external/skia/legacy/src/effects/
SkGradientShader.cpp 904 *dstC++ = cache[toggle + fi]; \
905 toggle ^= Gradient_Shader::kDitherStride32; \
912 int toggle, int count);
919 int toggle, int count) {
926 cache[toggle + fi],
927 cache[(toggle ^ Gradient_Shader::kDitherStride32) + fi],
937 int toggle, int count) {
    [all...]
  /hardware/samsung_slsi/exynos5/include/
ExynosCamera.h 13 ** distributed under the License is distributed toggle an "AS IS" BASIS,
403 bool setFaceDetectLock(bool toggle);
591 bool setAutoExposureLock(bool toggle);
594 bool setAutoWhiteBalanceLock(bool toggle);
677 bool setVideoStabilization(bool toggle);
876 bool setWDR(bool toggle);
881 bool setAntiShake(bool toggle);
886 bool setObjectTracking(bool toggle);
890 bool setObjectTrackingStart(bool toggle);
897 bool setSmartAuto(bool toggle);
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
RadioButtonTest.java 73 button.toggle();
77 button.toggle();
  /system/core/toolbox/
vmstat.c 75 int toggle, count; local
116 toggle = 0;
121 read_state(&s[1 - toggle]);
124 read_state(&s[toggle]);
130 print_line(&s[1 - toggle], &s[toggle]);
131 toggle = 1 - toggle;
iftop.c 230 unsigned int toggle = 0; local
261 get_interfaces(ifs[!toggle]);
268 nr = get_interfaces(ifs[toggle]);
273 count += print_interfaces(ifs[!toggle], ifs[toggle], nr);
274 toggle = !toggle;
  /developers/samples/android/ui/lists/CustomChoiceList/CustomChoiceList/src/main/java/com/example/android/customchoicelist/
CheckableLinearLayout.java 54 public void toggle() { method in class:CheckableLinearLayout

Completed in 699 milliseconds

1 2 3 4 5 6 7