Home
last modified time | relevance | path

Searched refs:fixture (Results 1 – 25 of 79) sorted by relevance

1234

/external/harfbuzz_ng/test/api/
Dtest-blob.c101 free_up (fixture_t *fixture) in free_up() argument
103 g_assert_cmpint (fixture->freed, ==, 0); in free_up()
104 fixture->freed++; in free_up()
108 free_up_free (fixture_t *fixture) in free_up_free() argument
110 free_up (fixture); in free_up_free()
111 free (fixture->data); in free_up_free()
135 free_up_munmap (fixture_t *fixture) in free_up_munmap() argument
137 free_up (fixture); in free_up_munmap()
138 munmap (fixture->data, get_pagesize ()); in free_up_munmap()
144 fixture_init (fixture_t *fixture, gconstpointer user_data) in fixture_init() argument
[all …]
Dtest-buffer.c60 fixture_init (fixture_t *fixture, gconstpointer user_data) in fixture_init() argument
65 b = fixture->buffer = hb_buffer_create (); in fixture_init()
95 fixture_finish (fixture_t *fixture, gconstpointer user_data) in fixture_finish() argument
97 hb_buffer_destroy (fixture->buffer); in fixture_finish()
102 test_buffer_properties (fixture_t *fixture, gconstpointer user_data) in test_buffer_properties() argument
104 hb_buffer_t *b = fixture->buffer; in test_buffer_properties()
180 test_buffer_contents (fixture_t *fixture, gconstpointer user_data) in test_buffer_contents() argument
182 hb_buffer_t *b = fixture->buffer; in test_buffer_contents()
297 test_buffer_positions (fixture_t *fixture, gconstpointer user_data) in test_buffer_positions() argument
299 hb_buffer_t *b = fixture->buffer; in test_buffer_positions()
[all …]
/external/libgdx/extensions/gdx-box2d/gdx-box2d/jni/
Dcom.badlogic.gdx.physics.box2d.Fixture.cpp11 b2Fixture* fixture = (b2Fixture*)addr; in Java_com_badlogic_gdx_physics_box2d_Fixture_jniGetType() local
12 b2Shape::Type type = fixture->GetType(); in Java_com_badlogic_gdx_physics_box2d_Fixture_jniGetType()
31 b2Fixture* fixture = (b2Fixture*)addr; in Java_com_badlogic_gdx_physics_box2d_Fixture_jniGetShape() local
32 return (jlong)fixture->GetShape(); in Java_com_badlogic_gdx_physics_box2d_Fixture_jniGetShape()
42 b2Fixture* fixture = (b2Fixture*)addr; in Java_com_badlogic_gdx_physics_box2d_Fixture_jniSetSensor() local
43 fixture->SetSensor(sensor); in Java_com_badlogic_gdx_physics_box2d_Fixture_jniSetSensor()
53 b2Fixture* fixture = (b2Fixture*)addr; in Java_com_badlogic_gdx_physics_box2d_Fixture_jniIsSensor() local
54 return fixture->IsSensor(); in Java_com_badlogic_gdx_physics_box2d_Fixture_jniIsSensor()
64 b2Fixture* fixture = (b2Fixture*)addr; in Java_com_badlogic_gdx_physics_box2d_Fixture_jniSetFilterData() local
69 fixture->SetFilterData(filter); in Java_com_badlogic_gdx_physics_box2d_Fixture_jniSetFilterData()
[all …]
/external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/com/badlogic/gdx/physics/box2d/
DFixture.java26 org.jbox2d.dynamics.Fixture fixture; field in Fixture
33 protected Fixture (Body body, org.jbox2d.dynamics.Fixture fixture) { in Fixture() argument
35 this.fixture = fixture; in Fixture()
38 protected void reset (Body body, org.jbox2d.dynamics.Fixture fixture) { in reset() argument
40 this.fixture = fixture; in reset()
48 ShapeType type = fixture.getType(); in getType()
59 org.jbox2d.collision.shapes.Shape shape2 = fixture.getShape(); in getShape()
71 fixture.setSensor(sensor); in setSensor()
77 return fixture.isSensor(); in isSensor()
87 fixture.setFilterData(f); in setFilterData()
[all …]
DBox2DDebugRenderer.java133 Fixture fixture = fixtures.get(i); in renderBody() local
137 drawShape(fixture, transform, SHAPE_NOT_ACTIVE); in renderBody()
139 drawShape(fixture, transform, SHAPE_STATIC); in renderBody()
141 drawShape(fixture, transform, SHAPE_KINEMATIC); in renderBody()
143 drawShape(fixture, transform, SHAPE_NOT_AWAKE); in renderBody()
145 drawShape(fixture, transform, SHAPE_AWAKE); in renderBody()
149 drawAABB(fixture, transform); in renderBody()
154 private void drawAABB (Fixture fixture, Transform transform) { in drawAABB() argument
155 if (fixture.getType() == Type.Circle) { in drawAABB()
157 CircleShape shape = (CircleShape)fixture.getShape(); in drawAABB()
[all …]
DBody.java420 Fixture fixture = new Fixture(this, f); in createFixture() local
421 fixtures.add(fixture); in createFixture()
422 world.fixtures.put(f, fixture); in createFixture()
423 return fixture; in createFixture()
434 Fixture fixture = new Fixture(this, f); in createFixture() local
435 fixtures.add(fixture); in createFixture()
436 world.fixtures.put(f, fixture); in createFixture()
437 return fixture; in createFixture()
445 public void destroyFixture (Fixture fixture) { in destroyFixture() argument
446 body.destroyFixture(fixture.fixture); in destroyFixture()
[all …]
/external/opencv3/modules/ts/include/opencv2/ts/
Docl_perf.hpp58 #define OCL_PERF_TEST(fixture, name) SIMPLE_PERF_TEST(fixture, name) argument
59 #define OCL_PERF_TEST_P(fixture, name, params) SIMPLE_PERF_TEST_P(fixture, name, params) argument
61 #define SIMPLE_PERF_TEST(fixture, name) \ argument
62 class OCL##_##fixture##_##name : \
66 OCL##_##fixture##_##name() { } \
70 …TEST_F(OCL##_##fixture##_##name, name) { declare.strategy(OCL_PERF_STRATEGY); RunPerfTestBody(); }…
71 void OCL##_##fixture##_##name::PerfTestBody()
73 #define SIMPLE_PERF_TEST_P(fixture, name, params) \ argument
74 class OCL##_##fixture##_##name : \
75 public fixture \
[all …]
Dts_perf.hpp555 #define PERF_TEST_F(fixture, testname) \ argument
556 namespace PERF_PROXY_NAMESPACE_NAME_(fixture, testname) {\
558 class fixture : public ::fixture {\
560 fixture() {}\
564 TEST_F(fixture, testname){ RunPerfTestBody(); }\
566 void PERF_PROXY_NAMESPACE_NAME_(fixture, testname)::fixture::PerfTestBody()
590 #define PERF_TEST_P(fixture, name, params) \ argument
591 class fixture##_##name : public fixture {\
593 fixture##_##name() {}\
597 TEST_P(fixture##_##name, name /*perf*/){ RunPerfTestBody(); }\
[all …]
/external/opencv3/modules/ts/misc/
Dtestlog_parser.py12 self.fixture = xmlnode.getAttribute("classname")
29 self.fixture = self.fixture.replace("DISABLED_", "")
78 return self.fixture
122 if self.fixture.endswith(self.getName()):
123 fixture = self.fixture[:-len(self.getName())]
125 fixture = self.fixture
126 if fixture.endswith("_"):
127 fixture = fixture[:-1]
128 return fixture
136 fixture = self.getFixture()
[all …]
/external/libgdx/extensions/gdx-box2d/gdx-box2d/jni/Box2D/Dynamics/
Db2Body.cpp177 b2Fixture* fixture = new (memory) b2Fixture; in CreateFixture() local
178 fixture->Create(allocator, this, def); in CreateFixture()
183 fixture->CreateProxies(broadPhase, m_xf); in CreateFixture()
186 fixture->m_next = m_fixtureList; in CreateFixture()
187 m_fixtureList = fixture; in CreateFixture()
190 fixture->m_body = this; in CreateFixture()
193 if (fixture->m_density > 0.0f) in CreateFixture()
202 return fixture; in CreateFixture()
214 void b2Body::DestroyFixture(b2Fixture* fixture) in DestroyFixture() argument
222 b2Assert(fixture->m_body == this); in DestroyFixture()
[all …]
Db2WorldCallbacks.h47 virtual void SayGoodbye(b2Fixture* fixture) = 0;
130 virtual bool ReportFixture(b2Fixture* fixture) = 0;
151 virtual float32 ReportFixture( b2Fixture* fixture, const b2Vec2& point,
Db2World.cpp979 return callback->ReportFixture(proxy->fixture); in QueryCallback()
1000 b2Fixture* fixture = proxy->fixture; in RayCastCallback() local
1003 bool hit = fixture->RayCast(&output, input, index); in RayCastCallback()
1009 return callback->ReportFixture(fixture, point, output.normal, fraction); in RayCastCallback()
1031 void b2World::DrawShape(b2Fixture* fixture, const b2Transform& xf, const b2Color& color) in DrawShape() argument
1033 switch (fixture->GetType()) in DrawShape()
1037 b2CircleShape* circle = (b2CircleShape*)fixture->GetShape(); in DrawShape()
1049 b2EdgeShape* edge = (b2EdgeShape*)fixture->GetShape(); in DrawShape()
1058 b2ChainShape* chain = (b2ChainShape*)fixture->GetShape(); in DrawShape()
1075 b2PolygonShape* poly = (b2PolygonShape*)fixture->GetShape(); in DrawShape()
/external/libgdx/extensions/gdx-box2d/gdx-box2d/src/com/badlogic/gdx/physics/box2d/
DBody.java75 Fixture fixture = this.world.freeFixtures.obtain(); in createFixture() local
76 fixture.reset(this, fixtureAddr); in createFixture()
77 this.world.fixtures.put(fixture.addr, fixture); in createFixture()
78 this.fixtures.add(fixture); in createFixture()
79 return fixture; in createFixture()
108 Fixture fixture = this.world.freeFixtures.obtain(); in createFixture() local
109 fixture.reset(this, fixtureAddr); in createFixture()
110 this.world.fixtures.put(fixture.addr, fixture); in createFixture()
111 this.fixtures.add(fixture); in createFixture()
112 return fixture; in createFixture()
[all …]
DBox2DDebugRenderer.java120 for (Fixture fixture : body.getFixtureList()) { in renderBody()
122 drawShape(fixture, transform, getColorByBody(body)); in renderBody()
130 drawAABB(fixture, transform); in renderBody()
148 private void drawAABB (Fixture fixture, Transform transform) { in drawAABB() argument
149 if (fixture.getType() == Type.Circle) { in drawAABB()
151 CircleShape shape = (CircleShape)fixture.getShape(); in drawAABB()
165 } else if (fixture.getType() == Type.Polygon) { in drawAABB()
166 PolygonShape shape = (PolygonShape)fixture.getShape(); in drawAABB()
194 private void drawShape (Fixture fixture, Transform transform, Color color) { in drawShape() argument
195 if (fixture.getType() == Type.Circle) { in drawShape()
[all …]
/external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/dynamics/
DBody.java191 Fixture fixture = new Fixture(); in createFixture() local
192 fixture.create(this, def); in createFixture()
196 fixture.createProxies(broadPhase, m_xf); in createFixture()
199 fixture.m_next = m_fixtureList; in createFixture()
200 m_fixtureList = fixture; in createFixture()
203 fixture.m_body = this; in createFixture()
206 if (fixture.m_density > 0.0f) { in createFixture()
214 return fixture; in createFixture()
244 public final void destroyFixture(Fixture fixture) { in destroyFixture() argument
250 assert (fixture.m_body == this); in destroyFixture()
[all …]
/external/protobuf/gtest/test/
Dgtest_output_test_golden_win.txt136 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 …]
Dgtest_output_test_golden_lin.txt185 Expected failure #1, in the test fixture c'tor.
197 Expected failure #5, in the test fixture d'tor.
204 Expected failure #1, in the test fixture c'tor.
207 Expected failure #2, in the test fixture d'tor.
223 Expected failure #4, in the test fixture d'tor.
236 Expected failure #3, in the test fixture d'tor.
246 All tests in the same test case must use the same test fixture
249 using two different test fixture classes. This can happen if
257 All tests in the same test case must use the same test fixture
260 using two different test fixture classes. This can happen if
[all …]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime.Tests/
DTestDriver.cs48 ANTLRxxxxStreamFixture fixture = new ANTLRxxxxStreamFixture(); in Main()
49 fixture.TestConsumeAllCharactersInAnANTLRInputStream(); in Main()
/external/chromium-trace/catapult/third_party/Paste/docs/modules/
Dfixture.txt1 :mod:`paste.fixture` -- Test applications
6 .. automodule:: paste.fixture
/external/chromium-trace/catapult/third_party/Paste/
DREADME.rst27 * A fixture for testing WSGI applications conveniently and in-process,
28 in ``paste.fixture``
30 * A fixture for testing command-line applications, also in
31 ``paste.fixture``
DPKG-INFO35 * A fixture for testing WSGI applications conveniently and in-process,
36 in ``paste.fixture``
38 * A fixture for testing command-line applications, also in
39 ``paste.fixture``
/external/chromium-trace/catapult/third_party/Paste/Paste.egg-info/
DPKG-INFO35 * A fixture for testing WSGI applications conveniently and in-process,
36 in ``paste.fixture``
38 * A fixture for testing command-line applications, also in
39 ``paste.fixture``
/external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/box2d/
DBox2DTest.java162 public boolean reportFixture (Fixture fixture) {
165 if (fixture.testPoint(testPoint.x, testPoint.y)) {
166 hitBody = fixture.getBody();
/external/gtest/test/
Dgtest_output_test_golden_lin.txt198 Expected failure #1, in the test fixture c'tor.
210 Expected failure #5, in the test fixture d'tor.
217 Expected failure #1, in the test fixture c'tor.
220 Expected failure #2, in the test fixture d'tor.
236 Expected failure #4, in the test fixture d'tor.
249 Expected failure #3, in the test fixture d'tor.
265 All tests in the same test case must use the same test fixture
268 using two different test fixture classes. This can happen if
276 All tests in the same test case must use the same test fixture
279 using two different test fixture classes. This can happen if
[all …]
/external/vulkan-validation-layers/tests/gtest-1.7.0/test/
Dgtest_output_test_golden_lin.txt198 Expected failure #1, in the test fixture c'tor.
210 Expected failure #5, in the test fixture d'tor.
217 Expected failure #1, in the test fixture c'tor.
220 Expected failure #2, in the test fixture d'tor.
236 Expected failure #4, in the test fixture d'tor.
249 Expected failure #3, in the test fixture d'tor.
265 All tests in the same test case must use the same test fixture
268 using two different test fixture classes. This can happen if
276 All tests in the same test case must use the same test fixture
279 using two different test fixture classes. This can happen if
[all …]

1234