Home
last modified time | relevance | path

Searched full:o1 (Results 1 – 25 of 80) sorted by relevance

1234

/arkcompiler/runtime_core/static_core/plugins/ets/stdlib/std/core/
DRuntime.sts33 * @param o1 first object to compare
39 public equals(o1: NullishType, o2: NullishType): boolean {
40 if (this.isSameReference(o1, null)) {
43 if (this.isSameReference(o1, undefined)) {
50 return o1 == o2
56 * @param o1 first object to compare
62 public sameValue(o1: NullishType, o2: NullishType): boolean {
63 if (this.isSameReference(o1, null)) {
66 if (this.isSameReference(o1, undefined)) {
73 if (o1 instanceof Number && o2 instanceof Number) {
[all …]
/arkcompiler/runtime_core/libark_defect_scan_aux/tests/unittest/
Dgraph_test.js32 function foo(o1, o2) { argument
35 if (o1 > o2) {
36 c.Add(o1);
39 } else if (o1 < o2) {
41 a = o1;
43 a = o1 + o2;
48 function func2(o1, o2) { argument
49 console.log(o1, o2);
Dcallee_info_test.js20 function func1(o1, o2) { } argument
23 function foo(o1, o2) { argument
33 func4(o1.x);
35 let a = o1.x;
43 function foo1(o1, o2, o3) { argument
86 function func6(o1, o2) { argument
92 ns.sub(o2, o1);
112 function func10(o1, o2) { argument
Ddebug_info_test.js17 function func1(o1, o2) { argument
18 console.log(o1 + o2);
23 let func3 = (o1, o2, o3, o4, o5) => { }; argument
25 function foo(o1, o2) { argument
29 if (o1.x > a + b) {
30 c = o1.x;
Ddefine_info_test.js22 function func2(o1, o2) { argument
45 func9(o1, o2, o3) { } argument
56 func12(o1) { } argument
59 func15(o1, o2) { } argument
/arkcompiler/ets_runtime/test/aottest/aot_type_test/polyaccess/
Dpolyaccess.ts28 function foo(o1: C | D, o2: C) {
30 print(o1.x);
31 o1.y = 3;
32 print(o1.y);
38 function bar(o1: C, o2: C | D) {
40 print(o1.x);
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/aarch64/
Daarch64_cgfunc.h223 void SelectAdd(Operand &resOpnd, Operand &o0, Operand &o1, PrimType primType) override;
224 Operand *SelectAdd(BinaryNode &node, Operand &o0, Operand &o1, const BaseNode &parent) override;
226 …void SelectMadd(Operand &resOpnd, Operand &oM0, Operand &oM1, Operand &o1, PrimType primeType) ove…
227 …Operand *SelectMadd(BinaryNode &node, Operand &oM0, Operand &oM1, Operand &o1, const BaseNode &par…
228 Operand *SelectRor(BinaryNode &node, Operand &o0, Operand &o1, const BaseNode &parent) override;
229 … Operand *SelectShift(BinaryNode &node, Operand &o0, Operand &o1, const BaseNode &parent) override;
230 Operand *SelectSub(BinaryNode &node, Operand &o0, Operand &o1, const BaseNode &parent) override;
231 void SelectSub(Operand &resOpnd, Operand &o0, Operand &o1, PrimType primType) override;
232 … Operand *SelectBand(BinaryNode &node, Operand &o0, Operand &o1, const BaseNode &parent) override;
233 void SelectBand(Operand &resOpnd, Operand &o0, Operand &o1, PrimType primType) override;
[all …]
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/x86_64/
Dx64_cgfunc.h187 …RegOperand *SelectVectorAddLong(PrimType rTy, Operand *o1, Operand *o2, PrimType oty, bool isLow) …
188 …RegOperand *SelectVectorAddWiden(Operand *o1, PrimType oty1, Operand *o2, PrimType oty2, bool isLo…
189 RegOperand *SelectVectorAbs(PrimType rType, Operand *o1) override;
190 …RegOperand *SelectVectorBinOp(PrimType rType, Operand *o1, PrimType oTyp1, Operand *o2, PrimType o…
192 …RegOperand *SelectVectorBitwiseOp(PrimType rType, Operand *o1, PrimType oty1, Operand *o2, PrimTyp…
195 … RegOperand *SelectVectorCompareZero(Operand *o1, PrimType oty1, Operand *o2, Opcode opc) override;
196 …RegOperand *SelectVectorCompare(Operand *o1, PrimType oty1, Operand *o2, PrimType oty2, Opcode opc…
200 …RegOperand *SelectVectorAbsSubL(PrimType rType, Operand *o1, Operand *o2, PrimType oTy, bool isLow…
201 …RegOperand *SelectVectorMadd(Operand *o1, PrimType oTyp1, Operand *o2, PrimType oTyp2, Operand *o3,
203 RegOperand *SelectVectorMerge(PrimType rTyp, Operand *o1, Operand *o2, int32 iNum) override;
[all …]
/arkcompiler/ets_frontend/arkguard/test/grammar/export_namespace_declaration_prop/
Dexport_declaration_namespace_expected.txt18 o1: number;
28 u1: o1 | undefined;
30 interface o1 {
/arkcompiler/ets_runtime/test/aottest/try_catch_finally/
Dtry_catch_finally.ts127 let o1 = {} variable
132 [...o1] = [0]
135 o1[Math]
146 [...o1] = [0]
149 o1[Math]
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/
Dcg_irbuilder.cpp37 Insn &InsnBuilder::BuildInsn(MOperator opCode, Operand &o0, Operand &o1) in BuildInsn() argument
40 return BuildInsn(opCode, tMd).AddOpndChain(o0).AddOpndChain(o1); in BuildInsn()
42 Insn &InsnBuilder::BuildInsn(MOperator opCode, Operand &o0, Operand &o1, Operand &o2) in BuildInsn() argument
45 return BuildInsn(opCode, tMd).AddOpndChain(o0).AddOpndChain(o1).AddOpndChain(o2); in BuildInsn()
48 Insn &InsnBuilder::BuildInsn(MOperator opCode, Operand &o0, Operand &o1, Operand &o2, Operand &o3) in BuildInsn() argument
51 … return BuildInsn(opCode, tMd).AddOpndChain(o0).AddOpndChain(o1).AddOpndChain(o2).AddOpndChain(o3); in BuildInsn()
54 Insn &InsnBuilder::BuildInsn(MOperator opCode, Operand &o0, Operand &o1, Operand &o2, Operand &o3, … in BuildInsn() argument
58 return nI.AddOpndChain(o0).AddOpndChain(o1).AddOpndChain(o2).AddOpndChain(o3).AddOpndChain(o4); in BuildInsn()
Dcfi.cpp34 #define CFI_DEFINE(k, sub, n, o0, o1, o2) {".cfi_" #k, n, {Operand::kOpd##o0, Operand::kOpd##o1, Op… argument
35 #define ARM_DIRECTIVES_DEFINE(k, sub, n, o0, o1, o2) \ argument
36 {"." #k, n, {Operand::kOpd##o0, Operand::kOpd##o1, Operand::kOpd##o2}},
/arkcompiler/ets_runtime/test/moduletest/regressdefineproperty/
Dregressdefineproperty.js62 const o1 = { variable
66 Object.defineProperty(o1, "k" + i, {
71 print(JSON.stringify(o1))
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_func_tests/spec/import_export/03.import_directives/
Dt_isnt_exported_but_var_of_t_exported.sts25 let O1 = O
26 console.log(O1)
Dnon_linux_path_separators.sts25 let O1 = new O("text", 2)
26 console.log(O1)
/arkcompiler/ets_frontend/es2panda/test/debug/parser/
Dtest-class-definition-1.js29 0o1; // OctalIntegerLiteral
30 0O1; // OctalIntegerLiteral
/arkcompiler/ets_frontend/arkguard/test/grammar/toplevel/
Dtoplevel_import_test2_expected.txt23 let o1 = 1;
25 export { l1 as b1, m1 as a1, n1 as c1, o1 as d1, p1 as e1 };
Dtoplevel_import_test3.ts19 …* Expect toplevel elements to avoid being obfuscated as l1, k1, m1, n1, o1, since they're export e…
21 import { b1 as l1, a1 as k1, c1 as m1, d1 as n1, e1 as o1 } from './toplevel_import_test2';
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/
Dcg_irbuilder.h39 Insn &BuildInsn(MOperator opCode, Operand &o0, Operand &o1);
40 Insn &BuildInsn(MOperator opCode, Operand &o0, Operand &o1, Operand &o2);
41 Insn &BuildInsn(MOperator opCode, Operand &o0, Operand &o1, Operand &o2, Operand &o3);
42 …Insn &BuildInsn(MOperator opCode, Operand &o0, Operand &o1, Operand &o2, Operand &o3, Operand &o4);
/arkcompiler/runtime_core/static_core/plugins/ets/tests/interop_js/tests/declgen_ets2ts/imports/
Dlib1.sts22 this.o1 = new Lib2Class();
25 o1: Lib2Class;
/arkcompiler/ets_frontend/arkguard/test/grammar/export_obfuscation/
Dname_as_export_api_1_expected.txt18 o1() {
26 o1() {
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/x86_64/
Dx64_cgfunc.cpp692 RegOperand *X64CGFunc::SelectVectorAddLong(PrimType rTy, Operand *o1, Operand *o2, PrimType oty, bo… in SelectVectorAddLong() argument
697 RegOperand *X64CGFunc::SelectVectorAddWiden(Operand *o1, PrimType oty1, Operand *o2, PrimType oty2,… in SelectVectorAddWiden() argument
702 RegOperand *X64CGFunc::SelectVectorAbs(PrimType rType, Operand *o1) in SelectVectorAbs() argument
707 RegOperand *X64CGFunc::SelectVectorBinOp(PrimType rType, Operand *o1, PrimType oTyp1, Operand *o2, … in SelectVectorBinOp() argument
713 RegOperand *X64CGFunc::SelectVectorBitwiseOp(PrimType rType, Operand *o1, PrimType oty1, Operand *o… in SelectVectorBitwiseOp() argument
719 RegOperand *X64CGFunc::SelectVectorCompareZero(Operand *o1, PrimType oty1, Operand *o2, Opcode opc) in SelectVectorCompareZero() argument
724 RegOperand *X64CGFunc::SelectVectorCompare(Operand *o1, PrimType oty1, Operand *o2, PrimType oty2, … in SelectVectorCompare() argument
744 RegOperand *X64CGFunc::SelectVectorAbsSubL(PrimType rType, Operand *o1, Operand *o2, PrimType oTy, … in SelectVectorAbsSubL() argument
749 RegOperand *X64CGFunc::SelectVectorMadd(Operand *o1, PrimType oTyp1, Operand *o2, PrimType oTyp2, O… in SelectVectorMadd() argument
755 RegOperand *X64CGFunc::SelectVectorMerge(PrimType rTyp, Operand *o1, Operand *o2, int32 iNum) in SelectVectorMerge() argument
[all …]
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/aarch64/
Daarch64_proepilog.cpp314 Operand &o1 = aarchCGFunc.GetOrCreatePhysicalRegisterOperand(reg1, GetPointerBitSize(), rty); in AppendInstructionPushPair() local
322 Insn &pushInsn = cgFunc.GetInsnBuilder()->BuildInsn(mOp, o0, o1, *o2); in AppendInstructionPushPair()
337 Operand *o1 = &aarchCGFunc.CreateStkTopOpnd(static_cast<uint32>(offset), GetPointerBitSize()); in AppendInstructionPushSingle() local
339 MemOperand *aarchMemO1 = static_cast<MemOperand *>(o1); in AppendInstructionPushSingle()
342 o1 = &aarchCGFunc.SplitOffsetWithAddInstruction(*aarchMemO1, dataSize, R16); in AppendInstructionPushSingle()
345 Insn &pushInsn = cgFunc.GetInsnBuilder()->BuildInsn(mOp, o0, *o1); in AppendInstructionPushSingle()
375 … RegOperand &o1 = aarchCGFunc.GetOrCreatePhysicalRegisterOperand(reg1, size * kBitsPerByte, rty); in AppendInstructionForAllocateOrDeallocateCallFrame() local
377 Insn &insn2 = cgFunc.GetInsnBuilder()->BuildInsn(mOp, o1, *o2); in AppendInstructionForAllocateOrDeallocateCallFrame()
393 … RegOperand &o1 = aarchCGFunc.GetOrCreatePhysicalRegisterOperand(reg1, size * kBitsPerByte, rty); in AppendInstructionForAllocateOrDeallocateCallFrame() local
395 Insn &insn2 = cgFunc.GetInsnBuilder()->BuildInsn(isAllocate ? MOP_xstr : MOP_xldr, o1, *mo); in AppendInstructionForAllocateOrDeallocateCallFrame()
[all …]
/arkcompiler/ets_runtime/test/aottest/object/object_assign/
Dobject_assign.ts21 const o1 = { a: 1 }; constant
25 const obj = Object.assign(o1, o2, o3);
/arkcompiler/ets_frontend/arkguard/test/grammar/export_namecache/
DnamecacheTest9_import_expected.txt3 function test(o1: m1, p1: n1): void { }

1234