/external/ceres-solver/internal/ceres/ |
numeric_diff_cost_function_test.cc | 57 EasyFunctor functor; local 58 functor.ExpectCostFunctionEvaluationIsNearlyCorrect(*cost_function, CENTRAL); 70 EasyFunctor functor; local 71 functor.ExpectCostFunctionEvaluationIsNearlyCorrect(*cost_function, FORWARD); 83 EasyFunctor functor; local 84 functor.ExpectCostFunctionEvaluationIsNearlyCorrect(*cost_function, CENTRAL); 96 EasyFunctor functor; local 97 functor.ExpectCostFunctionEvaluationIsNearlyCorrect(*cost_function, FORWARD); 109 TranscendentalFunctor functor; local 110 functor.ExpectCostFunctionEvaluationIsNearlyCorrect(*cost_function, CENTRAL) 122 TranscendentalFunctor functor; local 135 TranscendentalFunctor functor; local 148 TranscendentalFunctor functor; local [all...] |
numeric_diff_functor_test.cc | 53 EasyFunctor functor; local 59 functor.ExpectCostFunctionEvaluationIsNearlyCorrect(*cost_function, CENTRAL); 64 functor.ExpectCostFunctionEvaluationIsNearlyCorrect(*cost_function, CENTRAL); 72 EasyFunctor functor; local 78 functor.ExpectCostFunctionEvaluationIsNearlyCorrect(*cost_function, FORWARD); 83 functor.ExpectCostFunctionEvaluationIsNearlyCorrect(*cost_function, FORWARD); 91 TranscendentalFunctor functor; local 97 functor.ExpectCostFunctionEvaluationIsNearlyCorrect(*cost_function, CENTRAL); 102 functor.ExpectCostFunctionEvaluationIsNearlyCorrect(*cost_function, CENTRAL); 110 TranscendentalFunctor functor; local [all...] |
autodiff_test.cc | 360 // Use a single functor, but tweak it to produce different numbers of 362 VaryingResidualFunctor functor; local 366 functor.num_residuals = num_residuals; 370 functor, parameters, num_residuals, residuals, jacobians))); 529 Residual1Param functor; local 532 functor, parameters, 1, &residual, jacobians))); 540 Residual2Param functor; local 543 functor, parameters, 1, &residual, jacobians))); 551 Residual3Param functor; local 554 functor, parameters, 1, &residual, jacobians))) 562 Residual4Param functor; local 573 Residual5Param functor; local 584 Residual6Param functor; local 597 Residual7Param functor; local 610 Residual8Param functor; local 623 Residual9Param functor; local 637 Residual10Param functor; local [all...] |
/external/chromium_org/third_party/skia/include/core/ |
SkTSearch.h | 34 // The most general form of SkTSearch takes an array of T and a key of type K. A functor, less, is 71 // Adapts a less-than function to a functor. 76 // Specialization for case when T==K and the caller wants to use a function rather than functor. 79 static SkTLessFunctionToFunctorAdaptor<T, LESS> functor; local 80 return SkTSearch(base, count, target, elemSize, functor); 83 // Adapts operator < to a functor. 91 static SkTLessFunctor<T> functor; local 92 return SkTSearch(base, count, target, elemSize, functor); 95 // Similar to SkLessFunctionToFunctorAdaptor but makes the functor interface take T* rather than T. 104 static SkTLessFunctionToPtrFunctorAdaptor<T, LESS> functor; local [all...] |
/external/skia/include/core/ |
SkTSearch.h | 34 // The most general form of SkTSearch takes an array of T and a key of type K. A functor, less, is 71 // Adapts a less-than function to a functor. 76 // Specialization for case when T==K and the caller wants to use a function rather than functor. 79 static SkTLessFunctionToFunctorAdaptor<T, LESS> functor; local 80 return SkTSearch(base, count, target, elemSize, functor); 83 // Adapts operator < to a functor. 91 static SkTLessFunctor<T> functor; local 92 return SkTSearch(base, count, target, elemSize, functor); 95 // Similar to SkLessFunctionToFunctorAdaptor but makes the functor interface take T* rather than T. 104 static SkTLessFunctionToPtrFunctorAdaptor<T, LESS> functor; local [all...] |
/external/chromium_org/third_party/WebKit/Source/core/css/ |
CSSSelectorList.cpp | 124 template <typename Functor> 125 static bool forEachTagSelector(Functor& functor, const CSSSelector* selector) 130 if (functor(selector)) 134 if (forEachTagSelector(functor, subSelector)) 143 template <typename Functor> 144 static bool forEachSelector(Functor& functor, const CSSSelectorList* selectorList) 147 if (forEachTagSelector(functor, selector)) 168 SelectorNeedsNamespaceResolutionFunctor functor; local 182 SelectorHasShadowDistributed functor; local 196 SelectorHasCombinatorCrossingTreeBoundary functor; local [all...] |
/external/eigen/Eigen/src/Core/ |
CwiseUnaryOp.h | 21 * \param UnaryOp template functor implementing the operator 73 /** \returns the functor representing the unary operation */ 74 const UnaryOp& functor() const { return m_functor; } function in class:Eigen::CwiseUnaryOp 103 return derived().functor()(derived().nestedExpression().coeff(row, col)); 109 return derived().functor().packetOp(derived().nestedExpression().template packet<LoadMode>(row, col)); 114 return derived().functor()(derived().nestedExpression().coeff(index)); 120 return derived().functor().packetOp(derived().nestedExpression().template packet<LoadMode>(index));
|
CwiseUnaryView.h | 20 * \param ViewOp template functor implementing the view 74 /** \returns the functor representing unary operation */ 75 const ViewOp& functor() const { return m_functor; } function in class:Eigen::CwiseUnaryView 114 return derived().functor()(derived().nestedExpression().coeff(row, col)); 119 return derived().functor()(derived().nestedExpression().coeff(index)); 124 return derived().functor()(const_cast_derived().nestedExpression().coeffRef(row, col)); 129 return derived().functor()(const_cast_derived().nestedExpression().coeffRef(index));
|
SelfCwiseBinaryOp.h | 158 const BinaryOp& functor() const function in class:Eigen::SelfCwiseBinaryOp
|
CwiseBinaryOp.h | 21 * \param BinaryOp template functor implementing the operator 89 // we require Lhs and Rhs to have the same scalar type. Currently there is no example of a binary functor 153 /** \returns the functor representing the binary operation */ 154 const BinaryOp& functor() const { return m_functor; } function in class:Eigen::CwiseBinaryOp 174 return derived().functor()(derived().lhs().coeff(row, col), 181 return derived().functor().packetOp(derived().lhs().template packet<LoadMode>(row, col), 187 return derived().functor()(derived().lhs().coeff(index), 194 return derived().functor().packetOp(derived().lhs().template packet<LoadMode>(index),
|
CwiseNullaryOp.h | 18 * \brief Generic expression of a matrix where all coefficients are defined by a functor 20 * \param NullaryOp template functor implementing the operator 91 /** \returns the functor representing the nullary operation */ 92 const NullaryOp& functor() const { return m_functor; } function in class:Eigen::CwiseNullaryOp 101 /** \returns an expression of a matrix defined by a custom functor \a func 110 * The template parameter \a CustomNullaryOp is the type of the functor. 122 /** \returns an expression of a matrix defined by a custom functor \a func 133 * The template parameter \a CustomNullaryOp is the type of the functor. 147 /** \returns an expression of a matrix defined by a custom functor \a func 152 * The template parameter \a CustomNullaryOp is the type of the functor [all...] |
/external/eigen/unsupported/test/ |
NumericalDiff.cpp | 11 // Generic functor 13 struct Functor 26 Functor() : m_inputs(InputsAtCompileTime), m_values(ValuesAtCompileTime) {} 27 Functor(int inputs, int values) : m_inputs(inputs), m_values(values) {} 34 struct my_functor : Functor<double> 36 my_functor(void): Functor<double>(3,15) {} 75 my_functor functor; local 80 functor.actual_df(x, actual_jac); 84 NumericalDiff<my_functor> numDiff(functor); 96 my_functor functor; local [all...] |
NonLinearOptimization.cpp | 103 // Generic functor 105 struct Functor 118 Functor() : m_inputs(InputsAtCompileTime), m_values(ValuesAtCompileTime) {} 119 Functor(int inputs, int values) : m_inputs(inputs), m_values(values) {} 128 struct lmder_functor : Functor<double> 130 lmder_functor(void): Functor<double>(3,15) {} 174 lmder_functor functor; local 175 LevenbergMarquardt<lmder_functor> lm(functor); 203 lmder_functor functor; local 204 LevenbergMarquardt<lmder_functor> lm(functor); 288 hybrj_functor functor; local 321 hybrj_functor functor; local 377 hybrd_functor functor; local 404 hybrd_functor functor; local 479 lmstr_functor functor; local 508 lmstr_functor functor; local 564 lmdif_functor functor; local 594 lmdif_functor functor; local 680 chwirut2_functor functor; local 760 misra1a_functor functor; local 846 hahn1_functor functor; local 932 misra1d_functor functor; local 1010 lanczos1_functor functor; local 1096 rat42_functor functor; local 1174 MGH10_functor functor; local 1250 BoxBOD_functor functor; local 1332 MGH17_functor functor; local 1421 MGH09_functor functor; local 1504 Bennett5_functor functor; local 1591 thurber_functor functor; local 1683 rat43_functor functor; local 1770 eckerle4_functor functor; local [all...] |
/external/chromium_org/third_party/skia/src/gpu/ |
GrResourceCache.cpp | 161 // This functor just searches for an entry with only a single ref (from 177 GrTFindUnreffedFunctor functor; local 179 entry = fCache.find<GrTFindUnreffedFunctor>(key, functor); 309 // default find functor that gives us back resources whether we own
|
/external/skia/src/gpu/ |
GrResourceCache.cpp | 161 // This functor just searches for an entry with only a single ref (from 177 GrTFindUnreffedFunctor functor; local 179 entry = fCache.find<GrTFindUnreffedFunctor>(key, functor); 309 // default find functor that gives us back resources whether we own
|
/external/eigen/unsupported/Eigen/src/NonLinearOptimization/ |
HybridNonLinearSolver.h | 49 : functor(_functor) { nfev=njev=iter = 0; fnorm= 0.; useExternalScaling=false;} 100 FunctorType &functor; member in class:Eigen::HybridNonLinearSolver 170 if ( functor(x, fvec) < 0) 196 if ( functor.df(x, fjac) < 0) 247 if ( functor(wa2, wa4) < 0) 408 if ( functor(x, fvec) < 0) 436 if (internal::fdjac1(functor, x, fvec, fjac, parameters.nb_of_subdiagonals, parameters.nb_of_superdiagonals, parameters.epsfcn) <0) 487 if ( functor(wa2, wa4) < 0)
|
LevenbergMarquardt.h | 50 : functor(_functor) { nfev = njev = iter = 0; fnorm = gnorm = 0.; useExternalScaling=false; } 83 FunctorType &functor, 112 FunctorType &functor; member in class:Eigen::LevenbergMarquardt 134 m = functor.values(); 167 m = functor.values(); 194 if ( functor(x, fvec) < 0) 212 Index df_ret = functor.df(x, fjac); 277 if ( functor(wa2, wa4) < 0) 359 m = functor.values(); 378 m = functor.values() [all...] |