Home
last modified time | relevance | path

Searched defs:Number (Results 1 – 20 of 20) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_util/include/
Dmpl_number.h33 explicit Number(ElementType data) : val(data) {} in Number() function
36 explicit Number(U data) : val(static_cast<T>(data)) in Number() function
40 Number(const Number &num) : val(num.val) {} in Number() function
42 Number(Number &&num) noexcept : val(std::move(num.val)) {} in Number() function
/arkcompiler/ets_frontend/ets2panda/ir/expressions/literals/
DnumberLiteral.h40 [[nodiscard]] lexer::Number &Number() in Number() function
45 [[nodiscard]] const lexer::Number &Number() const noexcept in Number() function
/arkcompiler/runtime_core/static_core/runtime/tooling/inspector/types/
Dremote_object.h54 static RemoteObject Number(int32_t number) in Number() function
60 static RemoteObject Number(T number) in Number() function
79 static RemoteObject Number(T number) in Number() function
/arkcompiler/toolchain/tooling/static/types/
Dremote_object.h54 static RemoteObject Number(int32_t number) in Number() function
60 static RemoteObject Number(T number) in Number() function
79 static RemoteObject Number(T number) in Number() function
/arkcompiler/ets_frontend/es2panda/test/parser/ts/
Dtest-function-with-type-assertion.ts20 var func2 = <(arg0: Number) => Number>function(a: Number) { return a }; variable
/arkcompiler/ets_frontend/ets2panda/lexer/token/
Dnumber.cpp21 Number::Number(util::StringView str, NumberFlags flags) noexcept : str_(str), flags_(flags) in Number() function in ark::es2panda::lexer::Number
/arkcompiler/ets_frontend/es2panda/ir/expressions/literals/
DnumberLiteral.h42 T Number() const in Number() function
/arkcompiler/ets_runtime/test/moduletest/typedarrayjoin/
Dtypedarrayjoin.js50 Number.prototype.toString = detachBuffer; class
/arkcompiler/ets_runtime/test/moduletest/storeicbyvalue/
Dstoreicbyvalue.js55 Number.prototype.__proto__ = ['tr']; class
/arkcompiler/ets_runtime/ecmascript/
Djs_typed_array.h24 enum class ContentType : uint8_t { None = 1, Number, BigInt }; enumerator
Ddate_parse.h260 static DateUnit Number(int value, int len) in Number() function
/arkcompiler/ets_runtime/test/moduletest/arrayfill/
Darrayfill.js28 Number.prototype.__proto__ = ["tr"]; class
/arkcompiler/ets_runtime/test/moduletest/arrayfrom/
Darrayfrom.js169 Number.prototype.__proto__ = { class
/arkcompiler/runtime_core/static_core/plugins/ets/doc/stdlib/packages/
Descompat.rst15838 Number section in Classes
15848 Methods
/arkcompiler/ets_runtime/ecmascript/snapshot/mem/
Dsnapshot_processor.cpp94 using Number = builtins::BuiltinsNumber; typedef
/arkcompiler/toolchain/tooling/dynamic/base/
Dpt_types.h417 static const std::string Number; // NOLINT (readability-identifier-naming) member
Dpt_types.cpp29 const std::string ObjectType::Number = "number"; // NOLINT (readability-identifier-naming) member in panda::ecmascript::tooling::ObjectType
/arkcompiler/ets_frontend/ets2panda/linter/src/lib/
DTypeScriptLinter.ts4225 const initializerNumber = isNumericInitializer ? Number(initializerText) : NaN; constant
/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins.cpp109 using Number = builtins::BuiltinsNumber; typedef
/arkcompiler/jsvm/src/
Djs_native_api_v8.cpp3427 GEN_COERCE_FUNCTION(NUMBER, Number, number) in GEN_COERCE_FUNCTION() argument