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

1 2

  /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/harfbuzz_ng/test/api/
test-blob.c 98 free_up (fixture_t *fixture)
100 g_assert_cmpint (fixture->freed, ==, 0);
101 fixture->freed++;
105 free_up_free (fixture_t *fixture)
107 free_up (fixture);
108 free (fixture->data);
132 free_up_munmap (fixture_t *fixture)
134 free_up (fixture);
135 munmap (fixture->data, get_pagesize ());
141 fixture_init (fixture_t *fixture, gconstpointer user_data
    [all...]
test-buffer.c 60 fixture_init (fixture_t *fixture, gconstpointer user_data)
65 b = fixture->buffer = hb_buffer_create ();
95 fixture_finish (fixture_t *fixture, gconstpointer user_data)
97 hb_buffer_destroy (fixture->buffer);
102 test_buffer_properties (fixture_t *fixture, gconstpointer user_data)
104 hb_buffer_t *b = fixture->buffer;
171 test_buffer_contents (fixture_t *fixture, gconstpointer user_data)
173 hb_buffer_t *b = fixture->buffer;
288 test_buffer_positions (fixture_t *fixture, gconstpointer user_data)
290 hb_buffer_t *b = fixture->buffer
    [all...]
  /external/chromium_org/chrome/browser/supervised_user/
supervised_user_pref_store_unittest.cc 93 SupervisedUserPrefStoreFixture fixture(&service_);
94 EXPECT_FALSE(fixture.initialization_completed());
99 EXPECT_TRUE(fixture.initialization_completed());
100 EXPECT_EQ(0u, fixture.changed_prefs()->size());
106 EXPECT_TRUE(fixture.changed_prefs()->GetBoolean(
112 EXPECT_FALSE(fixture.changed_prefs()->GetDictionary(
117 EXPECT_TRUE(fixture.changed_prefs()->GetBoolean(prefs::kForceSafeSearch,
122 fixture.changed_prefs()->Clear();
124 EXPECT_EQ(0u, fixture.changed_prefs()->size());
133 EXPECT_EQ(1u, fixture.changed_prefs()->size())
    [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();
  /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...]
StringBufferTest.java 202 final String fixture = "0000"; local
203 StringBuffer sb = new StringBuffer(fixture);
208 sb = new StringBuffer(fixture);
213 sb = new StringBuffer(fixture);
218 sb = new StringBuffer(fixture);
224 sb = new StringBuffer(fixture);
232 sb = new StringBuffer(fixture);
245 final String fixture = "0000"; local
246 StringBuffer sb = new StringBuffer(fixture);
251 sb = new StringBuffer(fixture);
536 final String fixture = "0123456789"; local
566 final String fixture = "0123456789"; local
    [all...]
ByteTest.java 110 Byte fixture = new Byte((byte) 25); local
111 assertEquals(fixture, fixture);
112 assertFalse(fixture.equals(null));
113 assertFalse(fixture.equals("Not a Byte"));
ShortTest.java 431 Short fixture = new Short((short) 25); local
432 assertEquals(fixture, fixture);
433 assertFalse(fixture.equals(null));
434 assertFalse(fixture.equals("Not a Short"));
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
Arrays2Test.java 282 assertEquals("[fixture]", Arrays.toString(new Object[] { "fixture" }));
283 assertEquals("[fixture, null]", Arrays.toString(new Object[] { "fixture", null }));
284 assertEquals("[fixture, null, fixture]", Arrays.toString(new Object[] { "fixture", null, "fixture" }));
293 assertEquals("[fixture]", Arrays.deepToString(new Object[] { "fixture" }));
297 Object[] fixture = new Object[1]; local
    [all...]
  /external/chromium_org/sandbox/mac/
xpc_message_server_unittest.cc 94 BlockDemuxer fixture; member in namespace:sandbox
95 XPCMessageServer* server = fixture.server();
98 ASSERT_TRUE(fixture.Initialize(^(IPCMessage request) {
107 EXPECT_EQ(0, xpc_pipe_routine(fixture.pipe(), request, &reply));
116 BlockDemuxer fixture; variable
117 XPCMessageServer* server = fixture.server();
118 ASSERT_TRUE(fixture.Initialize(^(IPCMessage request) {
124 EXPECT_EQ(0, xpc_pipe_routine(fixture.pipe(), request, &reply));
135 BlockDemuxer fixture;
136 XPCMessageServer* server = fixture.server()
    [all...]
  /external/chromium_org/net/spdy/fuzzing/
hpack_fuzz_util_test.cc 58 char fixture[] = local
68 input.input.assign(fixture, arraysize(fixture) - 1);
  /external/chromium_org/remoting/webapp/unittests/
menu_button_unittest.js 15 var fixture = document.getElementById('qunit-fixture');
16 fixture.innerHTML =
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/testing/
chromevox_e2e_test_base.js 6 * Base test fixture for ChromeVox end to end tests.
61 * Used this variant when an |isAsync| fixture wants to temporarily mix in an
63 * @param {string} testFixture Fixture name.
  /external/chromium_org/chrome/browser/resources/google_now/
common_test_util.js 189 * @param {Object} fixture Mock JS Test Object.
195 fixture, defaultObject, result, opt_AllowRejection) {
197 fixture.mockApis.expects(once()).
201 fixture.mockApis.expects(once()).
  /external/chromium_org/testing/gtest/test/
gtest_catch_exceptions_test.py 91 'in the test fixture\'s constructor'
94 'in the test fixture\'s destructor'
126 'in the test fixture\'s constructor'
139 'in the test fixture\'s destructor'
  /external/gtest/test/
gtest_catch_exceptions_test.py 91 'in the test fixture\'s constructor'
94 'in the test fixture\'s destructor'
126 'in the test fixture\'s constructor'
139 'in the test fixture\'s destructor'
  /ndk/sources/third_party/googletest/googletest/test/
gtest_catch_exceptions_test.py 78 'in the test fixture\'s constructor'
81 'in the test fixture\'s destructor'
113 'in the test fixture\'s constructor'
126 'in the test fixture\'s destructor'
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/proxy_configuration/test/
proxy_form_controller_test.js 25 var fixture = document.getElementById('fixture'); variable
26 var baselineHTML = fixture.innerHTML;
51 fixture.innerHTML = baselineHTML;
73 fixture.removeChild(fixture.childNodes[0]);
142 fixture.innerHTML = baselineHTML;
160 fixture.innerHTML = baselineHTML;
178 fixture.innerHTML = baselineHTML;
196 fixture.innerHTML = baselineHTML
    [all...]
  /external/guava/guava-tests/test/com/google/common/eventbus/
EventBusTest.java 106 assertEquals("String fixture must be first object delivered.",
108 assertEquals("Object fixture must be second object delivered.",
110 assertEquals("Comparable fixture must be thirdobject delivered.",
116 assertEquals("String fixture must be first comparable delivered.",
118 assertEquals("Comparable fixture must be second comparable delivered.",
149 HierarchyFixture fixture = new HierarchyFixture(); local
150 Set<Class<?>> hierarchy = bus.flattenHierarchy(fixture.getClass());
  /external/chromium_org/chrome/browser/prefs/tracked/
pref_hash_browsertest.cc 105 #define PREF_HASH_BROWSER_TEST(fixture, test_name) \
106 IN_PROC_BROWSER_TEST_P(fixture, PRE_##test_name) { \
109 IN_PROC_BROWSER_TEST_P(fixture, test_name) { \
113 fixture##Instance, \
114 fixture, \
123 // A base fixture designed such that implementations do two things:
125 // verify preferenes throughout the tests provided by this fixture.
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/
downloads_ui_browsertest.js 10 * Test C++ fixture for downloads WebUI testing.
17 * Base fixture for Downloads WebUI testing.
155 * Fixture for Downloads WebUI testing when deletions are prohibited.
179 * Fixture for Downloads WebUI testing for a supervised user.
sync_setup_browsertest.js 8 * Test fixture for sync setup WebUI testing.
  /external/chromium_org/chrome/browser/ui/webui/extensions/
extension_settings_browsertest.js 11 * Test C++ fixture for settings WebUI testing.
  /external/chromium_org/chrome/test/base/
js2gtest.js 77 * fixture.
90 * When true, add calls to set_preload_test_(fixture|name). This is needed when
112 * @param {string?} testFixture Name of test fixture.
320 * @param {string} testFixture The name of this test's fixture.

Completed in 561 milliseconds

1 2