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

1 2 3

  /external/v8/src/
property-details.h 124 return (IsDouble() && other.IsDouble()) ||
125 (!IsDouble() && !other.IsDouble());
180 bool IsDouble() const { return kind_ == kDouble; }
186 IsSmi() || IsInteger32() || IsDouble();
field-index-inl.h 94 details.representation().IsDouble());
layout-descriptor-inl.h 31 if (details.type() != DATA || !details.representation().IsDouble()) {
layout-descriptor.cc 268 !field_index.is_inobject() || !details.representation().IsDouble();
  /external/v8/test/unittests/compiler/
instruction-selector-unittest.h 140 bool IsDouble(const InstructionOperand* operand) const {
141 return IsDouble(ToVreg(operand));
144 bool IsDouble(const Node* node) const { return IsDouble(ToVreg(node)); }
204 bool IsDouble(int virtual_register) const {
209 return !IsDouble(virtual_register) && !IsReference(virtual_register);
instruction-selector-unittest.cc 226 EXPECT_TRUE(s.IsDouble(param));
290 EXPECT_EQ(s.IsDouble(phi), s.IsDouble(param0));
291 EXPECT_EQ(s.IsDouble(phi), s.IsDouble(param1));
  /external/v8/src/crankshaft/arm64/
lithium-arm64.cc 781 DCHECK(instr->representation().IsDouble());
782 DCHECK(instr->left()->representation().IsDouble());
783 DCHECK(instr->right()->representation().IsDouble());
877 } else if (instr->representation().IsDouble()) {
984 if (r.IsInteger32() || r.IsSmi() || r.IsDouble()) {
    [all...]
  /external/v8/src/compiler/
access-info.cc 270 *map, index, field_representation.IsDouble());
274 } else if (field_representation.IsDouble()) {
447 *transition_map, index, field_representation.IsDouble());
451 } else if (field_representation.IsDouble()) {
  /external/v8/src/crankshaft/arm/
lithium-arm.cc 361 hydrogen()->value()->representation().IsDouble());
715 DCHECK(instr->representation().IsDouble());
716 DCHECK(instr->left()->representation().IsDouble());
717 DCHECK(instr->right()->representation().IsDouble());
    [all...]
lithium-codegen-arm.cc 418 } else if (r.IsDouble()) {
456 } else if (r.IsDouble()) {
529 } else if (r.IsDouble()) {
    [all...]
  /external/v8/src/crankshaft/mips/
lithium-mips.cc 368 hydrogen()->value()->representation().IsDouble());
722 DCHECK(instr->representation().IsDouble());
723 DCHECK(instr->left()->representation().IsDouble());
724 DCHECK(instr->right()->representation().IsDouble());
    [all...]
  /external/v8/src/crankshaft/mips64/
lithium-mips64.cc 368 hydrogen()->value()->representation().IsDouble());
722 DCHECK(instr->representation().IsDouble());
723 DCHECK(instr->left()->representation().IsDouble());
724 DCHECK(instr->right()->representation().IsDouble());
    [all...]
  /external/v8/src/crankshaft/ppc/
lithium-ppc.cc 374 hydrogen()->value()->representation().IsDouble());
726 DCHECK(instr->representation().IsDouble());
727 DCHECK(instr->left()->representation().IsDouble());
728 DCHECK(instr->right()->representation().IsDouble());
    [all...]
  /packages/apps/Test/connectivity/sl4n/rapidjson/example/tutorial/
tutorial.cpp 64 assert(document["pi"].IsDouble());
  /external/v8/src/crankshaft/ia32/
lithium-ia32.cc 408 hydrogen()->value()->representation().IsDouble());
753 DCHECK(instr->representation().IsDouble());
754 DCHECK(instr->left()->representation().IsDouble());
755 DCHECK(instr->right()->representation().IsDouble());
    [all...]
  /external/v8/src/crankshaft/x87/
lithium-x87.cc 419 hydrogen()->value()->representation().IsDouble());
752 DCHECK(instr->representation().IsDouble());
753 DCHECK(instr->left()->representation().IsDouble());
754 DCHECK(instr->right()->representation().IsDouble());
    [all...]
  /external/v8/src/crankshaft/x64/
lithium-x64.cc 405 hydrogen()->value()->representation().IsDouble());
738 DCHECK(instr->representation().IsDouble());
739 DCHECK(instr->left()->representation().IsDouble());
740 DCHECK(instr->right()->representation().IsDouble());
    [all...]
  /art/runtime/verifier/
reg_type_test.cc 105 EXPECT_FALSE(bool_reg_type.IsDouble());
138 EXPECT_FALSE(byte_reg_type.IsDouble());
171 EXPECT_FALSE(char_reg_type.IsDouble());
204 EXPECT_FALSE(short_reg_type.IsDouble());
237 EXPECT_FALSE(int_reg_type.IsDouble());
270 EXPECT_FALSE(long_reg_type.IsDouble());
303 EXPECT_FALSE(float_reg_type.IsDouble());
336 EXPECT_TRUE(double_reg_type.IsDouble());
reg_type.h 61 virtual bool IsDouble() const { return false; }
532 bool IsDouble() const OVERRIDE { return true; }
    [all...]
  /external/v8/src/crankshaft/
hydrogen-uint32-analysis.cc 43 DCHECK(HChange::cast(use)->to().IsDouble() ||
hydrogen-range-analysis.cc 70 instr->to().IsDouble() ||
hydrogen-instructions.cc     [all...]
hydrogen-escape-analysis.cc 148 if (representation.IsSmiOrInteger32() || representation.IsDouble()) {
  /packages/apps/Test/connectivity/sl4n/rapidjson/test/unittest/
valuetest.cpp 377 EXPECT_FALSE(x.IsDouble());
423 EXPECT_NEAR(1234.0, x.GetDouble(), 0.0); // Number can always be cast as double but !IsDouble().
425 EXPECT_FALSE(x.IsDouble());
463 EXPECT_FALSE(x.IsDouble());
517 EXPECT_FALSE(x.IsDouble());
553 EXPECT_TRUE(x.IsDouble());
    [all...]
  /external/v8/test/unittests/compiler/mips/
instruction-selector-mips-unittest.cc 877 &InstructionSelectorTest::Stream::IsDouble,
884 &InstructionSelectorTest::Stream::IsDouble,
    [all...]

Completed in 1047 milliseconds

1 2 3