Searched defs:x_ (Results 1 - 25 of 59) sorted by relevance

123

/external/chromium_org/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_; });
/external/libcxx/test/numerics/rand/rand.adapt/rand.adapt.ibits/
H A Dresult_type.pass.cpp30 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_
[all...]
H A Deval.pass.cpp28 result_type x_; member in class:rand1
42 explicit rand1(result_type sd = Min) : x_(sd)
44 if (x_ > Max)
45 x_ = Max; member in class:rand1
50 result_type r = x_;
51 if (x_ < Max)
52 ++x_;
54 x_ = Min;
/external/libcxx/test/numerics/rand/rand.adapt/rand.adapt.shuf/
H A Dresult_type.pass.cpp30 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_
[all...]
H A Deval.pass.cpp28 result_type x_; member in class:rand1
42 explicit rand1(result_type sd = Min) : x_(sd)
44 if (x_ > Max)
45 x_ = Max; member in class:rand1
50 result_type r = x_;
51 if (x_ < Max)
52 ++x_;
54 x_ = Min;
/external/chromium_org/testing/gtest/test/
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/gtest/test/
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/protobuf/gtest/test/
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/chromium_org/third_party/android_crazy_linker/src/tests/
H A Dfoo_with_static_constructor.cpp24 x_ = rand();
40 int Get() const { return x_; }
43 int x_; member in class:A
/external/chromium_org/media/base/
H A Dfake_audio_render_callback.h41 void reset() { x_ = 0; }
52 double x_; member in class:media::FakeAudioRenderCallback
/external/chromium_org/third_party/libjingle/source/talk/media/devices/
H A Dcarbonvideorenderer.h64 int x_; member in class:cricket::CarbonVideoRenderer
/external/clang/test/CodeGenCXX/
H A Dincomplete-types.cpp7 int x_; member in struct:Bar
H A Dconstructor-destructor-return-this.cpp16 int x_; member in class:A
/external/stlport/test/unit/
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/ceres-solver/examples/
H A Dcurve_fitting.cc123 : x_(x), y_(y) {}
128 residual[0] = T(y_) - exp(m[0] * T(x_) + c[0]);
133 const double x_; member in struct:ExponentialResidual
H A Drobust_curve_fitting.cc125 : x_(x), y_(y) {}
130 residual[0] = T(y_) - exp(m[0] * T(x_) + c[0]);
135 const double x_; member in struct:ExponentialResidual
/external/ceres-solver/internal/ceres/
H A Ddogleg_strategy_test.cc49 Vector x_; member in class:ceres::internal::__anon1763::Fixture
84 x_.resize(6);
85 x_.setZero();
112 x_.resize(6);
113 x_.setZero();
145 x_.data());
148 EXPECT_LE(x_.norm(), options_.initial_radius * (1.0 + 4.0 * kEpsilon));
165 x_.data());
168 EXPECT_LE(x_.norm(), options_.initial_radius * (1.0 + 4.0 * kEpsilon));
185 x_
[all...]
H A Dparameter_block_ordering_test.cc66 problem_.AddParameterBlock(x_, 3);
71 problem_.AddResidualBlock(new DummyCostFunction<2, 3>, NULL, x_);
73 problem_.AddResidualBlock(new DummyCostFunction<3, 3, 5>, NULL, x_, z_);
74 problem_.AddResidualBlock(new DummyCostFunction<7, 5, 3>, NULL, z_, x_);
76 z_, x_, w_);
80 double x_[3], y_[4], z_[5], w_[6]; member in class:ceres::internal::SchurOrderingTest
125 problem_.SetParameterBlockConstant(x_);
136 problem_.SetParameterBlockConstant(x_);
/external/chromium_org/chrome/browser/ui/views/tabs/
H A Dstacked_tab_strip_layout.h149 // x-coordinate of |x_|. Similarly those at the end have the same x-coordinate
195 x_ + width_for_count(tab_count() - mini_tab_count_) > width_;
223 int x_; member in class:StackedTabStripLayout
237 // X-coordinate of the first tab. This is either |x_| if there are no
/external/chromium_org/chrome/test/chromedriver/
H A Dbasic_types.cc13 void WebPoint::Offset(int x_, int y_) { argument
14 x += x_;
/external/chromium_org/crypto/
H A Dp224_spake.h99 // x_ is the secret Diffie-Hellman exponent (see paper referenced in .cc
101 uint8 x_[p224::kScalarBytes]; member in class:crypto::P224EncryptedKeyExchange
/external/chromium_org/native_client_sdk/src/examples/demo/flock/
H A Dvector2.h17 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...]
/external/chromium_org/third_party/boringssl/src/crypto/ec/
H A Doct.c336 EC_POINT *point, const BIGNUM *x_,
367 if (!BN_nnmod(x, x_, &group->field, ctx)) {
373 if (!group->meth->field_sqr(group, tmp2, x_, ctx) ||
374 !group->meth->field_mul(group, tmp1, tmp2, x_, ctx)) {
378 if (!BN_mod_sqr(tmp2, x_, &group->field, ctx) ||
379 !BN_mod_mul(tmp1, tmp2, x_, &group->field, ctx)) {
335 ec_GFp_simple_set_compressed_coordinates(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x_, int y_bit, BN_CTX *ctx) argument
/external/chromium_org/ui/gfx/geometry/
H A Dpoint_base.h20 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_
81 Type x_; member in class:gfx::PointBase
[all...]

Completed in 517 milliseconds

123