/external/guava/guava-testlib/src/com/google/common/testing/ |
RelationshipTester.java | 59 // check unrelated items in all other groups 91 T unrelated = groups.get(unrelatedGroupNumber).get(unrelatedItemNumber); local 93 assertion.assertUnrelated(item, unrelated); 98 .replace("$UNRELATED", itemString(unrelated, unrelatedGroupNumber, unrelatedItemNumber))); 117 * <p>As a convenience, any occurrence of {@code $ITEM}, {@code $RELATED} or {@code $UNRELATED} in 125 void assertUnrelated(T item, T unrelated);
|
EqualsTester.java | 108 @Override public void assertUnrelated(Object item, Object unrelated) { 111 assertTrue("$ITEM must be unequal to $UNRELATED", !Objects.equal(item, unrelated));
|
EquivalenceTester.java | 79 @Override public void assertUnrelated(T item, T unrelated) { 80 assertTrue("$ITEM must be inequivalent to $UNRELATED", 81 !equivalence.equivalent(item, unrelated));
|
/external/chromium_org/ui/gfx/image/ |
image_skia_unittest.cc | 232 ImageSkia unrelated; local 233 EXPECT_TRUE(image.BackedBySameObjectAs(unrelated)); 240 unrelated.AddRepresentation(gfx::ImageSkiaRep(gfx::Size(10, 10), 243 EXPECT_FALSE(image.BackedBySameObjectAs(unrelated)); 244 EXPECT_FALSE(copy.BackedBySameObjectAs(unrelated));
|
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/ |
ContentResolverTest.java | 342 final Uri unrelated = Uri.parse("content://unrelated/some/path"); local 349 assertNull(contentResolver.query(unrelated, null, null, null, null)); 350 assertNotNull(contentResolver.insert(unrelated, new ContentValues())); 351 assertThat(contentResolver.delete(unrelated, null, null), is(1)); 352 assertThat(contentResolver.update(unrelated, new ContentValues(), null, null), is(0));
|
/external/chromium_org/ash/wm/ |
system_modal_container_layout_manager_unittest.cc | 253 // Tests that we can activate an unrelated window after a modal window is closed 256 scoped_ptr<aura::Window> unrelated(OpenToplevelTestWindow(false)); 257 unrelated->SetBounds(gfx::Rect(100, 100, 50, 50)); 281 // Attempting to click unrelated should activate it. 282 aura::test::EventGenerator e2(Shell::GetPrimaryRootWindow(), unrelated.get()); 284 EXPECT_TRUE(wm::IsActiveWindow(unrelated.get()));
|
/external/chromium_org/v8/test/mjsunit/regress/ |
regress-prepare-break-while-recompile.js | 53 // Set break points on an unrelated function. This clears both optimized
|
/external/chromium_org/chrome/browser/ui/webui/options/ |
options_browsertest.js | 595 // Open an unrelated layer-2 overlay. 707 // Going back to an unrelated overlay should close the overlay and its parent. 709 // Open a layer-1 overlay, then an unrelated layer-2 overlay.
|
/external/e2fsprogs/lib/et/ |
texinfo.tex | 56 %Mere aggregation of another unrelated program with this program (or its [all...] |
/external/chromium_org/v8/test/mjsunit/ |
unicode-test.js | [all...] |
/external/v8/test/mjsunit/ |
unicode-test.js | [all...] |