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

1 2 3

  /external/chromium/testing/gtest/test/
production.cc 36 PrivateCode::PrivateCode() : x_(0) {}
production.h 49 int x() const { return x_; }
51 void set_x(int an_x) { x_ = an_x; }
52 int x_; member in class:PrivateCode
gtest_prod_test.cc 41 EXPECT_EQ(0, a.x_);
44 EXPECT_EQ(1, a.x_);
53 EXPECT_EQ(0, a.x_);
56 EXPECT_EQ(2, a.x_);
  /external/gtest/test/
production.cc 36 PrivateCode::PrivateCode() : x_(0) {}
production.h 49 int x() const { return x_; }
51 void set_x(int an_x) { x_ = an_x; }
52 int x_; member in class:PrivateCode
gtest_prod_test.cc 47 EXPECT_EQ(0, a.x_);
50 EXPECT_EQ(1, a.x_);
59 EXPECT_EQ(0, a.x_);
62 EXPECT_EQ(2, a.x_);
  /external/protobuf/gtest/test/
production.cc 36 PrivateCode::PrivateCode() : x_(0) {}
production.h 49 int x() const { return x_; }
51 void set_x(int x) { x_ = x; }
52 int x_; member in class:PrivateCode
gtest_prod_test.cc 41 EXPECT_EQ(0, a.x_);
44 EXPECT_EQ(1, a.x_);
53 EXPECT_EQ(0, a.x_);
56 EXPECT_EQ(2, a.x_);
  /external/chromium/ui/gfx/
point.h 41 int x() const { return x_; }
45 x_ = x;
49 void set_x(int x) { x_ = x; }
53 x_ += delta_x;
59 copy.Offset(other.x_, other.y_);
65 copy.Offset(-other.x_, -other.y_);
70 return Point((x_ + other.x_) / 2, (y_ + other.y_) / 2);
74 return x_ == rhs.x_ && y_ == rhs.y_
101 int x_; member in class:gfx::Point
    [all...]
point.cc 15 Point::Point() : x_(0), y_(0) {
18 Point::Point(int x, int y) : x_(x), y_(y) {
24 x_ = points.x;
28 Point::Point(const POINT& point) : x_(point.x), y_(point.y) {
32 x_ = point.x;
39 p.x = x_;
44 Point::Point(const CGPoint& point) : x_(point.x), y_(point.y) {
48 return CGPointMake(x_, y_);
53 return base::StringPrintf("%d,%d", x_, y_);
  /external/stlport/test/unit/
unary.h 20 double operator()(double x_) const
21 { return ::sqrt(x_); }
func_test.cpp 27 static bool bigger_than(int x_, int y_);
39 bool FuncTest::bigger_than(int x_, int y_)
41 return x_ > y_;
ptr2_test.cpp 35 static int sum(int x_, int y_)
37 return x_ + y_;
  /ndk/tests/device/test-gnustl-full/unit/
unary.h 20 double operator()(double x_) const
21 { return ::sqrt(x_); }
func_test.cpp 27 static bool bigger_than(int x_, int y_);
39 bool FuncTest::bigger_than(int x_, int y_)
41 return x_ > y_;
ptr2_test.cpp 35 static int sum(int x_, int y_)
37 return x_ + y_;
  /ndk/tests/device/test-stlport/unit/
unary.h 20 double operator()(double x_) const
21 { return ::sqrt(x_); }
func_test.cpp 27 static bool bigger_than(int x_, int y_);
39 bool FuncTest::bigger_than(int x_, int y_)
41 return x_ > y_;
  /frameworks/base/media/mca/filterfw/native/core/
geometry.cpp 27 return std::sqrt(x_ * x_ + y_ * y_);
35 x_ *= new_length / length;
47 out.x_ = x_ + other.x_;
54 out.x_ = x_ - other.x_;
61 out.x_ = factor * x_
    [all...]
geometry.h 30 Point() : x_(0.0f), y_(0.0f) {}
31 Point(float x, float y) : x_(x), y_(y) {}
33 float x() const { return x_; }
48 float x_, y_; member in class:android::filterfw::Point
  /frameworks/base/media/mca/filterpacks/native/base/
geometry.cpp 26 return std::sqrt(x_ * x_ + y_ * y_);
34 x_ *= new_length / length;
46 out.x_ = x_ + other.x_;
53 out.x_ = x_ - other.x_;
60 out.x_ = factor * x_
    [all...]
geometry.h 30 Point() : x_(0.0f), y_(0.0f) {}
31 Point(float x, float y) : x_(x), y_(y) {}
33 float x() const { return x_; }
48 float x_, y_; member in class:android::filterfw::Point
  /external/clang/test/CodeGenCXX/
incomplete-types.cpp 6 int x_; member in struct:Bar
  /external/compiler-rt/lib/
int_math.h 42 __typeof((x)) x_ = (x); \
43 !crt_isinf(x_) && !crt_isnan(x_); \

Completed in 553 milliseconds

1 2 3