| /arkcompiler/ets_runtime/ecmascript/compiler/ |
| D | lcr_circuit_builder.h | 25 GateRef CircuitBuilder::Int8Equal(GateRef x, GateRef y) in Int8Equal() 30 GateRef CircuitBuilder::Int32NotEqual(GateRef x, GateRef y) in Int32NotEqual() 35 GateRef CircuitBuilder::Int64NotEqual(GateRef x, GateRef y) in Int64NotEqual() 40 GateRef CircuitBuilder::Int64Equal(GateRef x, GateRef y) in Int64Equal() 45 GateRef CircuitBuilder::Int32Equal(GateRef x, GateRef y) in Int32Equal() 50 GateRef CircuitBuilder::IntPtrLessThan(GateRef x, GateRef y) in IntPtrLessThan() 55 GateRef CircuitBuilder::IntPtrLessThanOrEqual(GateRef x, GateRef y) in IntPtrLessThanOrEqual() 60 GateRef CircuitBuilder::IntPtrGreaterThan(GateRef x, GateRef y) in IntPtrGreaterThan() 65 GateRef CircuitBuilder::IntPtrGreaterThanOrEqual(GateRef x, GateRef y) in IntPtrGreaterThanOrEqual() 70 GateRef CircuitBuilder::IntPtrAnd(GateRef x, GateRef y) in IntPtrAnd() [all …]
|
| D | mcr_circuit_builder.h | 29 GateRef CircuitBuilder::TaggedIsInt(GateRef x) in TaggedIsInt() 36 GateRef CircuitBuilder::TaggedIsDouble(GateRef x) in TaggedIsDouble() 45 GateRef CircuitBuilder::TaggedIsObject(GateRef x) in TaggedIsObject() 52 GateRef CircuitBuilder::TaggedIsNumber(GateRef x) in TaggedIsNumber() 57 GateRef CircuitBuilder::TaggedIsNumeric(GateRef x) in TaggedIsNumeric() 388 GateRef CircuitBuilder::BothAreString(GateRef x, GateRef y) in BothAreString() 394 GateRef CircuitBuilder::TaggedIsHole(GateRef x) in TaggedIsHole() 399 GateRef CircuitBuilder::TaggedIsNullPtr(GateRef x) in TaggedIsNullPtr() 404 GateRef CircuitBuilder::IsSpecialHole(GateRef x) in IsSpecialHole() 409 GateRef CircuitBuilder::IsNotSpecialHole(GateRef x) in IsNotSpecialHole() [all …]
|
| D | stub_builder-inl.h | 383 inline GateRef StubBuilder::Int16Add(GateRef x, GateRef y) in Int16Add() 388 inline GateRef StubBuilder::Int32Add(GateRef x, GateRef y) in Int32Add() 393 inline GateRef StubBuilder::Int64Add(GateRef x, GateRef y) in Int64Add() 398 inline GateRef StubBuilder::DoubleAdd(GateRef x, GateRef y) in DoubleAdd() 403 inline GateRef StubBuilder::PtrMul(GateRef x, GateRef y) in PtrMul() 408 inline GateRef StubBuilder::PtrAdd(GateRef x, GateRef y) in PtrAdd() 413 inline GateRef StubBuilder::PtrSub(GateRef x, GateRef y) in PtrSub() 418 inline GateRef StubBuilder::IntPtrAnd(GateRef x, GateRef y) in IntPtrAnd() 423 inline GateRef StubBuilder::IntPtrEqual(GateRef x, GateRef y) in IntPtrEqual() 428 inline GateRef StubBuilder::Int16Sub(GateRef x, GateRef y) in Int16Sub() [all …]
|
| /arkcompiler/ets_frontend/ets2panda/test/ast/parser/ts/ |
| D | InvalidExpressions.ts | 27 let x = new.target(17); variable 28 let x = new import("file.ts"); variable 29 let x = new Type(a, ...); variable 30 let x = new Type(1, 2, ; variable
|
| D | InvalidStatements.ts | 17 let x = 8 variable 66 const x: number; constant 68 let [x, y]; variable 88 private public x: number; property in B 89 protected protected x: number; property in B
|
| D | InvalidParserImpl.ts | 17 x: number; property in A 29 x: number = 3; property in A
|
| /arkcompiler/runtime_core/libpandabase/ |
| D | clang.h | 25 #define THREAD_ANNOTATION_ATTRIBUTE__(x) __attribute__((x)) argument 27 #define THREAD_ANNOTATION_ATTRIBUTE__(x) // no-op argument 31 #define CAPABILITY(x) THREAD_ANNOTATION_ATTRIBUTE__(capability(x)) argument 34 #define SHARED_CAPABILITY(x) THREAD_ANNOTATION_ATTRIBUTE__(shared_capability(x)) argument 43 #define GUARDED_BY(x) THREAD_ANNOTATION_ATTRIBUTE__(guarded_by(x)) argument 46 #define PT_GUARDED_BY(x) THREAD_ANNOTATION_ATTRIBUTE__(pt_guarded_by(x)) argument 85 #define ASSERT_CAPABILITY(x) THREAD_ANNOTATION_ATTRIBUTE__(assert_capability(x)) argument 88 #define ASSERT_SHARED_CAPABILITY(x) THREAD_ANNOTATION_ATTRIBUTE__(assert_shared_capability(x)) argument 91 #define RETURN_CAPABILITY(x) THREAD_ANNOTATION_ATTRIBUTE__(lock_returned(x)) argument
|
| /arkcompiler/runtime_core/static_core/libpandabase/ |
| D | clang.h | 25 #define THREAD_ANNOTATION_ATTRIBUTE__(x) __attribute__((x)) // CC-OFF(G.NAM.01) public API argument 27 #define THREAD_ANNOTATION_ATTRIBUTE__(x) // no-op argument 31 #define CAPABILITY(x) THREAD_ANNOTATION_ATTRIBUTE__(capability(x)) argument 34 #define SHARED_CAPABILITY(x) THREAD_ANNOTATION_ATTRIBUTE__(shared_capability(x)) argument 43 #define GUARDED_BY(x) THREAD_ANNOTATION_ATTRIBUTE__(guarded_by(x)) argument 46 #define PT_GUARDED_BY(x) THREAD_ANNOTATION_ATTRIBUTE__(pt_guarded_by(x)) argument 85 #define ASSERT_CAPABILITY(x) THREAD_ANNOTATION_ATTRIBUTE__(assert_capability(x)) argument 88 #define ASSERT_SHARED_CAPABILITY(x) THREAD_ANNOTATION_ATTRIBUTE__(assert_shared_capability(x)) argument 91 #define RETURN_CAPABILITY(x) THREAD_ANNOTATION_ATTRIBUTE__(lock_returned(x)) argument
|
| /arkcompiler/runtime_core/static_core/verification/util/ |
| D | mem.h | 57 ALWAYS_INLINE inline bool IsNotPointer(uintptr_t x) in IsNotPointer() 62 ALWAYS_INLINE inline bool IsPointer(uintptr_t x) in IsPointer() 67 ALWAYS_INLINE inline int GetTag(uintptr_t x) in GetTag() 73 ALWAYS_INLINE inline uintptr_t GetPayload(uintptr_t x) in GetPayload() 79 ALWAYS_INLINE inline uintptr_t GetPointer(uintptr_t x) in GetPointer()
|
| /arkcompiler/ets_runtime/test/moduletest/regress/ |
| D | regress.js | 17 print(JSON.stringify({ x : 1 }, ["x", 1, "x", 1])); property 23 var getter_obj = { get x() { fired++; return 2; } }; getter 27 print(JSON.stringify({ x : 3, y : 4}, ["y", "x"])); property 28 print(JSON.stringify({ x : 3, y : 4, 1 : 2 }, ["y", 1, "x"])); property 31 var a = { x : 8 }; property 33 a.__proto__ = { x : 7 }; property 35 var b = { __proto__: { x: 9 } }; property 38 var c = {x: 10}; property 48 var mixed_obj = { x : 3 }; property 53 print(JSON.stringify({ x: 1, y:2, z: {x:3, b:4}}, ["z","x"])); property [all …]
|
| /arkcompiler/ets_runtime/test/aottest/analyze_property/not_meet_subtyping/ |
| D | not_meet_subtyping.ts | 22 set x(v: string) { method in C 26 get x(): string { method in C 34 x: string = "setter"; property in D
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/interop_js/tests/es_object/to_string/ |
| D | test_to_string_method.js | 16 exports.Identity = function (x) { argument 19 exports.Curry = function (x) { argument 33 exports.CurryToString = function (x) { argument 52 exports.Optional = function (x) { argument
|
| /arkcompiler/ets_runtime/test/aottest/definefieldbyname/ |
| D | definefieldbyname.js | 16 x = 1; field in A 22 set x(v) { setter in B 25 x = 1; field in B
|
| /arkcompiler/ets_runtime/test/moduletest/multiargs/ |
| D | multiargs.js | 31 function one(x) argument 36 function two(x,y) argument 41 function three(x,y,z) argument 46 function four(x,y,z,t) argument 51 function five(x,y,z,t,a) argument
|
| /arkcompiler/ets_runtime/test/jittest/mega_ic_test/ |
| D | mega_ic_test.ts | 22 x = 0; property in A 28 x = 0; property in B 33 x = 0; property in C 38 x = 0; property in D 43 x = 5; property in E
|
| /arkcompiler/ets_runtime/ecmascript/compiler/tests/ |
| D | instruction_combine_test.cpp | 54 template <class T> T SilenceNaN(T x) in SilenceNaN() 76 auto x = builder.Arguments(1); in HWTEST_F_L0() local 136 auto x = builder.Arguments(1); in HWTEST_F_L0() local 163 auto x = builder.Arguments(2); in HWTEST_F_L0() local 174 auto x = builder.Arguments(4); in HWTEST_F_L0() local 223 auto x = builder.Arguments(1); in HWTEST_F_L0() local 250 auto x = builder.Arguments(2); in HWTEST_F_L0() local 257 auto x = builder.Arguments(3); in HWTEST_F_L0() local 267 auto x = builder.Arguments(3); in HWTEST_F_L0() local 295 auto x = builder.Arguments(1); in HWTEST_F_L0() local [all …]
|
| /arkcompiler/runtime_core/compiler/tests/js/ |
| D | regallocTryTest.js | 46 function func0(x, y) { argument 57 function func1(x, y) { argument 74 function func2(x, y) { argument
|
| /arkcompiler/ets_frontend/ets2panda/test/ast/parser/js/ |
| D | InvalidParserImpl.js | 19 #x; field in A 20 #x; field in A 30 #constructor(x) { argument
|
| /arkcompiler/ets_runtime/test/moduletest/compareobjecthclass/ |
| D | compareobjecthclass.js | 24 let obj1 = {x : 1, y : 2, z :3}; property 25 let obj2 = {y : 2, x : 1, z :3}; property 26 let obj3 = {x : 11, y : 12, z :13}; property
|
| /arkcompiler/ets_runtime/tools/circuit_viewer/src/engine/control/ |
| D | XButton.js | 19 constructor(x, y, w, h, name) { argument 31 move(x, y, w, h) { argument 64 isTouchIn(x, y) { argument 71 onTouch(msg, x, y) { argument
|
| D | XScroll.js | 29 move(x, y, w, h) { argument 45 isTouchIn(x, y) { argument 94 onTouch(msg, x, y) { argument 129 x: x, property
|
| /arkcompiler/runtime_core/libark_defect_scan_aux/include/ |
| D | inst_type.h | 24 #define INSTTYPE_ENUM(x, y) y, argument 25 #define BUILD_OPCODE_MAP_TABLE(x, y) {Opcode::x, InstType::y}, argument 26 #define BUILD_INTRINSIC_MAP_TABLE(x, y) {IntrinsicId::x, InstType::y}, argument
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/interop_js/tests/test_callable/ |
| D | test_callable.js | 25 function callNamedFunction(x, y) { argument 29 let callAnonymousFunction = function (x, y) { argument 33 let callArrowFunction = (x, y) => x + y; argument
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/interop_js/tests/test_undefined/ |
| D | index.js | 17 exports.etsUndefinedConsume = (x) => x === undefined && x !== null; argument 20 exports.etsNullConsume = (x) => x === null && x !== undefined; argument
|
| /arkcompiler/ets_runtime/test/moduletest/definefield/ |
| D | definefield.js | 16 x = 1; field in A 23 x = 1; field in B
|