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

1 2 3 4 5 6

  /external/clang/test/CodeGenCXX/
sanitize-dtor-tail-call.cpp 6 int x_; member in struct:Simple
8 x_ = 5;
11 x_ += 1;
  /external/google-breakpad/src/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/googletest/googletest/test/
production.cc 35 PrivateCode::PrivateCode() : x_(0) {}
production.h 48 int x() const { return x_; }
50 void set_x(int an_x) { x_ = an_x; }
51 int x_; member in class:PrivateCode
gtest_prod_test.cc 40 EXPECT_EQ(0, a.x_);
43 EXPECT_EQ(1, a.x_);
52 EXPECT_EQ(0, a.x_);
55 EXPECT_EQ(2, a.x_);
  /external/compiler-rt/test/msan/
use-after-dtor.cc 19 int x_; member in struct:Simple
21 x_ = 5;
24 x_ += 1;
35 return s->x_;
dtor-member.cc 22 int x_; member in struct:Simple
24 x_ = 5;
  /external/libchrome/ui/gfx/geometry/
point_f.cc 12 x_ = x_ <= other.x_ ? x_ : other.x_;
17 x_ = x_ >= other.x_ ? x_ : other.x_;
    [all...]
vector2d.cc 15 return x_ == 0 && y_ == 0;
19 x_ = base::ClampAdd(other.x_, x_);
24 x_ = base::ClampSub(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...]
vector2d.h 25 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; }
43 return x_ == other.x_ && y_ == other.y_;
49 x_ = x_ <= other.x_ ? x_ : other.x_
72 int x_; 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()) {}
28 float x() const { return x_; }
29 void set_x(float x) { x_ = x; }
36 return x_ == 0 && y_ == 0;
41 x_ += other.x_;
48 x_ -= other.x_
78 float x_; member in class:gfx::ScrollOffset
    [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;
vector2d_f.h 22 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_ = x_ >= other.x_ ? x_ : other.x_
66 float x_; member in class:gfx::Vector2dF
    [all...]
point.cc 25 x_ = points.x;
29 Point::Point(const POINT& point) : x_(point.x), y_(point.y) {
33 x_ = point.x;
38 Point::Point(const CGPoint& point) : x_(point.x), y_(point.y) {
56 x_ = x_ <= other.x_ ? x_ : other.x_;
61 x_ = x_ >= other.x_ ? x_ : other.x_
    [all...]
  /external/libcxx/test/std/numerics/rand/rand.adapt/rand.adapt.ibits/
result_type.pass.cpp 32 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_ = Min
    [all...]
  /external/libcxx/test/std/numerics/rand/rand.adapt/rand.adapt.shuf/
result_type.pass.cpp 32 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_ = Min
    [all...]
eval.pass.cpp 30 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/v8/tools/clang/blink_gc_plugin/tests/
traceimpl.cpp 10 visitor->Trace(x_);
14 visitor->Trace(x_);
traceimpl.h 19 void Trace(Visitor* visitor) { visitor->Trace(x_); }
22 Member<X> x_; member in class:blink::TraceImplInlined
30 Member<X> x_; member in class:blink::TraceImplExtern
48 Member<X> x_; member in class:blink::TraceImplBaseExtern
traceimpl_derived_from_templated_base.h 21 void Trace(Visitor* visitor) { visitor->Trace(x_); }
24 Member<X> x_; member in class:blink::TraceImplTemplatedBase
  /external/grpc-grpc/src/core/lib/gprpp/
atomic_with_atm.h 36 atomic() { gpr_atm_no_barrier_store(&x_, static_cast<gpr_atm>(false)); }
38 gpr_atm_no_barrier_store(&x_, static_cast<gpr_atm>(x));
43 if (!gpr_atm_no_barrier_cas(&x_, static_cast<gpr_atm>(expected),
45 expected = gpr_atm_no_barrier_load(&x_) != 0;
52 gpr_atm x_; member in class:grpc_core::atomic
  /external/libchrome/mojo/public/cpp/bindings/tests/
shared_rect.h 19 : x_(x), y_(y), width_(width), height_(height) {}
21 int x() const { return x_; }
22 void set_x(int x) { x_ = x; }
34 int x_ = 0; member in class:mojo::test::SharedRect

Completed in 916 milliseconds

1 2 3 4 5 6