HomeSort by relevance Sort by last modified time
    Searched defs:gradient (Results 1 - 25 of 63) sorted by null

1 2 3

  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
CanvasGradient.h 31 #include "core/platform/graphics/Gradient.h"
51 Gradient* gradient() const { return m_gradient.get(); } function in class:WebCore::CanvasGradient
59 RefPtr<Gradient> m_gradient;
  /external/ceres-solver/internal/ceres/
evaluator_test_utils.h 43 const double gradient[50]; member in struct:ceres::internal::ExpectedEvaluation
line_search_minimizer.h 54 gradient(num_effective_parameters),
62 Vector gradient; member in struct:ceres::internal::LineSearchMinimizer::State
polynomial.h 89 // function and or its gradient at a given point x.
95 gradient(0.0),
102 double gradient; // gradient = f'(x) member in struct:ceres::internal::FunctionSample
106 // Given a set of function value and/or gradient samples, find a
dogleg_strategy_test.cc 98 // The gradient at the origin points towards the global minimum.
197 // by the gradient and the Gauss-Newton point.
217 // Check if the gradient projects onto itself.
218 const Vector gradient = strategy.gradient(); local
219 EXPECT_NEAR((gradient - basis*(basis.transpose()*gradient)).norm(),
230 // Test if the step is correct if the gradient and the Gauss-Newton step point
258 // Test if the step is correct if the gradient and the Gauss-Newton step point
dogleg_strategy.h 72 Vector gradient() const { return gradient_; } function in class:ceres::internal::DoglegStrategy
125 // cauchy_step = alpha * gradient
program_evaluator.h 129 double* gradient,
132 ScopedExecutionTimer call_type_timer(gradient == NULL && jacobian == NULL
153 if (gradient != NULL) {
154 VectorRef(evaluate_scratch_[i].gradient.get(),
185 } else if (gradient != NULL) {
191 if (jacobian != NULL || gradient != NULL) {
225 // Compute and store the gradient, if it was requested.
226 if (gradient != NULL) {
241 scratch->gradient.get() + parameter_block->delta_offset());
247 // Sum the cost and gradient (if requested) from each thread
309 scoped_array<double> gradient; member in struct:ceres::internal::ProgramEvaluator::EvaluateScratch
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGResourceGradient.h 26 #include "core/platform/graphics/Gradient.h"
39 RefPtr<Gradient> gradient; member in struct:WebCore::GradientData
57 void addStops(GradientData*, const Vector<Gradient::ColorStop>&) const;
  /external/chromium_org/chrome/browser/ui/omnibox/
location_bar_util.cc 53 skia::RefPtr<SkShader> gradient = skia::AdoptRef( local
57 paint.setShader(gradient.get());
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
GradientStopsActivity.java 47 LinearGradient gradient = new LinearGradient(0.0f, 0.0f, 256.0f, 0.0f, local
51 paint.setShader(gradient);
57 gradient = new LinearGradient(0.0f, 0.0f, 256.0f, 0.0f,
60 paint.setShader(gradient);
67 gradient = new LinearGradient(0.0f, 0.0f, 256.0f, 0.0f,
70 paint.setShader(gradient);
76 gradient = new LinearGradient(0.0f, 0.0f, 256.0f, 0.0f,
79 paint.setShader(gradient);
84 gradient = new LinearGradient(0.0f, 0.0f, 256.0f, 0.0f,
87 paint.setShader(gradient);
    [all...]
  /frameworks/ml/bordeaux/learning/stochastic_linear_ranker/native/
stochastic_linear_ranker.cpp 32 SparseWeightVector<Key, Hash> gradient; local
34 gradient.AdditiveWeightUpdate(1.0, positive, 0.0);
35 gradient.AdditiveWeightUpdate(-1.0, negative, 0.0);
38 const double gradient_norm = gradient.L2Norm();
50 gradient.AdditiveWeightUpdate(-lambda_, weight_, 0.0);
54 gradient.ReprojectL0(gradient_l0_norm);
57 if (gradient.IsValid())
58 weight_.AdditiveWeightUpdate(final_learning_rate, gradient, 0.0);
  /external/pixman/pixman/
pixman-conical-gradient.c 62 gradient_t *gradient = (gradient_t *)image; local
74 _pixman_gradient_walker_init (&walker, gradient, image->common.repeat);
pixman-linear-gradient.c 77 * compute how much the input of the gradient walked changes
104 gradient_t *gradient = (gradient_t *)image; local
109 _pixman_gradient_walker_init (&walker, gradient, image->common.repeat);
pixman-radial-gradient.c 166 * In the radial gradient problem we are given two circles (c?,r?) and
167 * (c?,r?) that define the gradient itself.
169 * Mathematically the gradient can be defined as the family of circles
178 * the gradient is not repeated, namely t must belong to [0,1].
181 * circles with increasing t in [-inf, +inf] (or in [0,1] if the gradient
248 gradient_t *gradient = (gradient_t *)image; local
259 _pixman_gradient_walker_init (&walker, gradient, image->common.repeat);
  /external/qemu/distrib/sdl-1.2.15/test/
graywin.c 62 Uint8 gradient; local
84 gradient=((i*(NUM_COLORS-1))/screen->h);
85 color = SDL_MapRGB(screen->format, gradient, gradient, gradient);
testbitmap.c 64 Uint8 gradient; local
131 gradient=((i*255)/screen->h);
132 color = SDL_MapRGB(screen->format, gradient, gradient, gradient);
  /development/samples/ApiDemos/src/com/example/android/apis/animation/
ShapeHolder.java 33 private RadialGradient gradient; field in class:ShapeHolder
70 gradient = value;
73 return gradient;
AnimationLoading.java 143 RadialGradient gradient = new RadialGradient(37.5f, 12.5f, local
145 paint.setShader(gradient);
AnimationSeeking.java 139 RadialGradient gradient = new RadialGradient(37.5f, 12.5f, local
141 paint.setShader(gradient);
CustomEvaluator.java 154 RadialGradient gradient = new RadialGradient(37.5f, 12.5f, local
156 paint.setShader(gradient);
ReversingAnimation.java 115 RadialGradient gradient = new RadialGradient(37.5f, 12.5f, local
117 paint.setShader(gradient);
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
StrokeData.h 33 #include "core/platform/graphics/Gradient.h"
68 Gradient* gradient() const { return m_gradient.get(); } function in class:WebCore::StrokeData
69 void setGradient(const PassRefPtr<Gradient> gradient) { m_gradient = gradient; }
87 // Sets everything on the paint except the pattern, gradient and color.
98 RefPtr<Gradient> m_gradient;
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/filters/
FETurbulence.h 82 float gradient[4][2 * s_blockSize + 2][2]; member in struct:WebCore::FETurbulence::PaintingData
  /external/chromium_org/ui/android/java/resource_map/org/chromium/ui/
R.java 40 public static int gradient; field in class:R.id
  /external/pixman/demos/
composite-test.c 96 pixman_image_t *gradient, *parrot; local
124 gradient = pixman_image_create_linear_gradient (&p1, &p2, stops, G_N_ELEMENTS (stops));
127 pixman_image_set_repeat (gradient, PIXMAN_REPEAT_PAD);
148 pixman_image_composite (PIXMAN_OP_SRC, gradient, NULL, dest_img,
165 pixman_image_unref (gradient);

Completed in 514 milliseconds

1 2 3