/external/valgrind/main/VEX/test/ |
fxsave.c | 87 void show ( unsigned char* buf, int xx ) function 118 show(buf1, xx); 120 /* Zeroise x87/xmm state and dump it, to show that the 125 show(buf2, xx); 131 show(buf3, xx);
|
/external/valgrind/main/memcheck/tests/x86/ |
fxsave.c | 88 void show ( unsigned char* buf, int xx ) function 119 show(buf1, xx); 121 /* Zeroise x87/xmm state and dump it, to show that the 126 show(buf2, xx); 132 show(buf3, xx);
|
/frameworks/base/core/tests/coretests/src/android/widget/listview/ |
ListViewHeight.java | 57 // Clicking this button will show the list view and set it to a fixed height 68 // and show it 73 // Clicking this button will show the list view and set it match_parent height 84 // and show it 93 // In the search manager, it's sufficient to simply show/hide the outer search manager
|
/packages/apps/Settings/src/com/android/settings/bluetooth/ |
Utils.java | 57 // Create (or recycle existing) and show disconnect dialog. 78 dialog.show(); 82 // TODO: wire this up to show connection errors... 101 .show(); 103 Toast.makeText(context, message, Toast.LENGTH_SHORT).show();
|
/packages/apps/Settings/src/com/android/settings/notification/ |
RedactionInterstitial.java | 84 final boolean show = Settings.Secure.getInt(getContentResolver(), 86 mShowAllButton.setChecked(enabled && show); 87 mRedactSensitiveButton.setChecked(enabled && !show); 93 final boolean show = (v == mShowAllButton); 97 Settings.Secure.LOCK_SCREEN_ALLOW_PRIVATE_NOTIFICATIONS, show ? 1 : 0);
|
/packages/apps/UnifiedEmail/src/com/android/mail/ |
MinTimeProgressDialog.java | 56 MinTimeProgressDialog.super.show(); 101 public void show() { method in class:MinTimeProgressDialog 113 * Show a MinTimeProgressDialog. 115 public static MinTimeProgressDialog show(Context context, CharSequence title, method in class:MinTimeProgressDialog 126 dialog.show();
|
/external/chromium_org/ash/wm/ |
window_animations_unittest.cc | 69 window->Show(); 101 // Layer target visibility changes according to Show/Hide. 102 window->Show(); 106 window->Show(); 118 window->Show(); 177 window->Show(); 194 window->Show(); 216 window->Show(); 228 window->Show(); 241 window->Show(); [all...] |
window_cycle_list.cc | 37 // Show |window| at the top of the stacking order. 38 void Show(aura::Window* window); 83 void ScopedShowWindow::Show(aura::Window* window) { 89 window_->Show(); 136 // window is minimized, we should also show it. 139 windows_[0]->Show(); 155 showing_window_->Show(windows_[current_index_]);
|
/external/chromium_org/chrome/browser/ui/toolbar/ |
back_forward_menu_model.h | 55 // Returns how many items the menu should show, including history items, 56 // chapter-stops, separators and the Show Full History link. This function 58 // out the total number of items to show. 112 // Returns how many history items the menu should show. For example, if the 120 // the "Show Full History" link). 123 // Returns how many chapter-stop items the menu should show. For the 157 // How many items (max) to show in the back/forward history menu dropdown. 160 // How many chapter-stops (max) to show in the back/forward dropdown list. 166 // "Show Full History" link in which case this function returns -1. 175 // Allow the unit test to use the "Show Full History" label [all...] |
/external/chromium_org/chrome/common/extensions/api/ |
content_settings.json | 186 "description": "Whether to show images. One of<br><var>allow</var>: Show images,<br><var>block</var>: Don't show images. <br>Default is <var>allow</var>.<br>The primary URL is the main-frame URL. The secondary URL is the URL of the image.", 210 "description": "Whether to allow sites to show pop-ups. One of<br><var>allow</var>: Allow sites to show pop-ups,<br><var>block</var>: Don't allow sites to show pop-ups. <br>Default is <var>block</var>.<br>The primary URL is the main-frame URL. The secondary URL is not used.", 218 "description": "Whether to allow sites to show desktop notifications. One of<br><var>allow</var>: Allow sites to show desktop notifications,<br><var>block</var>: Don't allow sites to show desktop notifications,<br><var>ask</var>: Ask when a site wants to show desktop notifications. <br>Default is <var>ask</var>.<br>The primary URL is the main-frame URL. Th (…) [all...] |
/external/chromium_org/tools/json_schema_compiler/test/ |
content_settings.json | 182 "description": "Whether to show images. One of<br><var>allow</var>: Show images,<br><var>block</var>: Don't show images. <br>Default is <var>allow</var>.<br>The primary URL is the main-frame URL. The secondary URL is the URL of the image.", 206 "description": "Whether to allow sites to show pop-ups. One of<br><var>allow</var>: Allow sites to show pop-ups,<br><var>block</var>: Don't allow sites to show pop-ups. <br>Default is <var>block</var>.<br>The primary URL is the main-frame URL. The secondary URL is not used.", 214 "description": "Whether to allow sites to show desktop notifications. One of<br><var>allow</var>: Allow sites to show desktop notifications,<br><var>block</var>: Don't allow sites to show desktop notifications,<br><var>ask</var>: Ask when a site wants to show desktop notifications. <br>Default is <var>ask</var>.<br>The primary URL is the main-frame URL. Th (…) [all...] |
/external/llvm/utils/lit/tests/ |
discovery.py | 4 # RUN: -j 1 --debug --show-tests --show-suites \ 34 # RUN: -j 1 --show-tests --show-suites -v > %t.out 45 # RUN: -j 1 --debug --show-tests --show-suites \ 78 # RUN: -j 1 --show-tests --show-suites -v > %t.out 90 # RUN: -j 1 --show-tests --show-suites -v > %t.ou [all...] |
/packages/apps/InCallUI/src/com/android/incallui/ |
CallButtonFragment.java | 185 mOverflowPopup.show(); 225 public void showAudioButton(boolean show) { 226 mAudioButton.setVisibility(show ? View.VISIBLE : View.GONE); 230 public void showChangeToVoiceButton(boolean show) { 231 mChangeToVoiceButton.setVisibility(show ? View.VISIBLE : View.GONE); 240 public void showDialpadButton(boolean show) { 241 mShowDialpadButton.setVisibility(show ? View.VISIBLE : View.GONE); 255 public void showHoldButton(boolean show) { 256 mHoldButton.setVisibility(show ? View.VISIBLE : View.GONE); 265 public void showSwapButton(boolean show) { [all...] |
/external/chromium_org/chrome/browser/resources/chromeos/login/ |
screen_gaia_signin.js | 73 * Whether we should show user pods on the login screen. 137 * @param {boolean} show True to show loading UI. 140 showLoadingUI_: function(show) { 141 $('gaia-loading').hidden = !show; 142 this.gaiaAuthHost_.frame.hidden = show; 143 $('signin-right').hidden = show; 144 $('enterprise-info-container').hidden = show; 145 $('gaia-signin-divider').hidden = show; 385 // Show deferred error bubble [all...] |
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/ |
QSPanel.java | 213 public void showDetailAdapter(boolean show, DetailAdapter adapter) { 216 showDetail(show, r); 219 private void showDetail(boolean show, Record r) { 220 mHandler.obtainMessage(H.SHOW_DETAIL, show ? 1 : 0, 0, r).sendToTarget(); 256 // We don't want to show it if the content is hidden, 264 public void onShowDetail(boolean show) { 265 QSPanel.this.showDetail(show, r); 316 private void handleShowDetail(Record r, boolean show) { 318 handleShowDetailTile((TileRecord) r, show); 320 handleShowDetailImpl(r, show, getWidth() /* x */, 0/* y */) [all...] |
/cts/tests/tests/widget/src/android/widget/cts/ |
ToastTest.java | 96 // sleep a while and then make sure do not show toast 136 mToast.show(); 141 // view will be attached to screen when show it 152 toast.show(); 168 mToast.show(); 188 mToast.show(); 201 mToast.show(); 215 mToast.show(); 238 mToast.show(); 260 mToast.show(); [all...] |
/development/samples/HoneycombGallery/src/com/example/android/hcgallery/ |
ContentFragment.java | 101 // Show/hide the system status bar when single-clicking a photo. 199 * @param show True to show the system UI, false to hide it. 201 void setSystemUiVisible(boolean show) { 202 mSystemUiVisible = show; 209 if (show) { 210 // Show status bar (remove fullscreen flag) 212 // Show system bar 214 // Show action bar 215 actionBar.show(); 304 Toast.LENGTH_SHORT).show(); method 332 Toast.LENGTH_SHORT).show(); method 339 Toast.LENGTH_SHORT).show(); method [all...] |
/cts/tests/uiautomator/test-apps/CtsUiAutomatorApp/src/com/android/cts/uiautomator/ |
Test2DetailFragment.java | 55 diag.show(); 76 diag.show(); 88 diag.show(); 101 diag.show(); 113 diag.show(); 126 diag.show(); 138 diag.show();
|
/developers/build/prebuilts/androidtv/visual-game-controller/src/com/example/android/visualgamecontroller/util/ |
SystemUiHider.java | 58 * When this flag is set, {@link #show()} and {@link #hide()} will toggle 59 * the visibility of the status bar. If there is a navigation bar, show and 65 * When this flag is set, {@link #show()} and {@link #hide()} will toggle 68 * but cannot be hidden, show and hide will toggle low profile mode. 141 * Show the system UI. 143 public abstract void show(); method in class:SystemUiHider 152 show(); method
|
/developers/build/prebuilts/gradle/BatchStepSensor/Application/src/main/java/com/example/android/batchstepsensor/cardstream/ |
CardStreamFragment.java | 82 * Add and show a card. 85 * @param show 87 public void addCard(Card card, boolean show) { 89 if (show) { 116 * Show a dismissible card, returns false if the card could not be shown. 126 * Show a card, returns false if the card could not be shown. 207 * Moves the view port to show the card with this tag.
|
/developers/build/templates/CardStream/_MODULE_/src/template/java/_PACKAGE_/cardstream/ |
CardStreamFragment.java.ftl | 83 * Add and show a card. 86 * @param show 88 public void addCard(Card card, boolean show) { 90 if (show) { 117 * Show a dismissible card, returns false if the card could not be shown. 127 * Show a card, returns false if the card could not be shown. 208 * Moves the view port to show the card with this tag.
|
/development/samples/browseable/BatchStepSensor/src/com.example.android.batchstepsensor/cardstream/ |
CardStreamFragment.java | 85 * Add and show a card. 88 * @param show 90 public void addCard(Card card, boolean show) { 92 if (show) { 119 * Show a dismissible card, returns false if the card could not be shown. 129 * Show a card, returns false if the card could not be shown. 210 * Moves the view port to show the card with this tag.
|
/external/chromium_org/third_party/libjingle/source/talk/xmpp/ |
presencereceivetask.cc | 116 const XmlElement * show = stanza->FirstNamed(QN_SHOW); local 117 if (show == NULL || show->FirstChild() == NULL) { 119 } else if (show->BodyText() == "away") { 121 } else if (show->BodyText() == "xa") { 123 } else if (show->BodyText() == "dnd") { 125 } else if (show->BodyText() == "chat") {
|
/external/chromium_org/third_party/sqlite/src/tool/ |
shell4.test | 56 set res [catchcmd "test.db" ".show"] 61 set res [catchcmd "test.db" ".show"] 67 set res [catchcmd "-stats test.db" ".show"] 72 set res [catchcmd "-stats test.db" ".show"] 93 set res [catchcmd "test.db" {.show}] 99 .show 106 .show
|
/external/chromium_org/ui/webui/resources/js/cr/ui/table/ |
table_list.js | 81 // If the list is empty set height to 1 to show horizontal 131 * @param {boolean} show True to show. 134 showVerticalScrollBar_: function(show) { 136 if (show && style.overflowY == 'scroll') 138 if (!show && style.overflowY == 'hidden') 140 style.overflowY = show ? 'scroll' : 'hidden';
|