| /arkcompiler/ets_frontend/arkguard/test/ut/utils/ |
| D | NodeUtils.spec.ts | 34 … const parent = ts.factory.createPropertyAssignment(node, ts.factory.createNumericLiteral('1')); constant 40 const parent = ts.factory.createComputedPropertyName(node); constant 46 const parent = ts.factory.createBindingElement(undefined, node, 'bindingElement'); constant 52 …const parent = ts.factory.createPropertySignature(undefined, node, undefined, ts.factory.createKey… constant 58 …const parent = ts.factory.createMethodSignature(undefined, node, undefined, undefined, [], undefin… constant 64 const parent = ts.factory.createEnumMember(node); constant 70 …const parent = ts.factory.createPropertyDeclaration(undefined, undefined, node, undefined, undefin… constant 76 …const parent = ts.factory.createMethodDeclaration(undefined, undefined, undefined, node, undefined… constant 82 … const parent = ts.factory.createSetAccessorDeclaration(undefined, undefined, node, [], undefined); constant 88 …const parent = ts.factory.createGetAccessorDeclaration(undefined, undefined, node, [], undefined, … constant [all …]
|
| /arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/ |
| D | cgfunc.cpp | 26 static Operand *HandleDread(const BaseNode &parent, BaseNode &expr, CGFunc &cgFunc) in HandleDread() 32 static Operand *HandleRegread(const BaseNode &parent, BaseNode &expr, CGFunc &cgFunc) in HandleRegread() 39 static Operand *HandleConstVal(const BaseNode &parent, BaseNode &expr, CGFunc &cgFunc) in HandleConstVal() 58 static Operand *HandleAdd(const BaseNode &parent, BaseNode &expr, CGFunc &cgFunc) in HandleAdd() 64 static Operand *HandleShift(const BaseNode &parent, BaseNode &expr, CGFunc &cgFunc) in HandleShift() 70 static Operand *HandleMpy(const BaseNode &parent, BaseNode &expr, CGFunc &cgFunc) in HandleMpy() 76 static Operand *HandleDiv(const BaseNode &parent, BaseNode &expr, CGFunc &cgFunc) in HandleDiv() 82 static Operand *HandleRem(const BaseNode &parent, BaseNode &expr, CGFunc &cgFunc) in HandleRem() 88 static Operand *HandleIread(const BaseNode &parent, BaseNode &expr, CGFunc &cgFunc) in HandleIread() 94 static Operand *HandleSub(const BaseNode &parent, BaseNode &expr, CGFunc &cgFunc) in HandleSub() [all …]
|
| D | isel.cpp | 288 static Operand *HandleShift(const BaseNode &parent, BaseNode &expr, MPISel &iSel) in HandleShift() 294 static Operand *HandleCvt(const BaseNode &parent, BaseNode &expr, MPISel &iSel) in HandleCvt() 299 static Operand *HandleExtractBits(const BaseNode &parent, BaseNode &expr, MPISel &iSel) in HandleExtractBits() 304 static Operand *HandleDread(const BaseNode &parent, BaseNode &expr, MPISel &iSel) in HandleDread() 310 static Operand *HandleAdd(const BaseNode &parent, BaseNode &expr, MPISel &iSel) in HandleAdd() 316 static Operand *HandleBior(const BaseNode &parent, BaseNode &expr, MPISel &iSel) in HandleBior() 322 static Operand *HandleBxor(const BaseNode &parent, BaseNode &expr, MPISel &iSel) in HandleBxor() 329 static Operand *HandleSub(const BaseNode &parent, BaseNode &expr, MPISel &iSel) in HandleSub() 335 static Operand *HandleDiv(const BaseNode &parent, BaseNode &expr, MPISel &iSel) in HandleDiv() 341 static Operand *HandleRem(const BaseNode &parent, BaseNode &expr, MPISel &iSel) in HandleRem() [all …]
|
| /arkcompiler/ets_runtime/ecmascript/compiler/ |
| D | operations_stub_builder.h | 24 explicit OperationsStubBuilder(StubBuilder *parent) in OperationsStubBuilder() 26 OperationsStubBuilder(StubBuilder *parent, GateRef globalEnv) in OperationsStubBuilder()
|
| D | access_object_stub_builder.h | 26 AccessObjectStubBuilder(StubBuilder *parent, GateRef globalEnv) : StubBuilder(parent, globalEnv) in AccessObjectStubBuilder() 30 AccessObjectStubBuilder(StubBuilder *parent, GateRef globalEnv, GateRef jsFunc) in AccessObjectStubBuilder()
|
| D | new_object_stub_builder.h | 33 explicit NewObjectStubBuilder(StubBuilder *parent) in NewObjectStubBuilder() 35 NewObjectStubBuilder(StubBuilder *parent, GateRef globalEnv) in NewObjectStubBuilder()
|
| D | hash_stub_builder.h | 26 explicit HashStubBuilder(StubBuilder *parent, GateRef glue) in HashStubBuilder()
|
| /arkcompiler/ets_frontend/ets2panda/lsp/src/ |
| D | get_adjusted_location.cpp | 72 bool IsDeclarationOrModifier(AstNode *node, AstNode *parent, bool forRename) in IsDeclarationOrModifier() 94 std::optional<AstNode *> HandleTSAsExpression(AstNode *node, AstNode *parent, in HandleTSAsExpression() 116 std::optional<AstNode *> HandleTSImportType(AstNode *node, AstNode *parent, in HandleTSImportType() 135 std::optional<AstNode *> HandleImportDeclaration(AstNode *node, AstNode *parent, in HandleImportDeclaration() 144 inline std::optional<AstNode *> HandleExportAllDeclaration(AstNode *node, AstNode *parent, bool for… in HandleExportAllDeclaration() 153 inline std::optional<AstNode *> HandleTSClassImplements(AstNode *node, AstNode *parent) in HandleTSClassImplements() 161 inline std::optional<AstNode *> HandleTSInferType(AstNode *node, AstNode *parent, in HandleTSInferType() 173 inline std::optional<AstNode *> HandleTSTypeParameterDeclaration(AstNode *parent, in HandleTSTypeParameterDeclaration() 182 std::optional<AstNode *> HandleTSTypeOperator(AstNode *parent, const ArenaVector<AstNode *> &parent… in HandleTSTypeOperator() 198 std::optional<AstNode *> HandleBasicExpressions(AstNode *node, AstNode *parent, in HandleBasicExpressions() [all …]
|
| D | get_name_or_dotted_name_span.cpp | 23 ir::AstNode *parent = node->Parent(); in IsRightSideOfPropertyAccess() local 49 ir::AstNode *parent = node->Parent(); in IsNameOfModuleDeclaration() local 60 ir::AstNode *parent = node->Parent(); in IsRightSideOfQualifiedName() local
|
| /arkcompiler/ets_frontend/ets2panda/ir/expressions/ |
| D | identifier.cpp | 62 Identifier *Identifier::Clone(ArenaAllocator *const allocator, AstNode *const parent) in Clone() 76 Identifier *Identifier::CloneReference(ArenaAllocator *const allocator, AstNode *const parent) in CloneReference() 188 auto const *const parent = Parent(); in IsDeclaration() local 199 bool Identifier::CheckNotDeclarations(const ir::AstNode *parent, [[maybe_unused]] ScriptExtension e… in CheckNotDeclarations() argument 307 bool Identifier::CheckDefinitions(const ir::AstNode *parent, [[maybe_unused]] ScriptExtension ext) … in CheckDefinitions() argument 335 bool Identifier::CheckDeclarationsPart1(const ir::AstNode *parent, [[maybe_unused]] ScriptExtension… in CheckDeclarationsPart1() argument 396 bool Identifier::CheckDeclarationsPart2(const ir::AstNode *parent, ScriptExtension ext) const in CheckDeclarationsPart2() argument
|
| /arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/x86_64/ |
| D | x64_cgfunc.cpp | 123 Operand *X64CGFunc::SelectDread(const BaseNode &parent, AddrofNode &expr) in SelectDread() 133 Operand *X64CGFunc::SelectIread(const BaseNode &parent, IreadNode &expr, int extraOffset, in SelectIread() 139 Operand *X64CGFunc::SelectIntConst(const MIRIntConst &intConst, const BaseNode &parent) in SelectIntConst() 144 Operand *X64CGFunc::SelectFloatConst(MIRFloatConst &floatConst, const BaseNode &parent) in SelectFloatConst() 149 Operand *X64CGFunc::SelectDoubleConst(MIRDoubleConst &doubleConst, const BaseNode &parent) in SelectDoubleConst() 158 …and *X64CGFunc::SelectAdd(BinaryNode &node, Operand &opnd0, Operand &opnd1, const BaseNode &parent) in SelectAdd() 163 …d *X64CGFunc::SelectShift(BinaryNode &node, Operand &opnd0, Operand &opnd1, const BaseNode &parent) in SelectShift() 172 …and *X64CGFunc::SelectMpy(BinaryNode &node, Operand &opnd0, Operand &opnd1, const BaseNode &parent) in SelectMpy() 177 …and *X64CGFunc::SelectRem(BinaryNode &node, Operand &opnd0, Operand &opnd1, const BaseNode &parent) in SelectRem() 186 …and *X64CGFunc::SelectDiv(BinaryNode &node, Operand &opnd0, Operand &opnd1, const BaseNode &parent) in SelectDiv() [all …]
|
| /arkcompiler/ets_frontend/ets2panda/varbinder/ |
| D | scope.h | 167 void SetParent(Scope *parent) noexcept in SetParent() 288 explicit Scope(ArenaAllocator *allocator, Scope *parent) in Scope() function 293 explicit Scope(ArenaAllocator *allocator, Scope *parent, ScopeFlags flags) in Scope() function 408 explicit VariableScope(ArenaAllocator *allocator, Scope *parent) : Scope(allocator, parent) {} in VariableScope() 450 explicit ParamScope(ArenaAllocator *allocator, Scope *parent) in ParamScope() 465 …explicit FunctionParamScope(ArenaAllocator *allocator, Scope *parent) : ParamScope(allocator, pare… in FunctionParamScope() 504 …explicit ScopeWithParamScope(ArenaAllocator *allocator, Scope *parent) : E(allocator, parent), par… in ScopeWithParamScope() 537 explicit LocalScope(ArenaAllocator *allocator, Scope *parent) : Scope(allocator, parent) {} in LocalScope() 538 …explicit LocalScope(ArenaAllocator *allocator, Scope *parent, ScopeFlags flags) : Scope(allocator,… in LocalScope() 551 …explicit FunctionScope(ArenaAllocator *allocator, Scope *parent) : ScopeWithParamScope(allocator, … in FunctionScope() [all …]
|
| /arkcompiler/ets_runtime/ecmascript/compiler/builtins/ |
| D | builtins_number_stub_builder.h | 23 explicit BuiltinsNumberStubBuilder(StubBuilder *parent, GateRef globalEnv) in BuiltinsNumberStubBuilder() 25 …BuiltinsNumberStubBuilder(BuiltinsStubBuilder* parent, GateRef glue, GateRef thisValue, GateRef nu… in BuiltinsNumberStubBuilder()
|
| D | builtins_reflect_stub_builder.h | 23 explicit BuiltinsReflectStubBuilder(StubBuilder *parent, GateRef globalEnv) in BuiltinsReflectStubBuilder() 25 …BuiltinsReflectStubBuilder(BuiltinsStubBuilder* parent, GateRef glue, GateRef thisValue, GateRef n… in BuiltinsReflectStubBuilder()
|
| D | builtins_object_stub_builder.h | 23 explicit BuiltinsObjectStubBuilder(StubBuilder *parent, GateRef globalEnv) in BuiltinsObjectStubBuilder() 25 …BuiltinsObjectStubBuilder(BuiltinsStubBuilder* parent, GateRef glue, GateRef thisValue, GateRef nu… in BuiltinsObjectStubBuilder()
|
| D | builtins_collection_stub_builder.h | 26 …explicit BuiltinsCollectionStubBuilder(BuiltinsStubBuilder *parent, GateRef glue, GateRef thisValu… in BuiltinsCollectionStubBuilder() 29 explicit BuiltinsCollectionStubBuilder(StubBuilder *parent, GateRef glue, GateRef thisValue, in BuiltinsCollectionStubBuilder()
|
| D | builtins_proxy_stub_builder.h | 24 explicit BuiltinsProxyStubBuilder(StubBuilder *parent, GateRef globalEnv) in BuiltinsProxyStubBuilder() 26 BuiltinsProxyStubBuilder(StubBuilder *parent, GateRef glue, GateRef globalEnv) in BuiltinsProxyStubBuilder() 28 …BuiltinsProxyStubBuilder(BuiltinsStubBuilder* parent, GateRef glue, GateRef thisValue, GateRef num… in BuiltinsProxyStubBuilder()
|
| D | builtins_function_stub_builder.h | 23 explicit BuiltinsFunctionStubBuilder(StubBuilder *parent, GateRef globalEnv) in BuiltinsFunctionStubBuilder()
|
| /arkcompiler/ets_frontend/ets2panda/test/unit/plugin/ |
| D | plugin_proceed_to_state_update_function_expression.cpp | 37 auto parent = g_impl->AstNodeParent(g_ctx, ast); in Find() local 49 auto parent = g_impl->AstNodeParent(g_ctx, ast); in Find() local
|
| /arkcompiler/ets_frontend/ets2panda/ast_verifier/invariants/ |
| D | identifierHasVariable.cpp | 48 const auto *parent = ast_->Parent(); in IsInObjectExpr() local 62 const auto *parent = ast_->Parent(); in IsInPackageDecl() local
|
| D | checkConstProperties.cpp | 27 auto parent = ast->Parent(); in operator ()() local
|
| /arkcompiler/ets_runtime/test/aottest/forin_non_empty_prototype/ |
| D | forin_non_empty_prototype.ts | 32 let parent = { variable
|
| /arkcompiler/ets_frontend/test/scripts/performance_test/ |
| D | test_report.json | 31 "parent":"22", string 65 "parent":"", string 83 "parent":"", string
|
| /arkcompiler/ets_runtime/test/aottest/forin_delete_property/ |
| D | forin_delete_property.ts | 33 let parent = { variable
|
| /arkcompiler/ets_frontend/ets2panda/test/unit/lsp/ |
| D | inlay_hints_test.cpp | 57 auto *parent = reinterpret_cast<ark::es2panda::ir::AstNode *>(astContext->parserProgram->Ast()); in TEST_F() local 127 …const auto *parent = reinterpret_cast<ark::es2panda::ir::AstNode *>(astContext->parserProgram->Ast… in TEST_F() local 181 …const auto *parent = reinterpret_cast<ark::es2panda::ir::AstNode *>(astContext->parserProgram->Ast… in TEST_F() local 230 …const auto *parent = reinterpret_cast<ark::es2panda::ir::AstNode *>(astContext->parserProgram->Ast… in TEST_F() local 275 …const auto *parent = reinterpret_cast<ark::es2panda::ir::AstNode *>(astContext->parserProgram->Ast… in TEST_F() local 317 …const auto *parent = reinterpret_cast<ark::es2panda::ir::AstNode *>(astContext->parserProgram->Ast… in TEST_F() local
|