/external/webkit/WebKitTools/Scripts/ |
build-webkit | 62 { option => "3d-canvas", desc => "Toggle 3D canvas support", 65 { option => "3d-rendering", desc => "Toggle 3D rendering support", 68 { option => "channel-messaging", desc => "Toggle MessageChannel and MessagePort support", 71 { option => "client-based-geolocation", desc => "Toggle client-based Geolocation support", 74 { option => "coverage", desc => "Toggle code coverage support", 77 { option => "database", desc => "Toggle Database Support", 80 { option => "datagrid", desc => "Toggle Datagrid Support", 83 { option => "datalist", desc => "Toggle HTML5 datalist support", 86 { option => "dom-storage", desc => "Toggle DOM Storage Support", 89 { option => "eventsource", desc => "Toggle server-sent events support" [all...] |
/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 )
|
/frameworks/base/core/java/android/widget/ |
RadioButton.java | 62 * If the radio button is already checked, this method will not toggle the radio button. 65 public void toggle() { method in class:RadioButton 66 // we override to prevent toggle when the radio is already 69 super.toggle();
|
Checkable.java | 41 void toggle(); method in interface:Checkable
|
/build/tools/droiddoc/templates-pdk/assets/ |
android-developer-docs.js | 170 toggle(link.parent().parent().parent(), false); 171 } else if (link.parent().parent().hasClass('toggle-list')) { 172 toggle(link.parent().parent(), false); 268 function toggle(obj, slide) { 279 $(".toggle-img", li).attr("title", "hide pages"); 284 $(".toggle-img", li).attr("title", "show pages"); 289 $(".toggle-list").each( 291 $("div", this).append("<a class='toggle-img' href='#' title='show pages' onClick='toggle(this.parentNode.parentNode, true); return false;'></a>"); 307 $("#nav-panels").toggle(); [all...] |
/development/pdk/docs/porting/ |
porting_toc.cs | 11 <li class="toggle-list"> 32 <li class="toggle-list"> 42 <li class="toggle-list"> 49 <li class="toggle-list"> 59 <li class="toggle-list">
|
/cts/tests/tests/widget/src/android/widget/cts/ |
RadioButtonTest.java | 102 notes = "Test {@link RadioButton#toggle()}", 103 method = "toggle", 110 button.toggle(); 114 button.toggle();
|
/external/qemu/android/skin/ |
keyset.h | 38 _SKIN_KEY_COMMAND(TOGGLE_NETWORK,"toggle cell network on/off") \ 39 _SKIN_KEY_COMMAND(TOGGLE_TRACING,"toggle code profiling") \ 40 _SKIN_KEY_COMMAND(TOGGLE_FULLSCREEN,"toggle fullscreen mode") \ 41 _SKIN_KEY_COMMAND(TOGGLE_TRACKBALL,"toggle trackball mode") \
|
/frameworks/base/core/java/android/app/ |
IStatusBar.aidl | 24 void toggle();
|
StatusBarManager.java | 108 * Toggle the status bar. 110 public void toggle() { method in class:StatusBarManager 112 mService.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;
|
/build/tools/droiddoc/templates/assets/ |
android-developer-reference.js | 2 /* API LEVEL TOGGLE */ 15 $("#api-level-toggle label").removeClass("disabled"); 19 $("#api-level-toggle label").addClass("disabled"); 35 $("#api-level-toggle label").removeClass("disabled"); 155 // toggle shut on the first try. --joeo@android.com 298 /* TOGGLE INHERITED MEMBERS */ 300 /* Toggle an inherited class (arrow toggle) 303 * 'null' to simply toggle. 327 /* Toggle all inherited classes in a single table (e.g. all inherited methods [all...] |
android-developer-docs.js | 200 // if we're in a toggleable root link (<li class=toggle-list><div><a>) 201 if (link.parent().parent().hasClass('toggle-list')) { 202 toggle(link.parent().parent(), false); // open our own list 205 toggle(link.parent().parent().parent().parent(), false); // open the super parent list 210 toggle(link.parent().parent().parent(), false); // open the parent list 213 toggle(link.parent().parent().parent().parent().parent(), false); // open the super parent list 351 function toggle(obj, slide) { function 362 $(".toggle-img", li).attr("title", "hide pages"); 367 $(".toggle-img", li).attr("title", "show pages"); 372 $(".toggle-list").each [all...] |
android-developer-docs.css | 127 #side-nav .toggle-list .toggle-img { 137 /* second-level toggle */ 138 #side-nav .toggle-list .toggle-list .toggle-img { 142 #side-nav .closed .toggle-img, 143 #side-nav .open .closed .toggle-img { 146 #side-nav .open .toggle-img { 150 #side-nav .toggle-list [all...] |
/packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/ |
SoftKeyToggle.java | 31 * normal state is enabled; if the current state is more than 0, a toggle 32 * state in the toggle state chain will be enabled. 43 // If resetIfNotFound is true and there is no such toggle state with the 69 // If resetIfNotFound is true and there is no such toggle state with the 86 // Clear any toggle state. If the key needs re-draw, return true.
|
/packages/apps/Phone/res/drawable/ |
incall_toggle_button.xml | 17 <!-- StateListDrawable used for toggle buttons in the in-call onscreen touch UI. --> 24 background and the "toggle" indicator can be separate drawables. 26 focused/enabled/pressed state, and only the toggle indicator
|
/development/samples/ApiDemos/src/com/example/android/apis/app/ |
AdvancedPreferences.java | 48 // Force toggle again in a second 69 // Start the force toggle
|
PreferencesFromCode.java | 50 // Toggle preference 102 // Example of next screen toggle preference 122 // Visual parent toggle preference 128 // Visual child toggle preference
|
/development/samples/ApiDemos/res/layout/ |
progressbar_4.xml | 22 <Button android:id="@+id/toggle"
|
/development/samples/ApiDemos/src/com/example/android/apis/view/ |
ProgressBar4.java | 43 Button button = (Button) findViewById(R.id.toggle);
|
TableLayout9.java | 38 Button button = (Button) findViewById(R.id.toggle);
|
/external/bluetooth/glib/tests/gobject/ |
references.c | 29 /* This test tests weak and toggle references 211 /* Test basic toggle reference operation 239 /* Test two toggle references at once 268 /* Test a toggle reference that removes itself
|
/frameworks/base/core/res/res/drawable/ |
btn_keyboard_key.xml | 19 <!-- Toggle keys. Use checkable/checked state. -->
|
btn_keyboard_key_fulltrans.xml | 19 <!-- Toggle keys. Use checkable/checked state. -->
|