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

  /external/v8/tools/clang/value_cleanup/tests/
values.h 17 // FundamentalValue represents the simple fundamental types of values.
18 class FundamentalValue : public Value {
20 explicit FundamentalValue(bool in_value);
21 explicit FundamentalValue(int in_value);
22 explicit FundamentalValue(double in_value);
list-value-append-original.cc 28 list.Append(new base::FundamentalValue(1 == 0));
29 list.Append(new base::FundamentalValue(true));
30 list.Append(new base::FundamentalValue(static_cast<unsigned char>(1.0)));
31 list.Append(new base::FundamentalValue(double{3}));
  /external/v8/src/inspector/
v8-value-copier.cc 94 protocol::FundamentalValue::create(value.As<v8::Boolean>()->Value());
101 *result = protocol::FundamentalValue::create(intValue);
104 *result = protocol::FundamentalValue::create(doubleValue);

Completed in 552 milliseconds