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

1 2 3 4 5 6

  /external/chromium_org/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 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/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_);
  /ndk/sources/third_party/googletest/googletest/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/chromium_org/ui/gfx/geometry/
vector2d.cc 14 return x_ == 0 && y_ == 0;
18 x_ += other.x_;
23 x_ -= other.x_;
28 return static_cast<int64>(x_) * x_ + static_cast<int64>(y_) * y_;
36 return base::StringPrintf("[%d %d]", x_, y_);
point_base.h 20 Type x() const { return x_; }
24 x_ = x;
28 void set_x(Type x) { x_ = x; }
32 x_ += delta_x;
37 x_ += vector.x();
42 x_ -= vector.x();
47 x_ = x_ <= other.x_ ? x_ : other.x_
81 Type x_; member in class:gfx::PointBase
    [all...]
vector2d.h 24 Vector2d() : x_(0), y_(0) {}
25 Vector2d(int x, int y) : x_(x), y_(y) {}
27 int x() const { return x_; }
28 void set_x(int x) { x_ = x; }
45 x_ = x_ <= other.x_ ? x_ : other.x_;
50 x_ = x_ >= other.x_ ? x_ : other.x_
66 int x_; member in class:gfx::Vector2d
    [all...]
vector3d_f.cc 14 : x_(0),
20 : x_(x),
26 : x_(other.x()),
32 return base::StringPrintf("[%f %f %f]", x_, y_, z_);
36 return x_ == 0 && y_ == 0 && z_ == 0;
40 x_ += other.x_;
46 x_ -= other.x_;
52 return static_cast<double>(x_) * x_ + static_cast<double>(y_) * y_
    [all...]
vector2d_f.cc 14 return base::StringPrintf("[%f %f]", x_, y_);
18 return x_ == 0 && y_ == 0;
22 x_ += other.x_;
27 x_ -= other.x_;
32 return static_cast<double>(x_) * x_ + static_cast<double>(y_) * y_;
40 x_ *= x_scale;
  /external/libcxx/test/numerics/rand/rand.adapt/rand.adapt.ibits/
result_type.pass.cpp 30 result_type x_; member in class:rand1
44 explicit rand1(result_type sd = Min) : x_(sd)
46 if (x_ < Min)
47 x_ = Min;
48 if (x_ > Max)
49 x_ = Max;
54 result_type r = x_;
55 if (x_ < Max)
56 ++x_;
58 x_ = Min
    [all...]
  /external/libcxx/test/numerics/rand/rand.adapt/rand.adapt.shuf/
result_type.pass.cpp 30 result_type x_; member in class:rand1
44 explicit rand1(result_type sd = Min) : x_(sd)
46 if (x_ < Min)
47 x_ = Min;
48 if (x_ > Max)
49 x_ = Max;
54 result_type r = x_;
55 if (x_ < Max)
56 ++x_;
58 x_ = Min
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/rand/rand.adapt/rand.adapt.ibits/
result_type.pass.cpp 30 result_type x_; member in class:rand1
44 explicit rand1(result_type sd = Min) : x_(sd)
46 if (x_ < Min)
47 x_ = Min;
48 if (x_ > Max)
49 x_ = Max;
54 result_type r = x_;
55 if (x_ < Max)
56 ++x_;
58 x_ = Min
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/rand/rand.adapt/rand.adapt.shuf/
result_type.pass.cpp 30 result_type x_; member in class:rand1
44 explicit rand1(result_type sd = Min) : x_(sd)
46 if (x_ < Min)
47 x_ = Min;
48 if (x_ > Max)
49 x_ = Max;
54 result_type r = x_;
55 if (x_ < Max)
56 ++x_;
58 x_ = Min
    [all...]
  /external/chromium_org/native_client_sdk/src/examples/demo/flock/
vector2.h 17 Vector2() : x_(0.0), y_(0.0) {}
18 Vector2(double x, double y) : x_(x), y_(y) {}
29 return sqrt(x_ * x_ + y_ * y_);
34 x_ += vec.x();
49 x_ *= scale;
66 double angle = atan2(y_, x_);
71 double x() const { return x_; }
72 void set_x(double x) { x_ = x; }
77 double x_; member in class:Vector2
    [all...]
  /development/ndk/sources/android/ndk_helper/
vecmath.h 46 float x_; member in class:ndk_helper::Vec2
57 x_ = y_ = 0.f;
62 x_ = fX;
68 x_ = vec.x_;
74 x_ = (*pVec++);
82 ret.x_ = x_ * rhs.x_;
90 ret.x_ = x_ / rhs.x_
252 float x_, y_, z_; member in class:ndk_helper::Vec3
493 float x_, y_, z_, w_; member in class:ndk_helper::Vec4
964 float x_, y_, z_, w_; member in class:ndk_helper::Quaternion
    [all...]
  /external/chromium_org/third_party/android_crazy_linker/src/tests/
foo_with_static_constructor.cpp 24 x_ = rand();
40 int Get() const { return x_; }
43 int x_; member in class:A
  /ndk/sources/android/crazy_linker/tests/
foo_with_static_constructor.cpp 24 x_ = rand();
40 int Get() const { return x_; }
43 int x_; member in class:A

Completed in 309 milliseconds

1 2 3 4 5 6