HomeSort by relevance Sort by last modified time
    Searched full:distance (Results 76 - 100 of 3970) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/libcxx/test/std/containers/unord/unord.multimap/
local_iterators.pass.cpp 49 assert(std::distance(i, j) == 0);
54 assert(std::distance(i, j) == 2);
64 assert(std::distance(i, j) == 2);
74 assert(std::distance(i, j) == 1);
81 assert(std::distance(i, j) == 1);
88 assert(std::distance(i, j) == 0);
93 assert(std::distance(i, j) == 0);
113 assert(std::distance(i, j) == 0);
118 assert(std::distance(i, j) == 2);
128 assert(std::distance(i, j) == 2)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.multimap/
local_iterators.pass.cpp 49 assert(std::distance(i, j) == 0);
54 assert(std::distance(i, j) == 2);
64 assert(std::distance(i, j) == 2);
74 assert(std::distance(i, j) == 1);
81 assert(std::distance(i, j) == 1);
88 assert(std::distance(i, j) == 0);
93 assert(std::distance(i, j) == 0);
113 assert(std::distance(i, j) == 0);
118 assert(std::distance(i, j) == 2);
128 assert(std::distance(i, j) == 2)
    [all...]
  /external/libcxx/test/std/containers/sequences/forwardlist/forwardlist.modifiers/
clear.pass.cpp 27 assert(distance(c.begin(), c.end()) == 0);
36 assert(distance(c.begin(), c.end()) == 0);
39 assert(distance(c.begin(), c.end()) == 0);
47 assert(distance(c.begin(), c.end()) == 0);
56 assert(distance(c.begin(), c.end()) == 0);
59 assert(distance(c.begin(), c.end()) == 0);
insert_after_const.pass.cpp 30 assert(distance(c.begin(), c.end()) == 1);
36 assert(distance(c.begin(), c.end()) == 2);
43 assert(distance(c.begin(), c.end()) == 3);
51 assert(distance(c.begin(), c.end()) == 4);
63 assert(distance(c.begin(), c.end()) == 1);
69 assert(distance(c.begin(), c.end()) == 2);
76 assert(distance(c.begin(), c.end()) == 3);
84 assert(distance(c.begin(), c.end()) == 4);
insert_after_rv.pass.cpp 32 assert(distance(c.begin(), c.end()) == 1);
38 assert(distance(c.begin(), c.end()) == 2);
45 assert(distance(c.begin(), c.end()) == 3);
53 assert(distance(c.begin(), c.end()) == 4);
65 assert(distance(c.begin(), c.end()) == 1);
71 assert(distance(c.begin(), c.end()) == 2);
78 assert(distance(c.begin(), c.end()) == 3);
86 assert(distance(c.begin(), c.end()) == 4);
  /external/libcxx/test/std/containers/sequences/forwardlist/forwardlist.spec/
member_swap.pass.cpp 32 assert(distance(c1.begin(), c1.end()) == 3);
38 assert(distance(c2.begin(), c2.end()) == 6);
56 assert(distance(c1.begin(), c1.end()) == 0);
59 assert(distance(c2.begin(), c2.end()) == 6);
77 assert(distance(c1.begin(), c1.end()) == 3);
83 assert(distance(c2.begin(), c2.end()) == 0);
94 assert(distance(c1.begin(), c1.end()) == 0);
97 assert(distance(c2.begin(), c2.end()) == 0);
111 assert(distance(c1.begin(), c1.end()) == 3);
117 assert(distance(c2.begin(), c2.end()) == 6)
    [all...]
non_member_swap.pass.cpp 33 assert(distance(c1.begin(), c1.end()) == 3);
39 assert(distance(c2.begin(), c2.end()) == 6);
57 assert(distance(c1.begin(), c1.end()) == 0);
60 assert(distance(c2.begin(), c2.end()) == 6);
78 assert(distance(c1.begin(), c1.end()) == 3);
84 assert(distance(c2.begin(), c2.end()) == 0);
95 assert(distance(c1.begin(), c1.end()) == 0);
98 assert(distance(c2.begin(), c2.end()) == 0);
112 assert(distance(c1.begin(), c1.end()) == 3);
118 assert(distance(c2.begin(), c2.end()) == 6)
    [all...]
  /external/libcxx/test/std/containers/unord/unord.multimap/unord.multimap.cnstr/
init.pass.cpp 50 assert(std::distance(eq.first, eq.second) == 2);
58 assert(std::distance(eq.first, eq.second) == 2);
67 assert(std::distance(eq.first, eq.second) == 1);
72 assert(std::distance(eq.first, eq.second) == 1);
76 assert(std::distance(c.begin(), c.end()) == c.size());
77 assert(std::distance(c.cbegin(), c.cend()) == c.size());
104 assert(std::distance(eq.first, eq.second) == 2);
112 assert(std::distance(eq.first, eq.second) == 2);
121 assert(std::distance(eq.first, eq.second) == 1);
126 assert(std::distance(eq.first, eq.second) == 1)
    [all...]
  /external/libcxx/test/std/iterators/stream.iterators/istream.iterator/istream.iterator.ops/
equal.pass.cpp 14 // template <class T, class charT, class traits, class Distance>
15 // bool operator==(const istream_iterator<T,charT,traits,Distance> &x,
16 // const istream_iterator<T,charT,traits,Distance> &y);
18 // template <class T, class charT, class traits, class Distance>
19 // bool operator!=(const istream_iterator<T,charT,traits,Distance> &x,
20 // const istream_iterator<T,charT,traits,Distance> &y);
  /external/opencv3/modules/shape/include/opencv2/shape/
shape_distance.hpp 56 /** @brief Abstract base class for shape distance algorithms.
61 /** @brief Compute the shape distance between two shapes defined by its contours.
114 /** @brief Set the weight of the shape context distance in the final value of the shape distance. The shape
115 context distance between two shapes is defined as the symmetric sum of shape context matching costs
116 over best matching points. The final value of the shape distance is a user-defined linear
117 combination of the shape context distance, an image appearance distance, and a bending energy.
119 @param shapeContextWeight The weight of the shape context distance in the final distance value
    [all...]
  /frameworks/support/v17/leanback/tests/java/android/support/v17/leanback/widget/
PagingIndicatorTest.java 72 int distance = selectedX[1] - selectedX[0]; local
74 assertEquals("Gaps between selected dots are not even", distance,
77 distance = leftX[1] - leftX[0];
79 assertEquals("Gaps between left dots are not even", distance,
82 distance = rightX[2] - rightX[1];
84 assertEquals("Gaps between right dots are not even", distance,
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/forwardlist/forwardlist.modifiers/
clear.pass.cpp 27 assert(distance(c.begin(), c.end()) == 0);
36 assert(distance(c.begin(), c.end()) == 0);
39 assert(distance(c.begin(), c.end()) == 0);
47 assert(distance(c.begin(), c.end()) == 0);
56 assert(distance(c.begin(), c.end()) == 0);
59 assert(distance(c.begin(), c.end()) == 0);
insert_after_const.pass.cpp 30 assert(distance(c.begin(), c.end()) == 1);
36 assert(distance(c.begin(), c.end()) == 2);
43 assert(distance(c.begin(), c.end()) == 3);
51 assert(distance(c.begin(), c.end()) == 4);
63 assert(distance(c.begin(), c.end()) == 1);
69 assert(distance(c.begin(), c.end()) == 2);
76 assert(distance(c.begin(), c.end()) == 3);
84 assert(distance(c.begin(), c.end()) == 4);
pop_front.pass.cpp 30 assert(distance(c.begin(), c.end()) == 1);
33 assert(distance(c.begin(), c.end()) == 0);
43 assert(distance(c.begin(), c.end()) == 1);
46 assert(distance(c.begin(), c.end()) == 0);
58 assert(distance(c.begin(), c.end()) == 1);
61 assert(distance(c.begin(), c.end()) == 0);
71 assert(distance(c.begin(), c.end()) == 1);
74 assert(distance(c.begin(), c.end()) == 0);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/forwardlist/forwardlist.spec/
member_swap.pass.cpp 32 assert(distance(c1.begin(), c1.end()) == 3);
38 assert(distance(c2.begin(), c2.end()) == 6);
56 assert(distance(c1.begin(), c1.end()) == 0);
59 assert(distance(c2.begin(), c2.end()) == 6);
77 assert(distance(c1.begin(), c1.end()) == 3);
83 assert(distance(c2.begin(), c2.end()) == 0);
94 assert(distance(c1.begin(), c1.end()) == 0);
97 assert(distance(c2.begin(), c2.end()) == 0);
111 assert(distance(c1.begin(), c1.end()) == 3);
117 assert(distance(c2.begin(), c2.end()) == 6)
    [all...]
non_member_swap.pass.cpp 33 assert(distance(c1.begin(), c1.end()) == 3);
39 assert(distance(c2.begin(), c2.end()) == 6);
57 assert(distance(c1.begin(), c1.end()) == 0);
60 assert(distance(c2.begin(), c2.end()) == 6);
78 assert(distance(c1.begin(), c1.end()) == 3);
84 assert(distance(c2.begin(), c2.end()) == 0);
95 assert(distance(c1.begin(), c1.end()) == 0);
98 assert(distance(c2.begin(), c2.end()) == 0);
112 assert(distance(c1.begin(), c1.end()) == 3);
118 assert(distance(c2.begin(), c2.end()) == 6)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.multimap/unord.multimap.cnstr/
init.pass.cpp 50 assert(std::distance(eq.first, eq.second) == 2);
58 assert(std::distance(eq.first, eq.second) == 2);
67 assert(std::distance(eq.first, eq.second) == 1);
72 assert(std::distance(eq.first, eq.second) == 1);
76 assert(std::distance(c.begin(), c.end()) == c.size());
77 assert(std::distance(c.cbegin(), c.cend()) == c.size());
104 assert(std::distance(eq.first, eq.second) == 2);
112 assert(std::distance(eq.first, eq.second) == 2);
121 assert(std::distance(eq.first, eq.second) == 1);
126 assert(std::distance(eq.first, eq.second) == 1)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/stream.iterators/istream.iterator/istream.iterator.ops/
equal.pass.cpp 14 // template <class T, class charT, class traits, class Distance>
15 // bool operator==(const istream_iterator<T,charT,traits,Distance> &x,
16 // const istream_iterator<T,charT,traits,Distance> &y);
18 // template <class T, class charT, class traits, class Distance>
19 // bool operator!=(const istream_iterator<T,charT,traits,Distance> &x,
20 // const istream_iterator<T,charT,traits,Distance> &y);
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g2d/
DistanceFieldFont.java 30 /** Renders bitmap fonts using distance field textures, see the <a
31 * href="https://github.com/libgdx/libgdx/wiki/Distance-field-fonts">Distance Field Fonts wiki article</a> for usage. Initialize
74 // Distance field font rendering requires font texture to be filtered linear.
85 /** @return The distance field smoothing factor for this font. */
90 /** @param distanceFieldSmoothing Set the distance field smoothing factor for this font. SpriteBatch needs to have this shader
91 * set for rendering distance field fonts. */
96 /** Returns a new instance of the distance field shader, see https://github.com/libgdx/libgdx/wiki/Distance-field-fonts if the
126 + " float distance = texture2D(u_texture, v_texCoords).a;\n" /
    [all...]
  /external/opencv3/modules/cudafeatures2d/src/cuda/
bf_knnmatch.cu 411 const PtrStepSz<int2>& trainIdx, const PtrStepSz<float2>& distance,
419 matchUnrolledCached<BLOCK_SIZE, MAX_DESC_LEN, Dist><<<grid, block, smemSize, stream>>>(query, train, mask, trainIdx.data, distance.data);
472 const PtrStepSz<int2>& trainIdx, const PtrStepSz<int2>& imgIdx, const PtrStepSz<float2>& distance,
480 matchUnrolledCached<BLOCK_SIZE, MAX_DESC_LEN, Dist><<<grid, block, smemSize, stream>>>(query, trains, n, mask, trainIdx.data, imgIdx.data, distance.data);
588 const PtrStepSz<int2>& trainIdx, const PtrStepSz<float2>& distance,
596 matchUnrolled<BLOCK_SIZE, MAX_DESC_LEN, Dist><<<grid, block, smemSize, stream>>>(query, train, mask, trainIdx.data, distance.data);
647 const PtrStepSz<int2>& trainIdx, const PtrStepSz<int2>& imgIdx, const PtrStepSz<float2>& distance,
655 matchUnrolled<BLOCK_SIZE, MAX_DESC_LEN, Dist><<<grid, block, smemSize, stream>>>(query, trains, n, mask, trainIdx.data, imgIdx.data, distance.data);
762 const PtrStepSz<int2>& trainIdx, const PtrStepSz<float2>& distance,
770 match<BLOCK_SIZE, Dist><<<grid, block, smemSize, stream>>>(query, train, mask, trainIdx.data, distance.data)
    [all...]
  /external/ImageMagick/PerlMagick/demo/
tree.pl 17 distance => 18.5,
26 distance => 3,
  /external/eigen/doc/snippets/
Tutorial_Map_using.cpp 15 cout << "Squared euclidean distance: " << (m1-m2).squaredNorm() << endl;
16 cout << "Squared euclidean distance, using map: " <<
  /external/libcxx/test/std/containers/sequences/list/list.capacity/
resize_size.pass.cpp 25 assert(std::distance(l.begin(), l.end()) == 2);
32 assert(std::distance(l.begin(), l.end()) == 10);
41 assert(std::distance(l.begin(), l.end()) == 5);
47 assert(std::distance(l.begin(), l.end()) == 20);
55 assert(std::distance(l.begin(), l.end()) == 2);
62 assert(std::distance(l.begin(), l.end()) == 10);
71 assert(std::distance(l.begin(), l.end()) == 5);
77 assert(std::distance(l.begin(), l.end()) == 20);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/list/list.capacity/
resize_size.pass.cpp 25 assert(std::distance(l.begin(), l.end()) == 2);
32 assert(std::distance(l.begin(), l.end()) == 10);
41 assert(std::distance(l.begin(), l.end()) == 5);
47 assert(std::distance(l.begin(), l.end()) == 20);
55 assert(std::distance(l.begin(), l.end()) == 2);
62 assert(std::distance(l.begin(), l.end()) == 10);
71 assert(std::distance(l.begin(), l.end()) == 5);
77 assert(std::distance(l.begin(), l.end()) == 20);
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/
distance_fwd.hpp 21 BOOST_MPL_AUX_COMMON_NAME_WKND(distance)
24 template< typename First, typename Last > struct distance;

Completed in 2057 milliseconds

1 2 34 5 6 7 8 91011>>