Searched refs:root2 (Results 1 – 7 of 7) sorted by relevance
/external/libweave/third_party/chromium/base/json/ |
D | json_reader_unittest.cc | 252 scoped_ptr<Value> root2 = in TEST() local 254 EXPECT_TRUE(root->Equals(root2.get())); in TEST() 271 root2 = JSONReader::Read("[[true], [], [false, [], [null, ] , ], null,]", in TEST() 273 EXPECT_TRUE(root->Equals(root2.get())); in TEST() 337 root2 = JSONReader::Read( in TEST() 340 ASSERT_TRUE(root2.get()); in TEST() 341 EXPECT_TRUE(root->Equals(root2.get())); in TEST() 344 root2 = JSONReader::Read( in TEST() 351 ASSERT_TRUE(root2.get()); in TEST() 352 EXPECT_TRUE(root->Equals(root2.get())); in TEST() [all …]
|
/external/libchrome/base/json/ |
D | json_reader_unittest.cc | 257 scoped_ptr<Value> root2 = in TEST() local 259 EXPECT_TRUE(root->Equals(root2.get())); in TEST() 276 root2 = JSONReader::Read("[[true], [], [false, [], [null, ] , ], null,]", in TEST() 278 EXPECT_TRUE(root->Equals(root2.get())); in TEST() 342 root2 = JSONReader::Read( in TEST() 345 ASSERT_TRUE(root2.get()); in TEST() 346 EXPECT_TRUE(root->Equals(root2.get())); in TEST() 349 root2 = JSONReader::Read( in TEST() 356 ASSERT_TRUE(root2.get()); in TEST() 357 EXPECT_TRUE(root->Equals(root2.get())); in TEST() [all …]
|
/external/ceres-solver/internal/ceres/ |
D | graph_algorithms.h | 333 Vertex root2 = FindConnectedComponent(vertex2, &disjoint_set); in Degree2MaximumSpanningForest() local 335 if (root1 == root2) { in Degree2MaximumSpanningForest() 350 if (root2 < root1) { in Degree2MaximumSpanningForest() 351 std::swap(root1, root2); in Degree2MaximumSpanningForest() 354 disjoint_set[root2] = root1; in Degree2MaximumSpanningForest()
|
/external/jmonkeyengine/engine/src/core/com/jme3/math/ |
D | Eigen3f.java | 357 double root2 = char2Div3 - magnitude in computeRoots() local 369 if (root2 >= rootsStore[1]) { in computeRoots() 370 rootsStore[2] = root2; in computeRoots() 373 if (root2 >= rootsStore[0]) { in computeRoots() 374 rootsStore[1] = root2; in computeRoots() 377 rootsStore[0] = root2; in computeRoots()
|
/external/opencv/cxcore/src/ |
D | cxdatastructs.cpp | 2677 CvPTreeNode* root2 = node2; in cvSeqPartition() local 2680 while( root2->parent ) in cvSeqPartition() 2681 root2 = root2->parent; in cvSeqPartition() 2683 if( root2 != root ) in cvSeqPartition() 2685 if( root->rank > root2->rank ) in cvSeqPartition() 2686 root2->parent = root; in cvSeqPartition() 2689 root->parent = root2; in cvSeqPartition() 2690 root2->rank += root->rank == root2->rank; in cvSeqPartition() 2691 root = root2; in cvSeqPartition()
|
/external/v8/test/cctest/ |
D | test-serialize.cc | 329 Handle<Object> root2; in UNINITIALIZED_TEST() local 333 root2 = deserializer.DeserializePartial(isolate, global_proxy) in UNINITIALIZED_TEST() 335 CHECK(root2->IsString()); in UNINITIALIZED_TEST() 336 CHECK(root.is_identical_to(root2)); in UNINITIALIZED_TEST() 426 Handle<Object> root2; in UNINITIALIZED_TEST() local 430 root2 = deserializer.DeserializePartial(isolate, global_proxy) in UNINITIALIZED_TEST() 432 CHECK(root2->IsContext()); in UNINITIALIZED_TEST() 433 CHECK(!root.is_identical_to(root2)); in UNINITIALIZED_TEST()
|
D | test-heap-profiler.cc | 844 const v8::HeapGraphNode* root2 = snapshot->GetRoot(); in TEST() local 845 CHECK_EQ(root1, root2); in TEST()
|