HomeSort by relevance Sort by last modified time
    Searched refs:greater (Results 76 - 100 of 270) sorted by null

1 2 34 5 6 7 8 91011

  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/ext/pb_ds/detail/bin_search_tree_/
split_join_fn_imps.hpp 57 const bool greater = Cmp_Fn::operator()(PB_DS_V2F(m_p_head->m_p_right->m_value), PB_DS_V2F(other.m_p_head->m_p_left->m_value)); local
61 if (!greater && !lesser)
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/bin_search_tree_/
split_join_fn_imps.hpp 57 const bool greater = Cmp_Fn::operator()(PB_DS_V2F(m_p_head->m_p_right->m_value), PB_DS_V2F(other.m_p_head->m_p_left->m_value)); local
61 if (!greater && !lesser)
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/bin_search_tree_/
split_join_fn_imps.hpp 57 const bool greater = Cmp_Fn::operator()(PB_DS_V2F(m_p_head->m_p_right->m_value), PB_DS_V2F(other.m_p_head->m_p_left->m_value)); local
61 if (!greater && !lesser)
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/bin_search_tree_/
split_join_fn_imps.hpp 57 const bool greater = Cmp_Fn::operator()(PB_DS_V2F(m_p_head->m_p_right->m_value), PB_DS_V2F(other.m_p_head->m_p_left->m_value)); local
61 if (!greater && !lesser)
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/ext/pb_ds/detail/bin_search_tree_/
split_join_fn_imps.hpp 57 const bool greater = Cmp_Fn::operator()(PB_DS_V2F(m_p_head->m_p_right->m_value), PB_DS_V2F(other.m_p_head->m_p_left->m_value)); local
61 if (!greater && !lesser)
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/pb_ds/detail/bin_search_tree_/
split_join_fn_imps.hpp 57 const bool greater = Cmp_Fn::operator()(PB_DS_V2F(m_p_head->m_p_right->m_value), PB_DS_V2F(other.m_p_head->m_p_left->m_value)); local
61 if (!greater && !lesser)
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/pb_ds/detail/bin_search_tree_/
split_join_fn_imps.hpp 57 const bool greater = local
65 if (!greater && !lesser)
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
Helpers.java 195 T greater = valuesInExpectedOrder.get(j);
196 assertTrue(comparator + ".compare(" + greater + ", " + t + ")",
197 comparator.compare(greater, t) > 0);
218 T greater = valuesInExpectedOrder.get(j);
219 assertTrue(greater + ".compareTo(" + t + ')', greater.compareTo(t) > 0);
220 assertFalse(greater.equals(t));
  /ndk/sources/cxx-stl/llvm-libc++/test/algorithms/alg.sorting/alg.merge/
merge_comp.pass.cpp 43 InIter2(ib), InIter2(ib+N), OutIter(ic), std::greater<int>());
47 assert(std::is_sorted(ic, ic+2*N, std::greater<int>()));
62 std::sort(ia, ia+N, std::greater<int>());
63 std::sort(ib, ib+N, std::greater<int>());
65 InIter2(ib), InIter2(ib+N), OutIter(ic), std::greater<int>());
69 assert(std::is_sorted(ic, ic+2*N, std::greater<int>()));
  /external/antlr/antlr-3.4/runtime/JavaScript/build/
README 4 * Java JRE 1.6 or greater.
5 * Apache Ant 1.7.0 or greater; see http://ant.apache.org/manual/install.html
  /external/clang/lib/Basic/
OperatorPrecedence.cpp 21 case tok::greater:
25 // greater-than operator. [...]
  /external/eigen/Eigen/src/Eigen2Support/
CwiseOperators.h 175 inline const EIGEN_CWISE_BINOP_RETURN_TYPE(std::greater)
178 return EIGEN_CWISE_BINOP_RETURN_TYPE(std::greater)(_expression(), other.derived());
230 inline const EIGEN_CWISE_COMP_TO_SCALAR_RETURN_TYPE(std::greater)
233 return EIGEN_CWISE_COMP_TO_SCALAR_RETURN_TYPE(std::greater)(_expression(),
  /external/stlport/test/unit/
func_test.cpp 71 sort(v.begin(), v.end(), greater<int>());
inplace_test.cpp 49 inplace_merge(v1.begin(), v1.begin() + 5, v1.end(), greater<size_t>());
nthelm_test.cpp 72 nth_element(v1.begin(), v1.begin() + v1.size() / 2, v1.end(), greater<int>());
alg_test.cpp 54 c = min('a', 'z', greater<char>());
56 i = max(4, 7, greater<int>());
163 slist<int>::iterator slit = search_n(slint.begin(), slint.end(), 2, 1, greater<int>());
173 list<int>::iterator lit = search_n(lint.begin(), lint.end(), 3, 2, greater<int>());
183 deque<int>::iterator dit = search_n(dint.begin(), dint.end(), 4, 3, greater<int>());
  /ndk/sources/cxx-stl/llvm-libc++/test/algorithms/alg.sorting/alg.nth.element/
nth_element_comp.pass.cpp 43 std::nth_element(array, array+M, array+N, std::greater<int>());
  /ndk/sources/cxx-stl/llvm-libc++/test/algorithms/alg.sorting/alg.sort/sort/
sort_comp.pass.cpp 40 std::sort(v.begin(), v.end(), std::greater<int>());
  /ndk/tests/device/test-gnustl-full/unit/
func_test.cpp 71 sort(v.begin(), v.end(), greater<int>());
inplace_test.cpp 49 inplace_merge(v1.begin(), v1.begin() + 5, v1.end(), greater<size_t>());
nthelm_test.cpp 72 nth_element(v1.begin(), v1.begin() + v1.size() / 2, v1.end(), greater<int>());
alg_test.cpp 54 c = min('a', 'z', greater<char>());
56 i = max(4, 7, greater<int>());
163 slist<int>::iterator slit = search_n(slint.begin(), slint.end(), 2, 1, greater<int>());
173 list<int>::iterator lit = search_n(lint.begin(), lint.end(), 3, 2, greater<int>());
183 deque<int>::iterator dit = search_n(dint.begin(), dint.end(), 4, 3, greater<int>());
  /ndk/tests/device/test-stlport/unit/
func_test.cpp 71 sort(v.begin(), v.end(), greater<int>());
inplace_test.cpp 49 inplace_merge(v1.begin(), v1.begin() + 5, v1.end(), greater<size_t>());
nthelm_test.cpp 72 nth_element(v1.begin(), v1.begin() + v1.size() / 2, v1.end(), greater<int>());

Completed in 415 milliseconds

1 2 34 5 6 7 8 91011