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

12345

/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...]
H A Deval.pass.cpp30 result_type x_; member in class:rand1
44 explicit rand1(result_type sd = Min) : x_(sd)
46 if (x_ > Max)
47 x_ = Max; member in class:rand1
52 result_type r = x_;
53 if (x_ < Max)
54 ++x_;
56 x_ = Min;
/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...]
H A Deval.pass.cpp30 result_type x_; member in class:rand1
44 explicit rand1(result_type sd = Min) : x_(sd)
46 if (x_ > Max)
47 x_ = Max; member in class:rand1
52 result_type r = x_;
53 if (x_ < Max)
54 ++x_;
56 x_ = Min;
/external/libmojo/mojo/public/cpp/bindings/tests/
H A Drect_chromium.h19 : x_(other.x_),
24 x_(x), y_(y), width_(width), height_(height) {
31 x_ = other.x_;
38 int x() const { return x_; }
39 void set_x(int x) { x_ = x; }
59 int x_ = 0; member in class:mojo::test::RectChromium
H A Drect_blink.h20 x_(x), y_(y), width_(width), height_(height) {
21 DCHECK_GE(x_, 0);
28 int x() const { return x_; }
31 x_ = x;
55 int x_ = 0; member in class:mojo::test::RectBlink
/external/v8/tools/clang/blink_gc_plugin/tests/
H A Dtraceimpl.cpp15 visitor->trace(x_);
24 visitor->trace(x_);

Completed in 2984 milliseconds

12345