/external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/com/badlogic/gdx/physics/box2d/ |
Body.java | 32 final Array<Fixture> fixtures = new Array<Fixture>(); 412 /** Creates a fixture and attach it to this body. Use this function if you need to set some fixture parameters, like friction. 413 * Otherwise you can create the fixture directly from a shape. If the density is non-zero, this function automatically updates 415 * @param def the fixture definition. 417 public Fixture createFixture (FixtureDef def) { 419 org.jbox2d.dynamics.Fixture f = body.createFixture(fd); 420 Fixture fixture = new Fixture(this, f) local 434 Fixture fixture = new Fixture(this, f); local [all...] |
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime.Tests/ |
TestDriver.cs | 47 //ITreeFixture fixture = new ITreeFixture(); 48 ANTLRxxxxStreamFixture fixture = new ANTLRxxxxStreamFixture(); 49 fixture.TestConsumeAllCharactersInAnANTLRInputStream();
|
/external/dbus/test/ |
corrupt.c | 44 } Fixture; 58 Fixture *f = data; 71 Fixture *f = data; 79 setup (Fixture *f, 95 test_connect (Fixture *f, 120 test_message (Fixture *f, 203 test_corrupt (Fixture *f, 253 test_byte_order (Fixture *f, 332 teardown (Fixture *f, 364 g_test_add ("/corrupt/tcp", Fixture, "tcp:host=127.0.0.1", setup [all...] |
/external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/dynamics/contacts/ |
CircleContact.java | 30 import org.jbox2d.dynamics.Fixture; 39 public void init(Fixture fixtureA, Fixture fixtureB) {
|
PolygonContact.java | 30 import org.jbox2d.dynamics.Fixture; 39 public void init(Fixture fixtureA, Fixture fixtureB) {
|
/external/chromium-trace/catapult/third_party/Paste/tests/ |
test_gzipper.py | 1 from paste.fixture import TestApp
|
test_profilemiddleware.py | 1 from paste.fixture import *
|
/external/google-breakpad/src/testing/gtest/samples/ |
sample3_unittest.cc | 36 // test fixture. 38 // A test fixture is a place to hold objects and functions shared by 39 // all tests in a test case. Using a test fixture avoids duplicating 46 // The tests share the test fixture in the sense of code sharing, not 48 // fixture. You cannot expect the data modified by one test to be 62 // in a test fixture. 69 // To use a test fixture, derive a class from testing::Test. 119 // When you have a test fixture, you define a test using TEST_F 124 // You can access data in the test fixture here.
|
/external/libgdx/extensions/gdx-box2d/gdx-box2d/jni/Box2D/Dynamics/ |
b2WorldCallbacks.h | 45 /// Called when any fixture is about to be destroyed due 47 virtual void SayGoodbye(b2Fixture* fixture) = 0; 128 /// Called for each fixture found in the query AABB. 130 virtual bool ReportFixture(b2Fixture* fixture) = 0; 140 /// Called for each fixture found in the query. You control how the ray cast 142 /// return -1: ignore this fixture and continue 146 /// @param fixture the fixture hit by the ray 151 virtual float32 ReportFixture( b2Fixture* fixture, const b2Vec2& point,
|
b2Body.cpp | 177 b2Fixture* fixture = new (memory) b2Fixture; local 178 fixture->Create(allocator, this, def); 183 fixture->CreateProxies(broadPhase, m_xf); 186 fixture->m_next = m_fixtureList; 187 m_fixtureList = fixture; 190 fixture->m_body = this; 193 if (fixture->m_density > 0.0f) 198 // Let the world know we have a new fixture. This will cause new contacts 202 return fixture; 214 void b2Body::DestroyFixture(b2Fixture* fixture) [all...] |
/external/protobuf/gtest/samples/ |
sample3_unittest.cc | 36 // test fixture. 38 // A test fixture is a place to hold objects and functions shared by 39 // all tests in a test case. Using a test fixture avoids duplicating 46 // The tests share the test fixture in the sense of code sharing, not 48 // fixture. You cannot expect the data modified by one test to be 62 // in a test fixture. 69 // To use a test fixture, derive a class from testing::Test. 119 // When you have a test fixture, you define a test using TEST_F 124 // You can access data in the test fixture here.
|
/external/vulkan-validation-layers/tests/gtest-1.7.0/samples/ |
sample3_unittest.cc | 36 // test fixture. 38 // A test fixture is a place to hold objects and functions shared by 39 // all tests in a test case. Using a test fixture avoids duplicating 46 // The tests share the test fixture in the sense of code sharing, not 48 // fixture. You cannot expect the data modified by one test to be 62 // in a test fixture. 69 // To use a test fixture, derive a class from testing::Test. 119 // When you have a test fixture, you define a test using TEST_F 124 // You can access data in the test fixture here.
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/ |
IllegalArgumentExceptionTest.java | 40 IllegalArgumentException e = new IllegalArgumentException("fixture"); 41 assertEquals("fixture", e.getMessage()); 68 IllegalArgumentException e = new IllegalArgumentException("fixture", 70 assertSame("fixture", e.getMessage());
|
ArithmeticExceptionTest.java | 37 ArithmeticException e = new ArithmeticException("fixture"); 38 assertEquals("fixture", e.getMessage());
|
ArrayIndexOutOfBoundsExceptionTest.java | 48 ArrayIndexOutOfBoundsException e = new ArrayIndexOutOfBoundsException("fixture"); 49 assertEquals("fixture", e.getMessage());
|
ArrayStoreExceptionTest.java | 38 ArrayStoreException e = new ArrayStoreException("fixture"); 39 assertEquals("fixture", e.getMessage());
|
ClassCastExceptionTest.java | 38 ClassCastException e = new ClassCastException("fixture"); 39 assertEquals("fixture", e.getMessage());
|
CloneNotSupportedExceptionTest.java | 38 CloneNotSupportedException e = new CloneNotSupportedException("fixture"); 39 assertEquals("fixture", e.getMessage());
|
ErrorTest.java | 38 Error e = new Error("fixture"); 39 assertEquals("fixture", e.getMessage());
|
ExceptionTest.java | 38 Exception e = new Exception("fixture"); 39 assertEquals("fixture", e.getMessage());
|
/ndk/sources/third_party/googletest/googletest/samples/ |
sample3_unittest.cc | 36 // test fixture. 38 // A test fixture is a place to hold objects and functions shared by 39 // all tests in a test case. Using a test fixture avoids duplicating 46 // The tests share the test fixture in the sense of code sharing, not 48 // fixture. You cannot expect the data modified by one test to be 62 // in a test fixture. 69 // To use a test fixture, derive a class from testing::Test. 119 // When you have a test fixture, you define a test using TEST_F 124 // You can access data in the test fixture here.
|
/external/chromium-trace/catapult/telemetry/third_party/mox3/mox3/ |
fixture.py | 23 class MoxStubout(fixtures.Fixture): 24 """Deal with code around mox and stubout as a fixture."""
|
/external/chromium-trace/catapult/third_party/Paste/docs/modules/ |
fixture.txt | 1 :mod:`paste.fixture` -- Test applications 6 .. automodule:: paste.fixture
|
/external/chromium-trace/catapult/third_party/mox3/mox3/ |
fixture.py | 23 class MoxStubout(fixtures.Fixture): 24 """Deal with code around mox and stubout as a fixture."""
|
/external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/dynamics/ |
FixtureProxy.java | 35 Fixture fixture; field in class:FixtureProxy
|