/external/chromium_org/extensions/renderer/ |
logging_native_handler.cc | 34 bool check_value; local 36 ParseArgs(args, &check_value, &error_message); 37 CHECK(check_value) << error_message; 42 bool check_value; local 44 ParseArgs(args, &check_value, &error_message); 45 DCHECK(check_value) << error_message; 67 bool* check_value, 70 *check_value = args[0]->BooleanValue();
|
logging_native_handler.h | 47 bool* check_value,
|
/external/chromium_org/third_party/skia/tests/ |
ClampRangeTest.cpp | 21 static void check_value(int64_t bigfx, int expected) { function 42 check_value(bigfx, range.fV0); 47 check_value(bigfx, kRamp); 52 check_value(bigfx, range.fV1);
|
/art/compiler/dex/quick/mips/ |
int_mips.cc | 131 LIR* MipsMir2Lir::OpCmpImmBranch(ConditionCode cond, RegStorage reg, int check_value, LIR* target) { 133 if (check_value != 0) { 136 LoadConstant(t_reg, check_value); 153 LoadConstant(t_reg, check_value);
|
codegen_mips.h | 138 LIR* OpCmpImmBranch(ConditionCode cond, RegStorage reg, int check_value, LIR* target);
|
/art/compiler/dex/quick/arm64/ |
codegen_arm64.h | 94 int offset, int check_value, LIR* target, LIR** compare) OVERRIDE; 206 LIR* OpCmpImmBranch(ConditionCode cond, RegStorage reg, int check_value, LIR* target) OVERRIDE;
|
int_arm64.cc | 259 LIR* Arm64Mir2Lir::OpCmpImmBranch(ConditionCode cond, RegStorage reg, int check_value, 263 if (check_value == 0) { 279 OpRegImm(kOpCmp, reg, check_value); 288 RegStorage base_reg, int offset, int check_value, 297 LIR* branch = OpCmpImmBranch(cond, temp_reg, check_value, target); [all...] |
/external/cmockery/cmockery_0_1_2/src/ |
cmockery.c | 675 check->check_value = check_function; 954 static int check_value(const void *value, void *check_value_data) { function 964 _expect_check(function, parameter, file, line, check_value, [all...] |
/external/chromium_org/third_party/ots/src/ |
cmap.cc | 491 const uint32_t check_value = local 495 check_value > kUVSUpperLimit || 500 last_unicode_value = check_value; [all...] |
/art/compiler/dex/quick/x86/ |
utility_x86.cc | [all...] |
codegen_x86.h | 265 LIR* OpCmpImmBranch(ConditionCode cond, RegStorage reg, int check_value, LIR* target) OVERRIDE; [all...] |
int_x86.cc | 106 int check_value, LIR* target) { 107 if ((check_value == 0) && (cond == kCondEq || cond == kCondNe)) { 108 // TODO: when check_value == 0 and reg is rCX, use the jcxz/nz opcode 112 NewLIR2(IS_SIMM8(check_value) ? kX86Cmp64RI8 : kX86Cmp64RI, reg.GetReg(), check_value); local 114 NewLIR2(IS_SIMM8(check_value) ? kX86Cmp32RI8 : kX86Cmp32RI, reg.GetReg(), check_value); local [all...] |
/art/compiler/dex/quick/arm/ |
codegen_arm.h | 140 LIR* OpCmpImmBranch(ConditionCode cond, RegStorage reg, int check_value, LIR* target);
|
int_arm.cc | 367 LIR* ArmMir2Lir::OpCmpImmBranch(ConditionCode cond, RegStorage reg, int check_value, LIR* target) { 381 if (!skip && reg.Low8() && (check_value == 0)) { 393 OpRegImm(kOpCmp, reg, check_value); [all...] |
/external/cmockery/cmockery_0_1_2/src/google/ |
cmockery.h | 314 CheckParameterValue check_value; member in struct:CheckParameterEvent
|
/art/compiler/dex/quick/ |
codegen_util.cc | [all...] |
mir_to_lir.h | [all...] |