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

12

/external/chromium/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/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.cc47 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/
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 x) { x_ = x; }
52 int x_; member in class:PrivateCode
/external/v8/test/mjsunit/
H A Dglobal-accessors.js30 var x_ = 0; variable
32 __defineSetter__('x', function(x) { x_ = x; });
33 __defineGetter__('x', function() { return x_; });
H A Ddebug-references.js109 function Point(x, y) { this.x_ = x; this.y_ = y;}
/external/chromium/ui/gfx/
H A Dpoint.h41 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_
101 int x_; member in class:gfx::Point
[all...]
H A Dpoint.cc15 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/
H A Dunary.h20 double operator()(double x_) const
21 { return ::sqrt(x_); }
H A Dfunc_test.cpp27 static bool bigger_than(int x_, int y_);
39 bool FuncTest::bigger_than(int x_, int y_) argument
41 return x_ > y_;
H A Dptr2_test.cpp35 static int sum(int x_, int y_) argument
37 return x_ + y_;
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_rtl.h79 x_ = tid << kTidShift;
80 x_ |= epoch << kClkShift;
86 : x_(x) {
90 return x_;
94 u64 res = x_ >> kTidShift;
99 u64 res = (x_ << (kTidBits + 1)) >> (64 - kClkBits);
105 x_ += 1 << kClkShift;
110 void SetIgnoreBit() { x_ |= kIgnoreBit; }
111 void ClearIgnoreBit() { x_ &= ~kIgnoreBit; }
112 bool GetIgnoreBit() const { return x_
120 u64 x_; member in class:__tsan::FastState
[all...]
/external/clang/test/CodeGenCXX/
H A Dincomplete-types.cpp6 int x_; member in struct:Bar
H A Dthunk-use-after-free.cpp30 struct DDD { int x_;}; member in struct:DDD
/external/compiler-rt/lib/
H A Dint_math.h42 __typeof((x)) x_ = (x); \
43 !crt_isinf(x_) && !crt_isnan(x_); \
/external/chromium/chrome/browser/automation/
H A Dautomation_provider_gtk.cc84 x_(absolute_x),
92 ui_controls::SendMouseMoveNotifyWhenDone(x_, y_, next_task_);
100 int x_; member in class:MouseMoveTask
/external/v8/src/ia32/
H A Dassembler-ia32-inl.h277 x_ = x;
283 x_ = reinterpret_cast<int32_t>(ext.address());
289 x_ = reinterpret_cast<int32_t>(internal_offset);
299 x_ = reinterpret_cast<intptr_t>(handle.location());
303 x_ = reinterpret_cast<intptr_t>(obj);
310 x_ = reinterpret_cast<intptr_t>(value);
316 x_ = reinterpret_cast<int32_t>(addr);
353 Label* label = reinterpret_cast<Label*>(x.x_);
358 emit(x.x_);
375 uint16_t value = static_cast<uint16_t>(x.x_);
[all...]
/external/webp/src/enc/
H A Diterator.c43 it->x_ = 0;
106 const int x = it->x_, y = it->y_;
146 const int x = it->x_, y = it->y_;
249 const int x = it->x_, y = it->y_;
275 it->x_++;
276 if (it->x_ == enc->mb_w_) {
277 it->x_ = 0;
374 it->i4_boundary_[17 + i] = enc->y_top_[it->x_ * 16 + i];
377 if (it->x_ < enc->mb_w_ - 1) {
379 it->i4_boundary_[17 + i] = enc->y_top_[it->x_ * 1
[all...]
/external/openssl/crypto/ec/
H A Decp_oct.c71 const BIGNUM *x_, int y_bit, BN_CTX *ctx)
102 if (!BN_nnmod(x, x_, &group->field,ctx)) goto err;
106 if (!group->meth->field_sqr(group, tmp2, x_, ctx)) goto err;
107 if (!group->meth->field_mul(group, tmp1, tmp2, x_, ctx)) goto err;
111 if (!BN_mod_sqr(tmp2, x_, &group->field, ctx)) goto err;
112 if (!BN_mod_mul(tmp1, tmp2, x_, &group->field, ctx)) goto err;
70 ec_GFp_simple_set_compressed_coordinates(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x_, int y_bit, BN_CTX *ctx) argument
/external/mksh/src/
H A Demacsfn.h3 #define FN(cname,sname,flags) static int x_##cname(int);
8 #define FN(cname,sname,flags) { x_##cname, sname, flags },

Completed in 353 milliseconds

12