Searched refs:x_ (Results 1 - 25 of 149) sorted by relevance

123456

/external/clang/test/CodeGenCXX/
H A Dsanitize-dtor-tail-call.cpp6 int x_; member in struct:Simple
8 x_ = 5;
11 x_ += 1;
/external/google-breakpad/src/testing/gtest/test/
H A Dproduction.cc36 PrivateCode::PrivateCode() : x_(0) {}
H A Dproduction.h49 int x() const { return x_; }
51 void set_x(int an_x) { x_ = an_x; }
52 int x_; member in class:PrivateCode
H A Dgtest_prod_test.cc41 EXPECT_EQ(0, a.x_);
44 EXPECT_EQ(1, a.x_);
53 EXPECT_EQ(0, a.x_);
56 EXPECT_EQ(2, a.x_);
/external/googletest/googletest/test/
H A Dproduction.cc36 PrivateCode::PrivateCode() : x_(0) {}
H A Dproduction.h49 int x() const { return x_; }
51 void set_x(int an_x) { x_ = an_x; }
52 int x_; member in class:PrivateCode
H A Dgtest_prod_test.cc41 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/
H A Dproduction.cc36 PrivateCode::PrivateCode() : x_(0) {}
H A Dgtest_prod_test.cc41 EXPECT_EQ(0, a.x_);
44 EXPECT_EQ(1, a.x_);
53 EXPECT_EQ(0, a.x_);
56 EXPECT_EQ(2, a.x_);
H A Dproduction.h49 int x() const { return x_; }
51 void set_x(int an_x) { x_ = an_x; }
52 int x_; member in class:PrivateCode
/external/v8/testing/gtest/test/
H A Dproduction.cc36 PrivateCode::PrivateCode() : x_(0) {}
H A Dproduction.h49 int x() const { return x_; }
51 void set_x(int an_x) { x_ = an_x; }
52 int x_; member in class:PrivateCode
H A Dgtest_prod_test.cc41 EXPECT_EQ(0, a.x_);
44 EXPECT_EQ(1, a.x_);
53 EXPECT_EQ(0, a.x_);
56 EXPECT_EQ(2, a.x_);
/external/vulkan-validation-layers/tests/gtest-1.7.0/test/
H A Dproduction.cc36 PrivateCode::PrivateCode() : x_(0) {}
H A Dproduction.h49 int x() const { return x_; }
51 void set_x(int an_x) { x_ = an_x; }
52 int x_; member in class:PrivateCode
H A Dgtest_prod_test.cc41 EXPECT_EQ(0, a.x_);
44 EXPECT_EQ(1, a.x_);
53 EXPECT_EQ(0, a.x_);
56 EXPECT_EQ(2, a.x_);
/external/compiler-rt/test/msan/
H A Duse-after-dtor.cc19 int x_; member in struct:Simple
21 x_ = 5;
24 x_ += 1;
35 return s->x_;
H A Ddtor-member.cc22 int x_; member in struct:Simple
24 x_ = 5;
/external/libcxx/test/std/numerics/rand/rand.adapt/rand.adapt.ibits/
H A Dresult_type.pass.cpp32 result_type x_; member in class:rand1
46 explicit rand1(result_type sd = Min) : x_(sd)
48 if (x_ < Min)
49 x_ = Min;
50 if (x_ > Max)
51 x_ = Max;
56 result_type r = x_;
57 if (x_ < Max)
58 ++x_;
60 x_
[all...]
/external/libcxx/test/std/numerics/rand/rand.adapt/rand.adapt.shuf/
H A Dresult_type.pass.cpp32 result_type x_; member in class:rand1
46 explicit rand1(result_type sd = Min) : x_(sd)
48 if (x_ < Min)
49 x_ = Min;
50 if (x_ > Max)
51 x_ = Max;
56 result_type r = x_;
57 if (x_ < Max)
58 ++x_;
60 x_
[all...]
/external/libmojo/ui/gfx/geometry/
H A Dpoint_f.cc12 x_ = x_ <= other.x_ ? x_ : other.x_;
17 x_ = x_ >= other.x_ ? x_ : other.x_;
[all...]
H A Dvector2d.cc15 return x_ == 0 && y_ == 0;
19 x_ = base::SaturatedAddition(other.x_, x_);
24 x_ = base::SaturatedSubtraction(x_, other.x_);
29 return static_cast<int64_t>(x_) * x_ + static_cast<int64_t>(y_) * y_;
37 return base::StringPrintf("[%d %d]", x_, y
[all...]
H A Dvector2d.h25 constexpr Vector2d() : x_(0), y_(0) {}
26 constexpr Vector2d(int x, int y) : x_(x), y_(y) {}
28 constexpr int x() const { return x_; }
29 void set_x(int x) { x_ = x; }
46 x_ = x_ <= other.x_ ? x_ : other.x_;
51 x_
69 int x_; member in class:gfx::Vector2d
[all...]
H A Dvector2d_f.cc14 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;
H A Dvector2d_f.h22 constexpr Vector2dF() : x_(0), y_(0) {}
23 constexpr Vector2dF(float x, float y) : x_(x), y_(y) {}
25 constexpr float x() const { return x_; }
26 void set_x(float x) { x_ = x; }
43 x_ = x_ <= other.x_ ? x_ : other.x_;
48 x_
66 float x_; member in class:gfx::Vector2dF
[all...]

Completed in 1981 milliseconds

123456