HomeSort by relevance Sort by last modified time
    Searched defs:testSet (Results 1 - 25 of 57) sorted by null

1 2 3

  /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/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 });
  /external/chromium_org/chrome/common/extensions/docs/server2/
cache_chain_object_store_test.py 135 def testSet(self):
  /external/chromium_org/third_party/skia/experimental/Intersection/
QuadraticBezierClip_Test.cpp 11 static const Quadratic testSet[] = {
29 const Quadratic& quad1 = testSet[2];
30 const Quadratic& quad2 = testSet[3];
38 const Quadratic& quad1 = testSet[0];
39 const Quadratic& quad2 = testSet[1];
MiniSimplify_Test.cpp 28 struct curve* testSet[] = {
33 size_t testSet_count = sizeof(testSet) / sizeof(testSet[0]);
37 const curve* test = testSet[idx];
QuadraticReduceOrder_Test.cpp 12 static const Quadratic testSet[] = {
17 static const size_t testSetCount = sizeof(testSet) / sizeof(testSet[0]);
23 const Quadratic& quad = testSet[index];
  /external/guava/guava-tests/test/com/google/common/collect/
CountTest.java 49 public void testSet(){
UnmodifiableListIteratorTest.java 58 public void testSet() {
  /external/skia/experimental/Intersection/
QuadraticBezierClip_Test.cpp 11 static const Quadratic testSet[] = {
29 const Quadratic& quad1 = testSet[2];
30 const Quadratic& quad2 = testSet[3];
38 const Quadratic& quad1 = testSet[0];
39 const Quadratic& quad2 = testSet[1];
MiniSimplify_Test.cpp 28 struct curve* testSet[] = {
33 size_t testSet_count = sizeof(testSet) / sizeof(testSet[0]);
37 const curve* test = testSet[idx];
QuadraticReduceOrder_Test.cpp 12 static const Quadratic testSet[] = {
17 static const size_t testSetCount = sizeof(testSet) / sizeof(testSet[0]);
23 const Quadratic& quad = testSet[index];
  /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/third_party/skia/bench/
GrOrderedSetBench.cpp 127 GrOrderedSet<int> testSet;
129 testSet.insert(*s);
132 testSet.remove(testSet.find(j));
  /external/chromium_org/third_party/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];
  /external/skia/bench/
GrOrderedSetBench.cpp 127 GrOrderedSet<int> testSet;
129 testSet.insert(*s);
132 testSet.remove(testSet.find(j));
  /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];
  /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/guava/guava-testlib/src/com/google/common/collect/testing/testers/
ListSetTester.java 41 public void testSet() {
  /cts/tests/tests/view/src/android/view/animation/cts/
TransformationTest.java 103 public void testSet() {
  /external/chromium_org/third_party/WebKit/Source/wtf/
HashSetTest.cpp 45 HashSet<int, DefaultHash<int>::Hash, InitialCapacityTestHashTraits<initialCapacity> > testSet;
48 EXPECT_EQ(0UL, testSet.capacity());
52 testSet.add(i);
53 EXPECT_EQ(initialCapacity, testSet.capacity());
59 testSet.add(i);
60 EXPECT_EQ(initialCapacity, testSet.capacity());
64 testSet.add(initialCapacity);
65 EXPECT_GT(testSet.capacity(), initialCapacity);
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/api/
PointTest.java 40 public final void testSet() {
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
Matrix2fTest.java 85 public void testSet() {
Matrix3fTest.java 86 public void testSet() {

Completed in 542 milliseconds

1 2 3