HomeSort by relevance Sort by last modified time
    Searched refs:OtherNumberConstantType (Results 1 - 2 of 2) sorted by null

  /external/v8/src/compiler/
types.h 313 class OtherNumberConstantType : public TypeBase {
325 return AsType(new (zone->New(sizeof(OtherNumberConstantType)))
326 OtherNumberConstantType(value)); // NOLINT
329 static OtherNumberConstantType* cast(Type* type) {
331 return static_cast<OtherNumberConstantType*>(FromType(type));
334 explicit OtherNumberConstantType(double value)
530 return OtherNumberConstantType::New(value, zone);
584 OtherNumberConstantType* AsOtherNumberConstant() {
585 return OtherNumberConstantType::cast(this);
types.cc 449 bool OtherNumberConstantType::IsOtherNumberConstant(double value) {
456 bool OtherNumberConstantType::IsOtherNumberConstant(Object* value) {
831 DCHECK(OtherNumberConstantType::IsOtherNumberConstant(value));
    [all...]

Completed in 67 milliseconds