/ndk/sources/third_party/googletest/googletest/test/ |
production.h | 41 // Declares a friend test that does not use a fixture. 44 // Declares a friend test that uses a fixture.
|
/external/libgdx/extensions/gdx-box2d/gdx-box2d/src/com/badlogic/gdx/physics/box2d/ |
Contact.java | 114 /** Get the first fixture in this contact. */ 115 public Fixture getFixtureA () { 124 /** Get the second fixture in this contact. */ 125 public Fixture getFixtureB () { 134 /** Get the child primitive index for fixture A. */ 144 /** Get the child primitive index for fixture B. */
|
/external/dbus/test/internals/ |
refs.c | 66 } Fixture; 169 Fixture *f = data; 176 wait_for_all_threads (Fixture *f) 189 Fixture *f = data; 198 setup (Fixture *f, 227 setup_connection (Fixture *f, 258 test_connection (Fixture *f, 339 test_server (Fixture *f, 406 test_message (Fixture *f, 454 test_pending_call (Fixture *f [all...] |
/external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/com/badlogic/gdx/physics/box2d/ |
World.java | 54 ObjectMap<org.jbox2d.dynamics.Fixture, Fixture> fixtures = new ObjectMap<org.jbox2d.dynamics.Fixture, Fixture>(); 75 public boolean shouldCollide (org.jbox2d.dynamics.Fixture fixtureA, org.jbox2d.dynamics.Fixture fixtureB) { 163 for (Fixture fixture : body.fixtures) { 164 fixtures.remove(fixture.fixture); [all...] |
/cts/tests/tests/nativemedia/sl/src/ |
SLObjectCreationTest.cpp | 329 ALOGV("Test Fixture: EngineCreation"); 334 ALOGV("Test Fixture: OutputMixCreation"); 339 ALOGV("Test Fixture: AudioPlayerFromUriCreation"); 346 ALOGV("Test Fixture: AudioPlayerFromFdCreation"); 353 ALOGV("Test Fixture: AudioPlayerFromPcmBqCreation"); 360 ALOGV("Test Fixture: AudioPlayerFromTsAbqCreation"); 367 ALOGV("Test Fixture: AudioPlayerFromUriToPcmBqCreation"); 372 ALOGV("Test Fixture: AudioPlayerFromFdToPcmBqCreation"); 377 ALOGV("Test Fixture: AudioPlayerFromAdtsAbqToPcmBqCreation"); 382 ALOGV("Test Fixture: AudioRecorderCreation") [all...] |
/external/opencv3/modules/ts/include/opencv2/ts/ |
ts_perf.hpp | 266 * Base fixture for performance tests * 519 class TestBase {/*compile error for this class means that you are trying to use perf::TestBase as a fixture*/};\ 530 // Defines a performance test that uses a test fixture. 532 // The first parameter is the name of the test fixture class, which 536 // A test fixture class must be declared earlier. The user should put 555 #define PERF_TEST_F(fixture, testname) \ 556 namespace PERF_PROXY_NAMESPACE_NAME_(fixture, testname) {\ 557 class TestBase {/*compile error for this class means that you are trying to use perf::TestBase as a fixture*/};\ 558 class fixture : public ::fixture {\ [all...] |
/external/dbus/test/ |
dbus-daemon.c | 56 } Fixture; 178 setup (Fixture *f, 235 add_echo_filter (Fixture *f) 253 test_echo (Fixture *f, 313 teardown (Fixture *f, 363 g_test_add ("/echo/session", Fixture, NULL, setup, test_echo, teardown); 364 g_test_add ("/echo/limited", Fixture, &limited_config,
|
/external/protobuf/gtest/test/ |
gtest_output_test_.cc | 77 // HasFatalFailure() outside of a TEST, TEST_F, or test fixture. 107 // fixture, the testing::Test:: prefix is not needed. 319 // Tests non-fatal failures in the fixture constructor. 324 ADD_FAILURE() << "Expected failure #1, in the test fixture c'tor."; 328 ADD_FAILURE() << "Expected failure #5, in the test fixture d'tor."; 344 // Tests fatal failures in the fixture constructor. 353 ADD_FAILURE() << "Expected failure #2, in the test fixture d'tor."; 358 << "We should never get here, as the test fixture c'tor " 364 << "We should never get here, as the test fixture c'tor " 369 FAIL() << "Expected failure #1, in the test fixture c'tor." [all...] |
gtest_output_test_golden_win.txt | 136 Expected failure #1, in the test fixture c'tor. 144 Expected failure #5, in the test fixture d'tor. 150 Expected failure #1, in the test fixture c'tor. 152 Expected failure #2, in the test fixture d'tor. 164 Expected failure #4, in the test fixture d'tor. 174 Expected failure #3, in the test fixture d'tor. 178 (expecting a failure on thrown exception in the test fixture's constructor) 179 unknown file: error: Exception thrown with code 0xc0000005 in the test fixture's constructor. 187 Expected failure #3, in the test fixture d'tor. 196 Expected failure #3, in the test fixture d'tor [all...] |
gtest-param-test2_test.cc | 51 // and ExternalInstantiationTest fixture class is defined in 60 // fixture is defined in gtest-param-test_test.h
|
/external/libgdx/extensions/gdx-box2d/gdx-box2d/jni/Box2D/Dynamics/Contacts/ |
b2Contact.h | 35 /// Friction mixing law. The idea is to allow either fixture to drive the restitution to zero. 104 /// Get fixture A in this contact. 108 /// Get the child primitive index for fixture A. 111 /// Get fixture B in this contact. 115 /// Get the child primitive index for fixture B. 166 // This contact needs filtering because a fixture filter was changed.
|
/external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/box2d/ |
Box2DTest.java | 44 import com.badlogic.gdx.physics.box2d.Fixture;
162 public boolean reportFixture (Fixture fixture) {
163 // if the hit point is inside the fixture of the body
165 if (fixture.testPoint(testPoint.x, testPoint.y)) {
166 hitBody = fixture.getBody();
|
/development/samples/Alarm/tests/src/com/example/android/newalarm/ |
AlarmServiceTest.java | 44 * Sets up the test fixture. This method is called before each test 56 * Cleans up the test fixture
|
/development/samples/training/testingfun/app/tests/src/com/example/android/testingfun/tests/lesson2/ |
MyFirstTestActivityTest.java | 49 * Test if your test fixture has been set up correctly. You should always implement a test that 50 * checks the correct setup of your test fixture. If this tests fails all other tests are
|
/external/chromium-trace/catapult/third_party/Paste/tests/test_exceptions/ |
test_error_middleware.py | 1 from paste.fixture import * 21 The fixture sets paste.throw_errors, which suppresses exactly what
|
/external/google-breakpad/src/testing/gtest/test/ |
gtest-param-test2_test.cc | 51 // and ExternalInstantiationTest fixture class is defined in 60 // fixture is defined in gtest-param-test_test.h
|
/external/gtest/test/ |
gtest-param-test2_test.cc | 51 // and ExternalInstantiationTest fixture class is defined in 60 // fixture is defined in gtest-param-test_test.h
|
/external/vulkan-validation-layers/tests/gtest-1.7.0/test/ |
gtest-param-test2_test.cc | 51 // and ExternalInstantiationTest fixture class is defined in 60 // fixture is defined in gtest-param-test_test.h
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/ |
UTFDataFormatExceptionTest.java | 71 * Sets up the fixture, for example, open a network connection. This method 78 * Tears down the fixture, for example, close a network connection. This
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/ |
IllegalStateExceptionTest.java | 40 IllegalStateException e = new IllegalStateException("fixture"); 41 assertEquals("fixture", e.getMessage());
|
UnsupportedOperationExceptionTest.java | 40 UnsupportedOperationException e = new UnsupportedOperationException("fixture"); 41 assertEquals("fixture", e.getMessage());
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/ |
PasswordAuthenticationTest.java | 62 * Sets up the fixture, for example, open a network connection. This method 69 * Tears down the fixture, for example, close a network connection. This
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/ |
ConcurrentModificationExceptionTest.java | 95 * Sets up the fixture, for example, open a network connection. This method 102 * Tears down the fixture, for example, close a network connection. This
|
EventObjectTest.java | 56 * Sets up the fixture, for example, open a network connection. This method 65 * Tears down the fixture, for example, close a network connection. This
|
MissingResourceExceptionTest.java | 73 * Sets up the fixture, for example, open a network connection. This method 80 * Tears down the fixture, for example, close a network connection. This
|