Home
last modified time | relevance | path

Searched refs:not_equal_to (Results 1 – 16 of 16) sorted by relevance

/external/libcxx/test/utilities/function.objects/comparisons/
Dnot_equal_to.pass.cpp20 typedef std::not_equal_to<int> F; in main()
26 typedef std::not_equal_to<> F2; in main()
35 constexpr bool foo = std::not_equal_to<int> () (36, 36); in main()
38 constexpr bool bar = std::not_equal_to<> () (36.0, 36); in main()
Dtransparent.pass.cpp43 static_assert ( !is_transparent<std::not_equal_to<int>>::value, "" ); in main()
44 static_assert ( !is_transparent<std::not_equal_to<std::string>>::value, "" ); in main()
45 static_assert ( is_transparent<std::not_equal_to<void>>::value, "" ); in main()
46 static_assert ( is_transparent<std::not_equal_to<>>::value, "" ); in main()
DAndroid.mk23 test_name := utilities/function.objects/comparisons/not_equal_to
24 test_src := not_equal_to.pass.cpp
/external/libcxx/test/algorithms/alg.nonmodifying/alg.find/
Dfind_if_not.pass.cpp29 std::bind2nd(std::not_equal_to<int>(), 3)); in main()
33 std::bind2nd(std::not_equal_to<int>(), 10)); in main()
/external/eigen/Eigen/src/Eigen2Support/
DCwiseOperators.h202 inline const EIGEN_CWISE_BINOP_RETURN_TYPE(std::not_equal_to)
205 return EIGEN_CWISE_BINOP_RETURN_TYPE(std::not_equal_to)(_expression(), other.derived());
257 inline const EIGEN_CWISE_COMP_TO_SCALAR_RETURN_TYPE(std::not_equal_to)
260 return EIGEN_CWISE_COMP_TO_SCALAR_RETURN_TYPE(std::not_equal_to)(_expression(),
DCwise.h132 template<typename OtherDerived> const EIGEN_CWISE_BINOP_RETURN_TYPE(std::not_equal_to)
151 const EIGEN_CWISE_COMP_TO_SCALAR_RETURN_TYPE(std::not_equal_to)
/external/eigen/Eigen/src/plugins/
DMatrixCwiseBinaryOps.h59 inline const CwiseBinaryOp<std::not_equal_to<Scalar>, const Derived, const OtherDerived>
62 …return CwiseBinaryOp<std::not_equal_to<Scalar>, const Derived, const OtherDerived>(derived(), othe… in cwiseNotEqual()
DArrayCwiseUnaryOps.h197 EIGEN_MAKE_SCALAR_CWISE_UNARY_OP(operator!=, std::not_equal_to)
DArrayCwiseBinaryOps.h135 EIGEN_MAKE_CWISE_BINARY_OP(operator!=,std::not_equal_to)
/external/stlport/test/unit/
Dneq_test.cpp48 transform((int*)input1, (int*)input1 + 4, (int*)input2, (int*)output, not_equal_to<int>()); in nequal0()
/external/oprofile/libutil++/
Dgrowable_vector.h97 std::bind2nd(std::not_equal_to<T>(), T())) in zero()
/external/llvm/include/llvm/CodeGen/PBQP/
DMath.h378 std::bind2nd(std::not_equal_to<PBQPNum>(), 0)) == in isZero()
/external/stlport/stlport/stl/
D_function.h44 struct not_equal_to : public binary_function<_Tp, _Tp, bool> { struct
/external/libcxx/include/
Dvalarray4232 __val_expr<_BinaryOp<not_equal_to<typename _Expr1::value_type>, _Expr1, _Expr2> >
4237 typedef _BinaryOp<not_equal_to<value_type>, _Expr1, _Expr2> _Op;
4238 return __val_expr<_Op>(_Op(not_equal_to<value_type>(), __x, __y));
4246 __val_expr<_BinaryOp<not_equal_to<typename _Expr::value_type>,
4252 typedef _BinaryOp<not_equal_to<value_type>, _Expr, __scalar_expr<value_type> > _Op;
4253 return __val_expr<_Op>(_Op(not_equal_to<value_type>(),
4262 __val_expr<_BinaryOp<not_equal_to<typename _Expr::value_type>,
4268 typedef _BinaryOp<not_equal_to<value_type>, __scalar_expr<value_type>, _Expr> _Op;
4269 return __val_expr<_Op>(_Op(not_equal_to<value_type>(),
Dfunctional114 struct not_equal_to : binary_function<T, T, bool>
668 struct _LIBCPP_TYPE_VIS_ONLY not_equal_to : binary_function<_Tp, _Tp, bool>
677 struct _LIBCPP_TYPE_VIS_ONLY not_equal_to<void>
/external/eigen/Eigen/src/Core/
DFunctors.h928 struct functor_traits<std::not_equal_to<T> >