HomeSort by relevance Sort by last modified time
    Searched refs:y_ (Results 1 - 25 of 83) sorted by null

1 2 3 4

  /external/libchrome/ui/gfx/geometry/
point_f.cc 13 y_ = y_ <= other.y_ ? y_ : other.y_;
18 y_ = y_ >= other.y_ ? y_ : other.y_;
    [all...]
vector2d.cc 15 return x_ == 0 && y_ == 0;
20 y_ = base::ClampAdd(other.y_, y_);
25 y_ = base::ClampSub(y_, other.y_);
29 return static_cast<int64_t>(x_) * x_ + static_cast<int64_t>(y_) * y_;
37 return base::StringPrintf("[%d %d]", x_, y_);
    [all...]
vector2d.h 25 constexpr Vector2d() : x_(0), y_(0) {}
26 constexpr Vector2d(int x, int y) : x_(x), y_(y) {}
31 constexpr int y() const { return y_; }
32 void set_y(int y) { y_ = y; }
43 return x_ == other.x_ && y_ == other.y_;
50 y_ = y_ <= other.y_ ? y_ : other.y_
73 int y_; member in class:gfx::Vector2d
    [all...]
scroll_offset.cc 12 return base::StringPrintf("[%f %f]", x_, y_);
scroll_offset.h 23 ScrollOffset() : x_(0), y_(0) {}
24 ScrollOffset(float x, float y) : x_(x), y_(y) {}
25 explicit ScrollOffset(const Vector2dF& v) : x_(v.x()), y_(v.y()) {}
26 explicit ScrollOffset(const Vector2d& v) : x_(v.x()), y_(v.y()) {}
31 float y() const { return y_; }
32 void set_y(float y) { y_ = y; }
36 return x_ == 0 && y_ == 0;
42 y_ += other.y_;
49 y_ -= other.y_
79 float y_; member in class:gfx::ScrollOffset
    [all...]
vector2d_f.cc 14 return base::StringPrintf("[%f %f]", x_, y_);
18 return x_ == 0 && y_ == 0;
23 y_ += other.y_;
28 y_ -= other.y_;
32 return static_cast<double>(x_) * x_ + static_cast<double>(y_) * y_;
41 y_ *= y_scale;
vector2d_f.h 22 constexpr Vector2dF() : x_(0), y_(0) {}
23 constexpr Vector2dF(float x, float y) : x_(x), y_(y) {}
28 constexpr float y() const { return y_; }
29 void set_y(float y) { y_ = y; }
44 y_ = y_ <= other.y_ ? y_ : other.y_;
49 y_ = y_ >= other.y_ ? y_ : other.y_
67 float y_; member in class:gfx::Vector2dF
    [all...]
point.cc 26 y_ = points.y;
29 Point::Point(const POINT& point) : x_(point.x), y_(point.y) {
34 y_ = point.y;
38 Point::Point(const CGPoint& point) : x_(point.x), y_(point.y) {
57 y_ = y_ <= other.y_ ? y_ : other.y_;
62 y_ = y_ >= other.y_ ? y_ : other.y_
    [all...]
point_f.h 21 constexpr PointF() : x_(0.f), y_(0.f) {}
22 constexpr PointF(float x, float y) : x_(x), y_(y) {}
28 constexpr float y() const { return y_; }
30 void set_y(float y) { y_ = y; }
34 y_ = y;
39 y_ += delta_y;
44 y_ += vector.y();
49 y_ -= vector.y();
55 bool IsOrigin() const { return x_ == 0 && y_ == 0; }
57 Vector2dF OffsetFromOrigin() const { return Vector2dF(x_, y_); }
82 float y_; member in class:gfx::PointF
    [all...]
point.h 29 constexpr Point() : x_(0), y_(0) {}
30 constexpr Point(int x, int y) : x_(x), y_(y) {}
49 constexpr int y() const { return y_; }
51 void set_y(int y) { y_ = y; }
55 y_ = y;
60 y_ = base::ClampAdd(y_, delta_y);
65 y_ = base::ClampAdd(y_, vector.y());
70 y_ = base::ClampSub(y_, vector.y())
95 int y_; member in class:gfx::Point
    [all...]
  /external/libchrome/mojo/public/cpp/bindings/tests/
shared_rect.h 19 : x_(x), y_(y), width_(width), height_(height) {}
24 int y() const { return y_; }
25 void set_y(int y) { y_ = y; }
35 int y_ = 0; member in class:mojo::test::SharedRect
rect_chromium.h 20 y_(other.y_),
24 x_(x), y_(y), width_(width), height_(height) {
32 y_ = other.y_;
41 int y() const { return y_; }
42 void set_y(int y) { y_ = y; }
66 int y_ = 0; member in class:mojo::test::RectChromium
rect_blink.h 20 x_(x), y_(y), width_(width), height_(height) {
22 DCHECK_GE(y_, 0);
34 int y() const { return y_; }
37 y_ = y;
62 int y_ = 0; member in class:mojo::test::RectBlink
test_native_types.h 30 int y() const { return y_; }
31 void set_y(int y) { y_ = y; }
35 int x_, y_; member in class:mojo::test::TestNativeStruct
  /external/v4l2_codec2/vda/
rect.h 28 Rect() : x_(0), y_(0), size_(0, 0) {}
29 Rect(int width, int height) : x_(0), y_(0), size_(width, height) {}
31 : x_(x), y_(y), size_(width, height) {}
32 explicit Rect(const Size& size) : x_(0), y_(0), size_(size) {}
37 int y() const { return y_; }
38 void set_y(int y) { y_ = y; }
73 x_, y_, size().ToString().c_str());
78 int y_; member in class:media::Rect
  /external/tensorflow/tensorflow/contrib/distributions/python/kernel_tests/bijectors/
absolute_value_test.py 40 y_ = y.eval()
42 self.assertAllClose(y_, bijector.forward(x).eval())
43 self.assertAllClose((-y_, y_), sess.run(bijector.inverse(y)))
50 self.assertAllClose(y_, bijector.forward(x).eval())
51 self.assertAllClose((-y_, y_), sess.run(bijector.inverse(y)))
  /external/ImageMagick/Magick++/lib/
Pixels.cpp 37 Magick::Quantum* Magick::Pixels::get(const ssize_t x_,const ssize_t y_,
41 _y=y_;
46 Quantum* pixels=GetCacheViewAuthenticPixels(_view,x_,y_,columns_,rows_,
54 const ssize_t y_,const size_t columns_,const size_t rows_)
57 _y=y_;
62 const Quantum* pixels=GetCacheViewVirtualPixels(_view,x_,y_,columns_,rows_,
76 Magick::Quantum* Magick::Pixels::set(const ssize_t x_,const ssize_t y_,
80 _y=y_;
85 Quantum* pixels=QueueCacheViewAuthenticPixels(_view,x_,y_,columns_,rows_,
114 const ::ssize_t y_,const size_t width_,const size_t height_,std::string map_
    [all...]
  /external/pdfium/third_party/agg23/
agg_vertex_sequence.h 78 vertex_dist(float x_, float y_) :
80 y(y_),
93 vertex_dist_cmd(float x_, float y_, unsigned cmd_) :
94 vertex_dist(x_, y_),
  /external/ImageMagick/Magick++/lib/Magick++/
Pixels.h 31 Quantum *get(const ::ssize_t x_,const ::ssize_t y_,
36 const Quantum *getConst(const ::ssize_t x_,const ::ssize_t y_,
48 Quantum *set(const ::ssize_t x_,const ::ssize_t y_,const size_t columns_,
89 PixelData(Magick::Image &image_,const ::ssize_t x_,const ::ssize_t y_,
111 void init(Magick::Image &image_,const ::ssize_t x_,const ::ssize_t y_,
Drawable.h 54 Coordinate(double x_,double y_)
56 _y(y_) {}
63 void y(double y_) { _y=y_; }
305 DrawableAlpha(double x_, double y_,PaintMethod paintMethod_)
307 _y(y_),
330 void y(double y_)
332 _y=y_;
671 DrawableColor ( double x_, double y_,
674 _y(y_),
    [all...]
  /external/tensorflow/tensorflow/examples/tutorials/mnist/
mnist_softmax_xla.py 45 y_ = tf.placeholder(tf.int64, [None])
49 # tf.reduce_mean(-tf.reduce_sum(y_ * tf.log(tf.nn.softmax(y)),
56 cross_entropy = tf.losses.sparse_softmax_cross_entropy(labels=y_, logits=y)
79 y_: batch_ys},
86 sess.run(train_step, feed_dict={x: batch_xs, y_: batch_ys})
89 correct_prediction = tf.equal(tf.argmax(y, 1), y_)
93 y_: mnist.test.labels}))
  /external/webrtc/webrtc/modules/desktop_capture/
desktop_geometry.h 22 DesktopVector() : x_(0), y_(0) {}
23 DesktopVector(int32_t x, int32_t y) : x_(x), y_(y) {}
26 int32_t y() const { return y_; }
27 bool is_zero() const { return x_ == 0 && y_ == 0; }
30 return x_ == other.x_ && y_ == other.y_;
35 y_ = y;
47 int32_t y_; member in class:webrtc::DesktopVector
  /external/clang/test/Index/
index-file.cpp 29 int y_; member in class:B
50 // CHECK: [indexDeclaration]: kind: field | name: y_ | USR: c:@S@B@FI@y_ | lang: C++ | cursor: FieldDecl=y_:29:7 (Definition) | loc: 29:7 | semantic-container: [B:27:7] | lexical-container: [B:27:7] | isRedecl: 0 | isDef: 1 | isContainer: 0 | isImplicit: 0
  /external/webrtc/talk/media/devices/
carbonvideorenderer.h 67 int y_; member in class:cricket::CarbonVideoRenderer
  /external/webrtc/webrtc/modules/audio_processing/
high_pass_filter_impl.cc 34 std::memset(y_, 0, sizeof(y_));
40 int16_t* y = y_;
85 int16_t y_[4]; member in class:webrtc::HighPassFilterImpl::BiquadFilter

Completed in 435 milliseconds

1 2 3 4