/external/chromium/testing/gtest/test/ |
D | gtest_prod_test.cc | 41 EXPECT_EQ(0, a.x_); in TEST() 44 EXPECT_EQ(1, a.x_); in TEST() 53 EXPECT_EQ(0, a.x_); in TEST_F() 56 EXPECT_EQ(2, a.x_); in TEST_F()
|
D | production.h | 49 int x() const { return x_; } in x() 51 void set_x(int an_x) { x_ = an_x; } in set_x() 52 int x_; variable
|
D | production.cc | 36 PrivateCode::PrivateCode() : x_(0) {} in PrivateCode()
|
/external/protobuf/gtest/test/ |
D | gtest_prod_test.cc | 41 EXPECT_EQ(0, a.x_); in TEST() 44 EXPECT_EQ(1, a.x_); in TEST() 53 EXPECT_EQ(0, a.x_); in TEST_F() 56 EXPECT_EQ(2, a.x_); in TEST_F()
|
D | production.h | 49 int x() const { return x_; } in x() 51 void set_x(int x) { x_ = x; } in set_x() 52 int x_; variable
|
D | production.cc | 36 PrivateCode::PrivateCode() : x_(0) {} in PrivateCode()
|
/external/gtest/test/ |
D | gtest_prod_test.cc | 45 EXPECT_EQ(0, a.x_); in TEST() 48 EXPECT_EQ(1, a.x_); in TEST() 57 EXPECT_EQ(0, a.x_); in TEST_F() 60 EXPECT_EQ(2, a.x_); in TEST_F()
|
D | production.h | 49 int x() const { return x_; } in x() 51 void set_x(int x) { x_ = x; } in set_x() 52 int x_; variable
|
D | production.cc | 36 PrivateCode::PrivateCode() : x_(0) {} in PrivateCode()
|
/external/v8/test/mjsunit/ |
D | global-accessors.js | 30 var x_ = 0; variable 32 __defineSetter__('x', function(x) { x_ = x; }); 33 __defineGetter__('x', function() { return x_; });
|
D | debug-references.js | 109 function Point(x, y) { this.x_ = x; this.y_ = y;}
|
/external/clang/test/SemaObjCXX/ |
D | properties.mm | 9 X x_; field 18 - (const X&)x { return x_; } 19 - (void)setx:(const X&)other { x_ = other; }
|
/external/v8/src/ia32/ |
D | assembler-ia32-inl.h | 250 x_ = x; in Immediate() 256 x_ = reinterpret_cast<int32_t>(ext.address()); in Immediate() 262 x_ = reinterpret_cast<int32_t>(internal_offset); in Immediate() 272 x_ = reinterpret_cast<intptr_t>(handle.location()); in Immediate() 276 x_ = reinterpret_cast<intptr_t>(obj); in Immediate() 283 x_ = reinterpret_cast<intptr_t>(value); in Immediate() 289 x_ = reinterpret_cast<int32_t>(addr); in Immediate() 322 Label* label = reinterpret_cast<Label*>(x.x_); in emit() 327 emit(x.x_); in emit() 344 uint16_t value = static_cast<uint16_t>(x.x_); in emit_w()
|
D | assembler-ia32.h | 284 bool is_zero() const { return x_ == 0 && rmode_ == RelocInfo::NONE; } in is_zero() 286 return -128 <= x_ && x_ < 128 && rmode_ == RelocInfo::NONE; in is_int8() 289 return -32768 <= x_ && x_ < 32768 && rmode_ == RelocInfo::NONE; in is_int16() 295 int x_; variable
|
/external/webp/src/enc/ |
D | iterator.c | 43 it->x_ = 0; in VP8IteratorReset() 77 const int x = it->x_, y = it->y_; in VP8IteratorImport() 131 const int x = it->x_, y = it->y_; in VP8IteratorExport() 235 const int x = it->x_, y = it->y_; in VP8IteratorNext() 261 it->x_++; in VP8IteratorNext() 262 if (it->x_ == enc->mb_w_) { in VP8IteratorNext() 263 it->x_ = 0; in VP8IteratorNext() 361 it->i4_boundary_[17 + i] = enc->y_top_[it->x_ * 16 + i]; in VP8IteratorStartI4() 364 if (it->x_ < enc->mb_w_ - 1) { in VP8IteratorStartI4() 366 it->i4_boundary_[17 + i] = enc->y_top_[it->x_ * 16 + i]; in VP8IteratorStartI4()
|
D | quant.c | 303 const uint8_t* left = it->x_ ? enc->y_left_ : NULL; in VP8MakeLuma16Preds() 304 const uint8_t* top = it->y_ ? enc->y_top_ + it->x_ * 16 : NULL; in VP8MakeLuma16Preds() 310 const uint8_t* left = it->x_ ? enc->u_left_ : NULL; in VP8MakeChroma8Preds() 311 const uint8_t* top = it->y_ ? enc->uv_top_ + it->x_ * 16 : NULL; in VP8MakeChroma8Preds()
|
/external/stlport/test/unit/ |
D | func_test.cpp | 27 static bool bigger_than(int x_, int y_); 39 bool FuncTest::bigger_than(int x_, int y_) in bigger_than() argument 41 return x_ > y_; in bigger_than()
|
D | unary.h | 20 double operator()(double x_) const in operator() 21 { return ::sqrt(x_); } in operator()
|
D | ptr2_test.cpp | 35 static int sum(int x_, int y_) in sum() argument 37 return x_ + y_; in sum()
|
/external/chromium/chrome/browser/automation/ |
D | automation_provider_gtk.cc | 84 x_(absolute_x), in MouseMoveTask() 92 ui_controls::SendMouseMoveNotifyWhenDone(x_, y_, next_task_); in Run() 100 int x_; member in MouseMoveTask
|
/external/libvpx/vp8/encoder/ |
D | ssim.c | 107 int y_, x_; in get_ssimfull_kernelg() local 118 for (x_ = 0; x_ < KERNEL_SIZE; ++x_) in get_ssimfull_kernelg() 120 const int Wxy = Wy * K[x_]; in get_ssimfull_kernelg() 122 const int org_x = org[x_]; in get_ssimfull_kernelg() 123 const int rec_x = rec[x_]; in get_ssimfull_kernelg()
|
/external/mksh/src/ |
D | emacsfn.h | 3 #define FN(cname,sname,flags) static int x_##cname(int); 8 #define FN(cname,sname,flags) { x_##cname, sname, flags },
|
/external/clang/test/CodeGenCXX/ |
D | init-incomplete-type.cpp | 6 int x_; member
|
/external/openssl/crypto/bn/ |
D | bn_exp.c | 563 #define MOD_EXP_CTIME_ALIGN(x_) \ argument 564 …((unsigned char*)(x_) + (MOD_EXP_CTIME_MIN_CACHE_LINE_WIDTH - (((BN_ULONG)(x_)) & (MOD_EXP_CTIME_M…
|
/external/openssl/crypto/ec/ |
D | ecp_smpl.c | 638 const BIGNUM *x_, int y_bit, BN_CTX *ctx) in ec_GFp_simple_set_compressed_coordinates() argument 669 if (!BN_nnmod(x, x_, &group->field,ctx)) goto err; in ec_GFp_simple_set_compressed_coordinates() 673 if (!group->meth->field_sqr(group, tmp2, x_, ctx)) goto err; in ec_GFp_simple_set_compressed_coordinates() 674 if (!group->meth->field_mul(group, tmp1, tmp2, x_, ctx)) goto err; in ec_GFp_simple_set_compressed_coordinates() 678 if (!BN_mod_sqr(tmp2, x_, &group->field, ctx)) goto err; in ec_GFp_simple_set_compressed_coordinates() 679 if (!BN_mod_mul(tmp1, tmp2, x_, &group->field, ctx)) goto err; in ec_GFp_simple_set_compressed_coordinates()
|