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

1 2 3

  /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);
  /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/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;
  /external/guice/extensions/servlet/test/com/google/inject/servlet/
ContextPathTest.java 261 private boolean triggered = false; field in class:ContextPathTest.TestServlet
265 triggered = true;
269 return triggered;
273 triggered = false;
278 private boolean triggered = false; field in class:ContextPathTest.TestFilterChain
282 triggered = true;
286 return triggered;
290 triggered = false;
  /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.
  /frameworks/base/services/core/java/com/android/server/
LockGuard.java 91 boolean triggered = false;
101 triggered = true;
105 if (!triggered) {
  /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.
reject-caught-late.js 9 // We expect no debug event to be triggered.
reject-caught-uncaught.js 9 // We expect no debug event to be triggered.
throw-caught-late.js 9 // We expect no debug event to be triggered.
throw-caught-uncaught.js 9 // We expect no debug event to be triggered.
promise-all-uncaught.js 10 // expect two Exception debug events to be triggered, for p2 and p3 each,
39 // Assert that the debug event is triggered at the throw site.
promise-race-uncaught.js 10 // expect two Exception debug events to be triggered, for p2 and p3 each,
39 // Assert that the debug event is triggered at the throw site.
reject-uncaught-late.js 9 // We expect an Exception debug event with a promise to be triggered.
43 // Assert that the debug event is triggered at the throw site.
throw-uncaught-all.js 9 // We expect an Exception debug event with a promise to be triggered.
37 // Assert that the debug event is triggered at the throw site.
throw-uncaught-uncaught.js 9 // We expect an Exception debug event with a promise to be triggered.
37 // 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.
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-m68hc11/
bug-3331.s 13 ;; and it triggered the relaxation of the
  /external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
wpagui.cpp 52 connect(fileStartServiceAction, SIGNAL(triggered()), this,
54 connect(fileStopServiceAction, SIGNAL(triggered()), this,
61 connect(addInterfaceAction, SIGNAL(triggered()), this,
74 connect(fileEventHistoryAction, SIGNAL(triggered()), this,
76 connect(fileSaveConfigAction, SIGNAL(triggered()), this,
78 connect(actionWPS, SIGNAL(triggered()), this, SLOT(wpsDialog()));
79 connect(actionPeers, SIGNAL(triggered()), this, SLOT(peersDialog()));
80 connect(fileExitAction, SIGNAL(triggered()), qApp, SLOT(quit()));
81 connect(networkAddAction, SIGNAL(triggered()), this,
83 connect(networkEditAction, SIGNAL(triggered()), this
    [all...]
  /external/skia/debugger/QT/
SkDebuggerGUI.cpp 56 connect(&fActionOpen, SIGNAL(triggered()), this, SLOT(openFile()));
57 connect(&fActionDirectory, SIGNAL(triggered()), this, SLOT(toggleDirectory()));
60 connect(&fActionDelete, SIGNAL(triggered()), this, SLOT(actionDelete()));
62 connect(&fActionRewind, SIGNAL(triggered()), this, SLOT(actionRewind()));
63 connect(&fActionPlay, SIGNAL(triggered()), this, SLOT(actionPlay()));
64 connect(&fActionStepBack, SIGNAL(triggered()), this, SLOT(actionStepBack()));
65 connect(&fActionStepForward, SIGNAL(triggered()), this, SLOT(actionStepForward()));
66 connect(&fActionBreakpoint, SIGNAL(triggered()), this, SLOT(actionBreakpoints()));
67 connect(&fActionInspector, SIGNAL(triggered()), this, SLOT(actionInspector()));
68 connect(&fActionSettings, SIGNAL(triggered()), this, SLOT(actionSettings()))
    [all...]

Completed in 2408 milliseconds

1 2 3