HomeSort by relevance Sort by last modified time
    Searched full:triggered (Results 1 - 25 of 1565) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/testng/src/test/java/test/annotationtransformer/
MySuiteListener.java 8 public static boolean triggered = false; field in class:MySuiteListener
12 triggered = true;
MySuiteListener2.java 8 public static boolean triggered = false; field in class:MySuiteListener2
12 triggered = true;
AnnotationTransformerTest.java 126 MySuiteListener.triggered = false;
127 MySuiteListener2.triggered = false;
145 Assert.assertTrue(MySuiteListener.triggered);
146 Assert.assertFalse(MySuiteListener2.triggered);
151 MySuiteListener.triggered = false;
152 MySuiteListener2.triggered = false;
159 Assert.assertFalse(MySuiteListener.triggered);
160 Assert.assertTrue(MySuiteListener2.triggered);
  /external/clang/test/Sema/
invalid-cast.cpp 3 // <rdar://problem/13153516> - This previously triggered an assertion failure.
  /external/replicaisland/src/com/replica/replicaisland/
InputTouchScreen.java 42 boolean triggered = false;
44 triggered = mTouchPoints[index].getTriggered(time);
46 return triggered;
108 boolean triggered = false;
109 for (int x = 0; x < MAX_TOUCH_POINTS && !triggered; x++) {
110 triggered = mTouchPoints[x].getTriggered(gameTime);
112 return triggered;
  /art/runtime/gc/
gc_cause.h 27 // GC triggered by a failed allocation. Thread doing allocation is blocked waiting for GC before
34 // GC triggered for a native allocation.
36 // GC triggered for a collector transition.
46 // GC triggered for background transition when both foreground and background collector are CMS.
  /external/autotest/client/site_tests/network_WlanRegulatory/
control 12 be triggered by the kernel using the "iw" command.
  /external/webrtc/talk/app/webrtc/objc/
RTCPeerConnectionObserver.h 44 // Triggered when the SignalingState changed.
48 // Triggered when media is received on a new stream from remote peer.
51 // Triggered when a remote peer close a stream.
54 // Triggered when a remote peer open a data channel.
57 // Triggered when renegotiation is needed, for example the ICE has restarted.
  /external/clang/test/CodeGenObjC/
protocols-lazy.m 11 // Definition triggered by protocol reference.
17 // Forward definition triggered by protocol reference.
23 // Definition triggered by class reference.
  /cts/apps/CameraITS/tests/inprog/
test_3a_remote.py 37 triggered = False
41 req['android.control.aePrecaptureTrigger'] = (0 if triggered else 1)
42 req['android.control.afTrigger'] = (0 if triggered else 1)
43 triggered = True
  /external/clang/test/CodeGen/
2002-02-13-ReloadProblem.c 3 /* This triggered a problem in reload, fixed by disabling most of the
  /external/clang/test/PCH/
pr18806.cpp 6 // Before the patch, this test triggered an assert violation in
  /external/testng/src/test/java/test/reports/
ReporterTest.java 16 Reporter.log ("bar"); // This line is required. Else the log that was triggered from onStart() would never be
  /external/v8/test/mjsunit/regress/
regress-crbug-349853.js 13 // The failing ASSERT was only triggered when compiling for OSR.
regress-crbug-500497.js 21 // The bad situation is only triggered if Ctor wasn't optimized too early.
31 // triggered when it is allocation #3 that triggers GC.
  /external/webrtc/talk/app/webrtc/objc/public/
RTCPeerConnectionDelegate.h 41 // Triggered when the SignalingState changed.
45 // Triggered when media is received on a new stream from remote peer.
49 // Triggered when a remote peer close a stream.
53 // Triggered when renegotiation is needed, for example the ICE has restarted.
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug283.go 8 // triggered out of registers on 8g
  /prebuilts/go/linux-x86/test/fixedbugs/
bug283.go 8 // triggered out of registers on 8g
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-m68hc11/
bug-3331.s 13 ;; and it triggered the relaxation of the
  /external/v8/test/mjsunit/es6/debug-promises/
reject-in-constructor.js 9 // We expect an Exception debug event with a promise to be triggered.
23 // Assert that the debug event is triggered at the throw site.
throw-in-constructor.js 9 // We expect an Exception debug event with a promise to be triggered.
23 // Assert that the debug event is triggered at the throw site.
try-reject-in-constructor.js 9 // We expect an Exception debug event with a promise to be triggered.
23 // Assert that the debug event is triggered at the throw site.
try-throw-reject-in-constructor.js 10 // We expect an Exception debug event with a promise to be triggered.
24 // Assert that the debug event is triggered at the throw site.
  /frameworks/base/core/java/android/view/
SearchEvent.java 34 * Returns the {@link InputDevice} that triggered the search.
35 * @return InputDevice the InputDevice that triggered the search.
  /frameworks/base/tests/utils/SleepUtils/
README 6 call will block until alarm has been triggered and the wakelock is held
16 2) setting alarm and wait til triggered

Completed in 1686 milliseconds

1 2 3 4 5 6 7 8 91011>>