HomeSort by relevance Sort by last modified time
    Searched defs:gone (Results 1 - 25 of 58) sorted by null

1 2 3

  /external/apache-http/src/org/apache/http/conn/scheme/
SchemeRegistry.java 163 Scheme gone = registeredSchemes.remove(name); local
164 return gone;
  /external/guice/core/test/com/google/inject/example/
ClientServiceWithDependencyInjection.java 81 private boolean gone = false; field in class:ClientServiceWithDependencyInjection.MockService
84 gone = true;
88 return gone;
ClientServiceWithFactories.java 77 private boolean gone = false; field in class:ClientServiceWithFactories.MockService
80 gone = true;
84 return gone;
ClientServiceWithGuice.java 74 private boolean gone = false; field in class:ClientServiceWithGuice.MockService
77 gone = true;
81 return gone;
ClientServiceWithGuiceDefaults.java 70 private boolean gone = false; field in class:ClientServiceWithGuiceDefaults.MockService
73 gone = true;
77 return gone;
  /packages/apps/TV/tests/func/src/com/android/tv/tests/ui/
ChannelBannerViewTest.java 53 Until.gone(Constants.CHANNEL_BANNER), mShowDurationMillis);
ProgramGuideTest.java 39 controller.assertWaitForCondition(Until.gone(Constants.PROGRAM_GUIDE));
TimeoutTest.java 53 Until.gone(Constants.MENU),
64 Until.gone(Constants.PROGRAM_GUIDE),
LiveChannelsAppTest.java 59 controller.assertWaitForCondition(Until.gone(byChannelSourcesSidePanel));
71 controller.assertWaitForCondition(Until.gone(byClosedCaptionSidePanel));
89 controller.assertWaitForCondition(Until.gone(byDisplayModeSidePanel));
112 controller.assertWaitForCondition(Until.gone(byMultiAudioSidePanel));
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
inspect_fodder2.py 21 def gone(): function
  /external/python/cpython2/Lib/test/
inspect_fodder2.py 21 def gone(): function
  /packages/apps/TV/tests/func/src/com/android/tv/tests/ui/sidepanel/
CustomizeChannelListFragmentTest.java 135 Until.gone(bySidePanel),
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
inspect_fodder2.py 21 def gone(): function
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
inspect_fodder2.py 21 def gone(): function
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
inspect_fodder2.py 21 def gone(): function
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
inspect_fodder2.py 21 def gone(): function
  /cts/tests/autofillservice/src/android/autofillservice/cts/
UiBot.java 151 mDevice.wait(Until.gone(DATASET_PICKER_SELECTOR), UI_DATASET_PICKER_TIMEOUT.ms());
377 boolean gone = mDevice.wait(Until.gone(By.res(mPackageName, id)), timeout.ms());
378 if (!gone) {
379 final String message = "Object with id '" + id + "' should be gone after "
    [all...]
  /cts/tests/tests/shortcutmanager/src/android/content/pm/cts/shortcutmanager/
ShortcutManagerThrottlingTest.java 124 ud.wait(Until.gone(By.text("CLEAR ALL")), UI_TIMEOUT);
153 ud.wait(Until.gone(By.text(INLINE_REPLY_REMOTE_INPUT_CAPTION)), UI_TIMEOUT);
  /external/python/cpython3/Lib/test/
inspect_fodder2.py 21 def gone(): function
  /platform_testing/libraries/launcher-helper/src/android/support/test/launcherhelper/
AospLauncherStrategy.java 72 mDevice.wait(Until.gone(getHotSeatSelector()), 2000);
117 mDevice.wait(Until.gone(getHotSeatSelector()), 2000);
AutoLauncherStrategy.java 91 mDevice.wait(Until.gone(button), APP_INIT_WAIT);
BaseLauncher3Strategy.java 95 mDevice.wait(Until.gone(getHotSeatSelector()), 2000);
  /packages/apps/TV/tests/func/src/com/android/tv/tests/ui/dvr/
DvrLibraryTest.java 86 controller.assertWaitForCondition(Until.gone(Constants.DVR_LIBRARY));
104 controller.assertWaitForCondition(Until.gone(Constants.DVR_LIBRARY));
117 controller.assertWaitForCondition(Until.gone(Constants.DVR_LIBRARY));
167 Until.gone(
193 controller.assertWaitForCondition(Until.gone(Constants.DVR_LIBRARY));
210 controller.assertWaitForCondition(Until.gone(Constants.DVR_LIBRARY));
234 controller.assertWaitForCondition(Until.gone(Constants.DVR_LIBRARY));
251 Until.gone(
261 controller.assertWaitForCondition(Until.gone(Constants.DVR_LIBRARY));
287 controller.assertWaitForCondition(Until.gone(Constants.DVR_LIBRARY))
    [all...]
  /external/v8/src/
d8-posix.cc 85 int gone = 0; local
90 gone = static_cast<int>(seconds * 1000 +
92 if (gone >= total_timeout) return false;
100 (total_timeout != -1 && total_timeout - gone < read_timeout)) {
101 read_timeout = total_timeout - gone;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
ViewState.java 118 public boolean gone; field in class:ViewState
128 gone = viewState.gone;
139 gone = view.getVisibility() == View.GONE;
149 if (this.gone) {
221 // We don't want views to change visibility when they are animating to GONE
266 && !this.gone && !this.hidden) {
272 // We don't want views to change visibility when they are animating to GONE
599 if (hidden && !gone) {
    [all...]

Completed in 464 milliseconds

1 2 3