Searched defs:functor (Results 1 - 25 of 49) sorted by relevance

12

/external/ceres-solver/internal/ceres/
H A Dnumeric_diff_functor_test.cc53 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...]
H A Dnumeric_diff_cost_function_test.cc57 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
122 TranscendentalFunctor functor; local
135 TranscendentalFunctor functor; local
148 TranscendentalFunctor functor; local
196 EasyFunctor functor; local
[all...]
/external/ceres-solver/include/ceres/internal/
H A Dvariadic_evaluate.h45 // This block of quasi-repeated code calls the user-supplied functor, which may
52 static bool Call(const Functor& functor, T const *const *input, T* output) { argument
53 return functor(input[0],
70 static bool Call(const Functor& functor, T const *const *input, T* output) { argument
71 return functor(input[0],
87 static bool Call(const Functor& functor, T const *const *input, T* output) { argument
88 return functor(input[0],
103 static bool Call(const Functor& functor, T const *const *input, T* output) { argument
104 return functor(input[0],
118 static bool Call(const Functor& functor, argument
131 Call(const Functor& functor, T const *const *input, T* output) argument
143 Call(const Functor& functor, T const *const *input, T* output) argument
154 Call(const Functor& functor, T const *const *input, T* output) argument
164 Call(const Functor& functor, T const *const *input, T* output) argument
173 Call(const Functor& functor, T const *const *input, T* output) argument
[all...]
H A Dnumeric_diff.h50 // Helper templates that allow evaluation of a variadic functor or a
55 bool EvaluateImpl(const CostFunctor* functor, argument
62 *functor,
70 bool EvaluateImpl(const CostFunctor* functor, argument
74 return functor->Evaluate(parameters, residuals, NULL);
90 const CostFunctor* functor,
144 functor, parameters, residuals.data(), functor)) {
160 functor, parameters, residuals.data(), functor)) {
89 EvaluateJacobianForParameterBlock( const CostFunctor* functor, double const* residuals_at_eval_point, const double relative_step_size, int num_residuals, double **parameters, double *jacobian) argument
190 EvaluateJacobianForParameterBlock( const CostFunctor* functor, double const* residuals_at_eval_point, const double relative_step_size, const int num_residuals, double **parameters, double *jacobian) argument
[all...]
H A Dautodiff.h96 // functor expects different inputs, we need to construct the jets as if they
100 // For example, consider a functor F taking two vector parameters, p[2] and
204 // the user supplied functor.
209 static bool Differentiate(const Functor& functor, argument
283 functor, unpacked_parameters, output)) {
/external/ceres-solver/include/ceres/
H A Dautodiff_cost_function.h37 // templated operator() (a functor) that computes the cost function in terms of
96 // "MyScalarCostFunctor", "1, 2, 2", describe the functor as computing a
117 // WARNING #1: Since the functor will get instantiated with different types for
142 // The first template argument is the functor object, described in the header
147 // The constructors take ownership of the cost functor.
170 // Takes ownership of functor. Uses the template-provided value for the
172 explicit AutoDiffCostFunction(CostFunctor* functor) argument
173 : functor_(functor) {
179 // Takes ownership of functor. Ignores the template-provided
184 AutoDiffCostFunction(CostFunctor* functor, in argument
[all...]
H A Dautodiff_local_parameterization.h47 // a class with a templated operator() (a functor) that computes
102 // WARNING: Since the functor will get instantiated with different types for
113 // Takes ownership of functor.
114 explicit AutoDiffLocalParameterization(Functor* functor) : argument
115 functor_(functor) {}
H A Dnumeric_diff_cost_function.h37 // a class with a operator() (a functor) that computes the residuals.
95 // "MyScalarCostFunctor", "1, 2, 2", describe the functor as computing
192 NumericDiffCostFunction(CostFunctor* functor, argument
196 :functor_(functor),
H A Dnumeric_diff_functor.h31 // A wrapper class that takes a variadic functor evaluating a
33 // templated functor so that it can be easily used as part of Ceres'
47 // is a functor that implements the projection of a point in its local
51 // Now we would like to compose the action of this functor with the
62 // CameraProjection functor as follows.
132 NumericDiffFunctor(Functor* functor, double relative_step_size = 1e-6) argument
138 functor,
H A Ddynamic_autodiff_cost_function.h38 // The functor API differs slightly from the API for fixed size
81 explicit DynamicAutoDiffCostFunction(CostFunctor* functor) argument
82 : functor_(functor) {}
107 // is a large body of code that assumes inside a cost functor it is
126 // Make the parameter pack that is sent to the functor (reused).
H A Ddynamic_numeric_diff_cost_function.h40 // The functor API differs slightly from the API for fixed size
78 explicit DynamicNumericDiffCostFunction(const CostFunctor* functor, argument
81 : functor_(functor),
242 // Helper templates to allow evaluation of a functor or a
244 bool EvaluateCostFunctorImpl(const CostFunctor* functor, argument
248 return (*functor)(parameters, residuals);
251 bool EvaluateCostFunctorImpl(const CostFunctor* functor, argument
255 return functor->Evaluate(parameters, residuals, NULL);
/external/chromium_org/base/
H A Dbind.h63 Bind(Functor functor) { argument
64 // Typedefs for how to store and run the functor.
72 new BindState(internal::MakeRunnable(functor)));
82 Bind(Functor functor, const P1& p1) { argument
83 // Typedefs for how to store and run the functor.
89 // functor is going to interpret the argument as.
118 new BindState(internal::MakeRunnable(functor), p1));
129 Bind(Functor functor, const P1& p1, const P2& p2) { argument
130 // Typedefs for how to store and run the functor.
136 // functor i
181 Bind(Functor functor, const P1& p1, const P2& p2, const P3& p3) argument
238 Bind(Functor functor, const P1& p1, const P2& p2, const P3& p3, const P4& p4) argument
301 Bind(Functor functor, const P1& p1, const P2& p2, const P3& p3, const P4& p4, const P5& p5) argument
370 Bind(Functor functor, const P1& p1, const P2& p2, const P3& p3, const P4& p4, const P5& p5, const P6& p6) argument
444 Bind(Functor functor, const P1& p1, const P2& p2, const P3& p3, const P4& p4, const P5& p5, const P6& p6, const P7& p7) argument
[all...]
/external/chromium_org/third_party/webrtc/base/
H A Dasyncinvoker.h33 // invocation and execution of the functor. AsyncInvoker is designed to
74 // Call |functor| asynchronously on |thread|, with no callback upon
78 const FunctorT& functor,
81 new RefCountedObject<FireAndForgetAsyncClosure<FunctorT> >(functor);
85 // Call |functor| asynchronously on |thread|, calling |callback| when done.
88 const FunctorT& functor,
94 this, Thread::Current(), functor, callback, callback_host);
98 // Call |functor| asynchronously on |thread|, calling |callback| when done.
102 const FunctorT& functor,
108 this, Thread::Current(), functor, callbac
77 AsyncInvoke(Thread* thread, const FunctorT& functor, uint32 id = 0) argument
87 AsyncInvoke(Thread* thread, const FunctorT& functor, void (HostT::*callback)(ReturnT), HostT* callback_host, uint32 id = 0) argument
101 AsyncInvoke(Thread* thread, const FunctorT& functor, void (HostT::*callback)(), HostT* callback_host, uint32 id = 0) argument
[all...]
H A Dmessagehandler.h34 // Helper class to facilitate executing a functor on a thread.
38 explicit FunctorMessageHandler(const FunctorT& functor) argument
39 : functor_(functor) {}
54 explicit FunctorMessageHandler(const FunctorT& functor) argument
55 : functor_(functor) {}
H A Dasyncinvoker-inl.h42 explicit FireAndForgetAsyncClosure(const FunctorT& functor) argument
43 : functor_(functor) {}
83 const FunctorT& functor,
87 functor_(functor),
111 const FunctorT& functor,
115 functor_(functor) {
81 NotifyingAsyncClosure(AsyncInvoker* invoker, Thread* calling_thread, const FunctorT& functor, void (HostT::*callback)(ReturnT), HostT* callback_host) argument
109 NotifyingAsyncClosure(AsyncInvoker* invoker, Thread* calling_thread, const FunctorT& functor, void (HostT::*callback)(), HostT* callback_host) argument
H A Dcallback.h76 template <class T> Callback0(const T& functor) argument
77 : helper_(new RefCountedObject< HelperImpl<T> >(functor)) {}
91 explicit HelperImpl(const T& functor) : functor_(functor) {} argument
106 template <class T> Callback1(const T& functor) argument
107 : helper_(new RefCountedObject< HelperImpl<T> >(functor)) {}
121 explicit HelperImpl(const T& functor) : functor_(functor) {} argument
137 template <class T> Callback2(const T& functor) argument
138 : helper_(new RefCountedObject< HelperImpl<T> >(functor)) {}
152 HelperImpl(const T& functor) argument
169 Callback3(const T& functor) argument
184 HelperImpl(const T& functor) argument
202 Callback4(const T& functor) argument
217 HelperImpl(const T& functor) argument
236 Callback5(const T& functor) argument
251 HelperImpl(const T& functor) argument
[all...]
H A Dbind.h22 // returned functor knows nothing about the lifetime of the method's object or
23 // any arguments passed by pointer, and calling the functor with a destroyed
73 explicit Functor0(const FunctorT& functor) argument
74 : functor_(functor) {}
133 Functor1(const FunctorT& functor, P1 p1) argument
134 : functor_(functor),
206 Functor2(const FunctorT& functor, P1 p1, P2 p2) argument
207 : functor_(functor),
292 Functor3(const FunctorT& functor, P1 p1, P2 p2, P3 p3) argument
293 : functor_(functor),
391 Functor4(const FunctorT& functor, P1 p1, P2 p2, P3 p3, P4 p4) argument
503 Functor5(const FunctorT& functor, P1 p1, P2 p2, P3 p3, P4 p4, P5 p5) argument
[all...]
/external/eigen/Eigen/src/Core/
H A DCwiseUnaryOp.h21 * \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(rowId, colId));
109 return derived().functor().packetOp(derived().nestedExpression().template packet<LoadMode>(rowId, colId));
114 return derived().functor()(derived().nestedExpression().coeff(index));
120 return derived().functor().packetOp(derived().nestedExpression().template packet<LoadMode>(index));
H A DCwiseUnaryView.h20 * \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
118 return derived().functor()(derived().nestedExpression().coeff(row, col));
123 return derived().functor()(derived().nestedExpression().coeff(index));
128 return derived().functor()(const_cast_derived().nestedExpression().coeffRef(row, col));
133 return derived().functor()(const_cast_derived().nestedExpression().coeffRef(index));
H A DSelfCwiseBinaryOp.h158 const BinaryOp& functor() const function in class:Eigen::SelfCwiseBinaryOp
/external/eigen/unsupported/test/
H A DNumericalDiff.cpp11 // Generic functor
75 my_functor functor; local
80 functor.actual_df(x, actual_jac);
84 NumericalDiff<my_functor> numDiff(functor);
96 my_functor functor; local
101 functor.actual_df(x, actual_jac);
104 NumericalDiff<my_functor,Central> numDiff(functor);
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSSelectorList.cpp125 static bool forEachTagSelector(Functor& functor, const CSSSelector& selector) argument
128 if (functor(*current))
132 if (forEachTagSelector(functor, *subSelector))
142 static bool forEachSelector(Functor& functor, const CSSSelectorList* selectorList) argument
145 if (forEachTagSelector(functor, *selector))
166 SelectorNeedsNamespaceResolutionFunctor functor; local
167 return forEachSelector(functor, this);
180 SelectorHasShadowDistributed functor; local
181 return forEachTagSelector(functor, selectorAt(index));
194 SelectorCrossesTreeScopes functor; local
[all...]
/external/chromium_org/third_party/skia/include/core/
H A DSkTSearch.h34 // 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/eigen/test/
H A DdenseLM.cpp102 int test_minimizeLM(FunctorType& functor, VectorType& uv) argument
104 LevenbergMarquardt<FunctorType> lm(functor);
115 int test_lmder(FunctorType& functor, VectorType& uv) argument
119 LevenbergMarquardt<FunctorType> lm(functor);
128 int test_minimizeSteps(FunctorType& functor, VectorType& uv) argument
131 LevenbergMarquardt<FunctorType> lm(functor);
/external/skia/include/core/
H A DSkTSearch.h34 // 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...]

Completed in 1951 milliseconds

12