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

1 2 3 4 5 6 7 8 91011>>

  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/text/
StringCharacterIteratorTest.java 121 StringCharacterIterator sci0 = new StringCharacterIterator("fixture");
124 assertFalse(sci0.equals("fixture"));
126 StringCharacterIterator sci1 = new StringCharacterIterator("fixture");
149 StringCharacterIterator sci0 = new StringCharacterIterator("fixture");
165 StringCharacterIterator fixture = new StringCharacterIterator("fixture"); local
166 assertEquals('f', fixture.current());
167 fixture.next();
168 assertEquals('i', fixture.current());
179 StringCharacterIterator fixture = new StringCharacterIterator("fixture") local
201 StringCharacterIterator fixture = new StringCharacterIterator("fixture"); local
218 StringCharacterIterator fixture = new StringCharacterIterator("fixture"); local
237 StringCharacterIterator fixture = new StringCharacterIterator("fixture"); local
252 StringCharacterIterator fixture = new StringCharacterIterator("fixture"); local
269 StringCharacterIterator fixture = new StringCharacterIterator("fixture"); local
307 StringCharacterIterator fixture = new StringCharacterIterator("fixture"); local
352 StringCharacterIterator fixture = new StringCharacterIterator("fixture"); local
381 StringCharacterIterator fixture = new StringCharacterIterator("fixture"); local
    [all...]
  /external/libgdx/extensions/gdx-box2d/gdx-box2d/jni/
com.badlogic.gdx.physics.box2d.Fixture.cpp 1 #include <com.badlogic.gdx.physics.box2d.Fixture.h>
11 b2Fixture* fixture = (b2Fixture*)addr; local
12 b2Shape::Type type = fixture->GetType();
31 b2Fixture* fixture = (b2Fixture*)addr; local
32 return (jlong)fixture->GetShape();
42 b2Fixture* fixture = (b2Fixture*)addr; local
43 fixture->SetSensor(sensor);
53 b2Fixture* fixture = (b2Fixture*)addr; local
54 return fixture->IsSensor();
64 b2Fixture* fixture = (b2Fixture*)addr local
80 b2Fixture* fixture = (b2Fixture*)addr; local
96 b2Fixture* fixture = (b2Fixture*)addr; local
107 b2Fixture* fixture = (b2Fixture*)addr; local
118 b2Fixture* fixture = (b2Fixture*)addr; local
129 b2Fixture* fixture = (b2Fixture*)addr; local
140 b2Fixture* fixture = (b2Fixture*)addr; local
151 b2Fixture* fixture = (b2Fixture*)addr; local
162 b2Fixture* fixture = (b2Fixture*)addr; local
173 b2Fixture* fixture = (b2Fixture*)addr; local
    [all...]
  /external/harfbuzz_ng/test/api/
test-blob.c 101 free_up (fixture_t *fixture)
103 g_assert_cmpint (fixture->freed, ==, 0);
104 fixture->freed++;
108 free_up_free (fixture_t *fixture)
110 free_up (fixture);
111 free (fixture->data);
135 free_up_munmap (fixture_t *fixture)
137 free_up (fixture);
138 munmap (fixture->data, get_pagesize ());
144 fixture_init (fixture_t *fixture, gconstpointer user_data
    [all...]
  /external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/com/badlogic/gdx/physics/box2d/
Fixture.java 25 public class Fixture {
26 org.jbox2d.dynamics.Fixture fixture; field in class:Fixture
31 /** Constructs a new fixture
32 * @param addr the address of the fixture */
33 protected Fixture (Body body, org.jbox2d.dynamics.Fixture fixture) {
35 this.fixture = fixture;
    [all...]
QueryCallback.java 21 /** Called for each fixture found in the query AABB.
23 public boolean reportFixture (Fixture fixture);
RayCastCallback.java 27 /** Called for each fixture found in the query. You control how the ray cast proceeds by returning a float: return -1: ignore
28 * this fixture and continue return 0: terminate the ray cast return fraction: clip the ray to this point return 1: don't clip
33 * @param fixture the fixture hit by the ray
37 public float reportRayFixture (Fixture fixture, Vector2 point, Vector2 normal, float fraction);
  /external/libgdx/extensions/gdx-box2d/gdx-box2d/src/com/badlogic/gdx/physics/box2d/
Fixture.java 23 public class Fixture {
31 /** the address of the fixture **/
40 /** Constructs a new fixture
41 * @param addr the address of the fixture */
42 protected Fixture (Body body, long addr) {
73 b2Fixture* fixture = (b2Fixture*)addr;
74 b2Shape::Type type = fixture->GetType();
86 /** Returns the shape of this fixture */
115 b2Fixture* fixture = (b2Fixture*)addr;
116 return (jlong)fixture->GetShape()
    [all...]
QueryCallback.java 21 /** Called for each fixture found in the query AABB.
23 public boolean reportFixture (Fixture fixture);
RayCastCallback.java 27 /** Called for each fixture found in the query. You control how the ray cast proceeds by returning a float: return -1: ignore
28 * this fixture and continue return 0: terminate the ray cast return fraction: clip the ray to this point return 1: don't clip
33 * @param fixture the fixture hit by the ray
37 public float reportRayFixture (Fixture fixture, Vector2 point, Vector2 normal, float fraction);
FixtureDef.java 19 /** A fixture definition is used to create a fixture. This class defines an abstract fixture definition. You can reuse fixture
  /external/testng/src/test/java/test/tmp/
ConcreteTest.java 7 @Configuration(beforeTest=true, afterGroups="fixture")
12 @Test(groups = "fixture")
Fixturable.java 6 @Configuration(beforeTest=true, groups="fixture")
  /external/junit/src/junit/extensions/
TestSetup.java 8 * A Decorator to set up and tear down additional fixture state. Subclass
31 * Sets up the fixture. Override to set up additional fixture state.
37 * Tears down the fixture. Override to tear down the additional fixture
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
ServiceConfigurationErrorTest.java 38 ServiceConfigurationError e = new ServiceConfigurationError("fixture");
39 assertEquals("fixture", e.getMessage());
50 ServiceConfigurationError e = new ServiceConfigurationError("fixture",
52 assertEquals("fixture", e.getMessage());
63 SerializationTest.verifySelf(new ServiceConfigurationError("fixture"));
64 SerializationTest.verifySelf(new ServiceConfigurationError("fixture",
74 ServiceConfigurationError e = new ServiceConfigurationError("fixture",
  /external/opencv3/modules/ts/misc/
testlog_parser.py 12 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("_")
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
StringBuilderTest.java 62 StringBuilder sb = new StringBuilder((CharSequence) "fixture");
63 assertEquals("fixture", sb.toString());
64 assertEquals("fixture".length() + 16, sb.capacity());
66 sb = new StringBuilder((CharSequence) new StringBuffer("fixture"));
67 assertEquals("fixture", sb.toString());
68 assertEquals("fixture".length() + 16, sb.capacity());
82 StringBuilder sb = new StringBuilder("fixture");
83 assertEquals("fixture", sb.toString());
84 assertEquals("fixture".length() + 16, sb.capacity());
331 assertSame(sb, sb.append(Fixture.INSTANCE))
396 final String fixture = "0123456789"; local
537 final String fixture = "0123456789"; local
590 final String fixture = "0123456789"; local
644 final String fixture = "0123456789"; local
715 final String fixture = "0123456789"; local
734 final String fixture = "0123456789"; local
763 final String fixture = "0000"; local
805 final String fixture = "0000"; local
865 final String fixture = "0000"; local
916 final String fixture = "0000"; local
1006 final String fixture = "0000"; local
1049 final String fixture = "0000"; local
1130 final String fixture = "0000"; local
1172 final String fixture = "0000"; local
1214 final String fixture = "0000"; local
1256 final String fixture = "0000"; local
1298 final String fixture = "0000"; local
1340 final String fixture = "0000"; local
1382 final String fixture = "0123456789"; local
1401 final String fixture = "0123456789"; local
1506 final String fixture = "0000"; local
1596 final String fixture = "0123456789"; local
1682 final String fixture = "0000"; local
1719 final String fixture = "0123456789"; local
1792 final String fixture = "0123456789"; local
1833 final String fixture = "0123456789"; local
1867 final String fixture = "0123456789"; local
1908 final String fixture = "0123456789"; local
1930 final String fixture = "0123456789"; local
    [all...]
EnumConstantNotPresentExceptionTest.java 23 public enum Fixture {
36 EnumConstantNotPresentException e = new EnumConstantNotPresentException(Fixture.class, "FOUR");
37 assertEquals(Fixture.class, e.enumType());
41 EnumConstantNotPresentException e = new EnumConstantNotPresentException(Fixture.class, "FOUR");
  /external/google-breakpad/src/testing/gtest/samples/
sample5_unittest.cc 32 // This sample teaches how to reuse a test fixture in multiple test
35 // When you define a test fixture, you specify the name of the test
36 // case that will use this fixture. Therefore, a test fixture can
44 // test fixture, and then have each test case use a fixture derived
45 // from this super fixture.
57 // We put the code for timing a test in a test fixture called
58 // "QuickTest". QuickTest is intended to be the super fixture that
88 // We derive a fixture named IntegerFunctionTest from the QuickTes
    [all...]
  /external/protobuf/gtest/samples/
sample5_unittest.cc 32 // This sample teaches how to reuse a test fixture in multiple test
35 // When you define a test fixture, you specify the name of the test
36 // case that will use this fixture. Therefore, a test fixture can
44 // test fixture, and then have each test case use a fixture derived
45 // from this super fixture.
57 // We put the code for timing a test in a test fixture called
58 // "QuickTest". QuickTest is intended to be the super fixture that
88 // We derive a fixture named IntegerFunctionTest from the QuickTes
    [all...]
  /external/vulkan-validation-layers/tests/gtest-1.7.0/samples/
sample5_unittest.cc 32 // This sample teaches how to reuse a test fixture in multiple test
35 // When you define a test fixture, you specify the name of the test
36 // case that will use this fixture. Therefore, a test fixture can
44 // test fixture, and then have each test case use a fixture derived
45 // from this super fixture.
57 // We put the code for timing a test in a test fixture called
58 // "QuickTest". QuickTest is intended to be the super fixture that
88 // We derive a fixture named IntegerFunctionTest from the QuickTes
    [all...]
  /ndk/sources/third_party/googletest/googletest/samples/
sample5_unittest.cc 32 // This sample teaches how to reuse a test fixture in multiple test
35 // When you define a test fixture, you specify the name of the test
36 // case that will use this fixture. Therefore, a test fixture can
44 // test fixture, and then have each test case use a fixture derived
45 // from this super fixture.
57 // We put the code for timing a test in a test fixture called
58 // "QuickTest". QuickTest is intended to be the super fixture that
88 // We derive a fixture named IntegerFunctionTest from the QuickTes
    [all...]
  /external/chromium-trace/catapult/third_party/Paste/tests/
test_proxy.py 2 from paste.fixture import TestApp
  /external/opencv3/modules/ts/include/opencv2/ts/
ocl_perf.hpp 58 #define OCL_PERF_TEST(fixture, name) SIMPLE_PERF_TEST(fixture, name)
59 #define OCL_PERF_TEST_P(fixture, name, params) SIMPLE_PERF_TEST_P(fixture, name, params)
61 #define SIMPLE_PERF_TEST(fixture, name) \
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)
    [all...]
  /external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/callbacks/
RayCastCallback.java 30 import org.jbox2d.dynamics.Fixture;
41 * Called for each fixture found in the query. You control how the ray cast
43 * return -1: ignore this fixture and continue
47 * @param fixture the fixture hit by the ray
54 public float reportFixture(Fixture fixture, Vec2 point, Vec2 normal, float fraction);
  /prebuilts/tools/common/fest/
fest-swing-1.2.1-sources.jar 

Completed in 1599 milliseconds

1 2 3 4 5 6 7 8 91011>>