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

1 2 3

  /external/smack/src/org/jivesoftware/smackx/
ChatState.java 49 gone enum constant in enum:ChatState
  /external/chromium_org/content/test/data/service_worker/
fetch_event.js 9 var blob = new Blob(["This resource is gone. Gone, gone, gone."]);
  /external/apache-http/src/org/apache/http/conn/scheme/
SchemeRegistry.java 158 Scheme gone = registeredSchemes.remove(name); local
159 return gone;
  /ndk/tests/device/static-executable/jni/
Android.mk 15 # in the previous *S file to iterate all eh frames and record ranges is gone
  /development/samples/ApiDemos/src/com/example/android/apis/view/
Visibility1.java 31 * Demonstrates making a view VISIBLE, INVISIBLE and GONE
49 Button goneButton = (Button) findViewById(R.id.gone);
71 mVictim.setVisibility(View.GONE);
  /frameworks/base/core/tests/coretests/src/android/view/
Visibility.java 27 * Exercise View's ability to change their visibility: GONE, INVISIBLE and
42 Button goneButton = (Button) findViewById(R.id.gone);
65 mVictim.setVisibility(View.GONE);
VisibilityCallback.java 31 * Exercise View's ability to change their visibility: GONE, INVISIBLE and
50 Button goneButton = (Button) findViewById(R.id.gone);
73 mVictim.setVisibility(View.GONE);
VisibilityCallbackTest.java 30 * GONE, VISIBLE and INVISIBLE.
56 mGone = (Button) a.findViewById(R.id.gone);
92 mVictim.setVisibility(View.GONE);
93 assertEquals(View.GONE, mVictim.getLastChangedVisibility());
104 mParent.setVisibility(View.GONE);
105 assertEquals(View.GONE, mVictim.getLastChangedVisibility());
VisibilityTest.java 32 * GONE, VISIBLE and INVISIBLE.
56 mGone = (Button) a.findViewById(R.id.gone);
94 assertEquals(View.GONE, mVictim.getVisibility());
108 assertEquals(View.GONE, mVictim.getVisibility());
128 assertEquals(View.GONE, mVictim.getVisibility());
174 assertEquals(View.GONE, mVictim.getVisibility());
  /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
  /system/core/logd/
LogStatistics.cpp 57 if (pid == gone) {
86 if (pid == gone) {
95 if (pid != gone) {
143 // insert if the gone entry.
144 bool insert = (last != it) && (p->getPid() == p->gone);
170 p = new PidStatistics(p->gone);
174 if (p->getPid() != p->gone) {
175 p = new PidStatistics(p->gone);
195 if ((n->getPid() != n->gone) && (n->sizes() > l->sizes())) {
608 if (p->getPid() == p->gone) {
841 bool gone = pp->pidGone(); local
    [all...]
LogStatistics.h 43 static const pid_t gone = (pid_t) -1; member in class:PidStatistics
55 bool subtract(unsigned short size); // returns true if stats and PID gone
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
StackScrollState.java 68 viewState.gone = child.getVisibility() == View.GONE;
96 if (!state.gone) {
221 if (child.getVisibility() != View.GONE) {
244 boolean gone;
264 * The index of the view, only accounting for views not equal to GONE
  /external/chromium_org/v8/test/mjsunit/
delete.js 45 assertTrue(typeof x === 'undefined', "x is gone");
172 assertTrue(typeof load_a(x) === 'undefined', "x.a is gone");
173 assertTrue(typeof load_a(x) === 'undefined', "x.a is gone");
  /cts/tests/tests/content/src/android/content/cts/
ContentResolverTest.java 133 // First, we need to make sure our provider process is gone. Goodbye!
143 // Now make sure the thing is actually gone.
144 boolean gone = true;
147 gone = false;
150 if (!gone) {
151 fail("Content provider process is not gone!");
195 // Make sure the remote client is actually gone.
196 boolean gone = true;
199 gone = false;
202 if (!gone) {
    [all...]
  /external/smack/src/org/jivesoftware/smack/packet/
XMPPError.java 38 * <tr><td>302</td><td>gone</td><td>MODIFY</td></tr>
321 public static final Condition gone = new Condition("gone"); field in class:XMPPError.Condition
382 instances.put(Condition.gone, new XMPPError.ErrorSpecification(
383 Condition.gone, Type.MODIFY, 302));
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
SurfaceViewOverlay.java 58 Button goneButton = (Button) findViewById(R.id.gone);
111 mVictim1.setVisibility(View.GONE);
112 mVictim2.setVisibility(View.GONE);
113 mVictimContainer.setVisibility(View.GONE);
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/app/
HeadersFragment.java 141 getView().setVisibility(mHeadersGone ? View.GONE : View.VISIBLE);
157 void setHeadersGone(boolean gone) {
158 mHeadersGone = gone;
  /external/chromium_org/v8/src/
d8-posix.cc 89 int gone = 0; local
94 gone = seconds * 1000 + (time_now.tv_usec - start_time.tv_usec) / 1000;
95 if (gone >= total_timeout) return false;
103 (total_timeout != -1 && total_timeout - gone < read_timeout)) {
104 read_timeout = total_timeout - gone;
  /hardware/ti/omap4-aah/
heaptracker.c 340 struct hdr *gone = backlog_first; local
341 __del_from_backlog(gone);
342 __real_free(gone);
  /hardware/ti/omap4xxx/
heaptracker.c 340 struct hdr *gone = backlog_first; local
341 __del_from_backlog(gone);
342 __real_free(gone);
  /external/chromium_org/chrome/browser/resources/cryptotoken/
llgnubby.js 57 /** Device is gone */
58 llGnubby.GONE = 8;
  /bionic/libc/bionic/
malloc_debug_check.cpp 332 hdr_t* gone = backlog_tail; local
333 del_from_backlog_locked(gone);
334 g_malloc_dispatch->free(gone->base);
  /frameworks/testing/espresso/espresso-lib-tests/src/androidTest/java/com/google/android/apps/common/testing/ui/espresso/matcher/
ViewMatchersTest.java 319 View gone = new View(getInstrumentation().getTargetContext()); local
320 gone.setVisibility(View.GONE);
323 assertFalse(withEffectiveVisibility(Visibility.GONE).matches(visible));
324 assertTrue(withEffectiveVisibility(Visibility.GONE).matches(gone));
326 // Make the gone view gone by giving it a gone parent.
329 parent.setVisibility(View.GONE);
    [all...]

Completed in 945 milliseconds

1 2 3