/external/chromium_org/third_party/WebKit/Source/wtf/ |
HashSetTest.cpp | 42 HashSet<int, DefaultHash<int>::Hash, InitialCapacityTestHashTraits<initialCapacity> > testSet; 45 ASSERT_EQ(0UL, testSet.capacity()); 49 testSet.add(i); 50 ASSERT_EQ(initialCapacity, testSet.capacity()); 56 testSet.add(i); 57 ASSERT_EQ(initialCapacity, testSet.capacity()); 61 testSet.add(initialCapacity); 62 EXPECT_GT(testSet.capacity(), initialCapacity);
|
/external/stlport/test/eh/ |
test_hash_set.cpp | 80 typedef EH_STD::__hash_set__<TestClass, ThrowHash, ThrowEqual, eh_allocator(TestClass) > TestSet; 83 container_category(const TestSet&) 91 TestSet testSet, testSet2; 95 while ( testSet.size() < hash_setSize ) 97 TestSet::value_type x; 98 testSet.insert( x ); 99 testSet2.insert( TestSet::value_type() ); 103 WeakCheck( testSet, test_hash_resize<TestSet>() ); [all...] |
test_set.cpp | 68 typedef EH_STD::__set__<TestClass, ThrowCompare, eh_allocator(TestClass) > TestSet; 71 container_category(const TestSet&) { 76 TestSet testSet, testSet2; 80 while ( testSet.size() < setSize ) { 81 TestSet::value_type x; 82 testSet.insert( x ); 83 testSet2.insert( TestSet::value_type() ); 85 StrongCheck( testSet, test_insert_value<TestSet>(testSet) ) [all...] |
/external/chromium_org/v8/test/webkit/fast/regex/ |
unicodeCaseInsensitive.js | 42 function testSet(set) 51 testSet([ 0x01c4, 0x01c5, 0x01c6 ]); 52 testSet([ 0x01c7, 0x01c8, 0x01c9 ]); 53 testSet([ 0x01ca, 0x01cb, 0x01cc ]); 54 testSet([ 0x01f1, 0x01f2, 0x01f3 ]); 55 testSet([ 0x0392, 0x03b2, 0x03d0 ]); 56 testSet([ 0x0395, 0x03b5, 0x03f5 ]); 57 testSet([ 0x0398, 0x03b8, 0x03d1 ]); 58 testSet([ 0x0345, 0x0399, 0x03b9, 0x1fbe ]); 59 testSet([ 0x039a, 0x03ba, 0x03f0 ]) [all...] |
/external/skia/tests/ |
PathOpsQuadReduceOrderTest.cpp | 13 static const SkDQuad testSet[] = { 18 static const size_t testSetCount = SK_ARRAY_COUNT(testSet); 22 const SkDQuad& quad = testSet[index];
|
PathOpsQuadIntersectionTest.cpp | 55 static const SkDQuad testSet[] = { 259 const size_t testSetCount = SK_ARRAY_COUNT(testSet); 262 const SkDQuad& quad1 = testSet[outer]; 264 const SkDQuad& quad2 = testSet[inner]; 405 const SkDQuad& quad1 = testSet[test1]; 406 const SkDQuad& quad2 = testSet[test2];
|
PathOpsCubicIntersectionTest.cpp | 66 static const SkDCubic testSet[] = { 162 const size_t testSetCount = SK_ARRAY_COUNT(testSet); 364 const SkDCubic& cubic1 = testSet[outer]; 365 const SkDCubic& cubic2 = testSet[inner];
|
/external/guava/guava-tests/test/com/google/common/collect/ |
CountTest.java | 49 public void testSet(){
|
UnmodifiableListIteratorTest.java | 58 public void testSet() {
|
/external/chromium_org/v8/test/webkit/ |
instance-of-immediates.js | 31 function testSet(constructor, testMethod) 40 testSet("1", { "1":shouldThrow, "{}":shouldThrow, "obj":shouldThrow }); 44 testSet("{}", { "1":shouldThrow, "{}":shouldThrow, "obj":shouldThrow }); 48 testSet("Constructor", { "1":shouldBeFalse, "{}":shouldBeFalse, "obj":shouldBeTrue }); 53 testSet("Constructor", { "1":shouldBeFalse, "{}":shouldThrow, "obj":shouldThrow }); 58 testSet("Constructor", { "1":shouldBeFalse, "{}":shouldBeFalse, "obj":shouldBeFalse }); 63 testSet("Constructor", { "1":shouldBeFalse, "{}":shouldThrow, "obj":shouldThrow });
|
/cts/tests/tests/graphics/src/android/graphics/cts/ |
PointTest.java | 46 public void testSet() {
|
/cts/tests/tests/text/src/android/text/cts/ |
TextPaintTest.java | 42 public void testSet() {
|
/external/chromium_org/third_party/icu/source/test/intltest/ |
usettest.h | 95 const UnicodeSet& testSet); 97 UBool checkPat(const UnicodeString& source, const UnicodeSet& testSet, const UnicodeString& pat);
|
/external/icu4c/test/intltest/ |
usettest.h | 95 const UnicodeSet& testSet); 97 UBool checkPat(const UnicodeString& source, const UnicodeSet& testSet, const UnicodeString& pat);
|
/frameworks/base/tests/RenderScriptTests/PerfTest/src/com/android/perftest/ |
RsBenchRS.java | 114 void appendTests(RsBenchBaseTest testSet) { 115 ScriptField_TestScripts_s.Item[] newTests = testSet.getTests(); 126 String[] newNames = testSet.getTestNames();
|
/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/ |
ListSetTester.java | 41 public void testSet() {
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/api/ |
PointTest.java | 40 public final void testSet() {
|
/external/v8/test/mjsunit/harmony/ |
collections.js | 66 function TestSet(set, key) { 75 TestSet(set, new Object); 76 TestSet(set, i); 77 TestSet(set, i / 100); 78 TestSet(set, 'key-' + i); 82 TestSet(set, keys[i]); 295 function TestBogusReceivers(testSet) { 296 for (var i = 0; i < testSet.length; i++) { 297 var proto = testSet[i].proto; 298 var funcs = testSet[i].funcs [all...] |
/cts/tests/tests/view/src/android/view/animation/cts/ |
TransformationTest.java | 103 public void testSet() {
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/ |
ConcurrentModTest.java | 64 public void testSet() {
|
/libcore/luni/src/test/java/libcore/java/util/ |
OldListIteratorTest.java | 173 public void testSet() {
|
/external/chromium_org/v8/test/mjsunit/harmony/ |
collections.js | 67 function TestSet(set, key) { 78 TestSet(set, new Object); 79 TestSet(set, i); 80 TestSet(set, i / 100); 81 TestSet(set, 'key-' + i); 85 TestSet(set, keys[i]); 89 TestSet(new WeakSet, new Object); 378 function TestBogusReceivers(testSet) { 379 for (var i = 0; i < testSet.length; i++) { 380 var proto = testSet[i].proto [all...] |
/cts/tests/tests/renderscript/src/android/renderscript/cts/ |
Matrix2fTest.java | 85 public void testSet() {
|
Matrix3fTest.java | 86 public void testSet() {
|
Matrix4fTest.java | 88 public void testSet() {
|