Home
last modified time | relevance | path

Searched defs:parent (Results 1 – 25 of 249) sorted by relevance

12345678910

/arkcompiler/ets_frontend/arkguard/test/ut/utils/
DNodeUtils.spec.ts34 … 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/
Dcgfunc.cpp26 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 …]
Disel.cpp268 static Operand *HandleShift(const BaseNode &parent, BaseNode &expr, MPISel &iSel) in HandleShift()
274 static Operand *HandleCvt(const BaseNode &parent, BaseNode &expr, MPISel &iSel) in HandleCvt()
279 static Operand *HandleExtractBits(const BaseNode &parent, BaseNode &expr, MPISel &iSel) in HandleExtractBits()
284 static Operand *HandleDread(const BaseNode &parent, BaseNode &expr, MPISel &iSel) in HandleDread()
290 static Operand *HandleAdd(const BaseNode &parent, BaseNode &expr, MPISel &iSel) in HandleAdd()
296 static Operand *HandleBior(const BaseNode &parent, BaseNode &expr, MPISel &iSel) in HandleBior()
302 static Operand *HandleBxor(const BaseNode &parent, BaseNode &expr, MPISel &iSel) in HandleBxor()
309 static Operand *HandleSub(const BaseNode &parent, BaseNode &expr, MPISel &iSel) in HandleSub()
315 static Operand *HandleDiv(const BaseNode &parent, BaseNode &expr, MPISel &iSel) in HandleDiv()
321 static Operand *HandleRem(const BaseNode &parent, BaseNode &expr, MPISel &iSel) in HandleRem()
[all …]
/arkcompiler/ets_frontend/ets2panda/ir/expressions/
Didentifier.cpp37 Identifier *Identifier::Clone(ArenaAllocator *const allocator, AstNode *const parent) in Clone()
52 Identifier *Identifier::CloneReference(ArenaAllocator *const allocator, AstNode *const parent) in CloneReference()
166 auto const *const parent = Parent(); in IsDeclaration() local
177 bool Identifier::CheckNotDeclarations(const ir::AstNode *parent, [[maybe_unused]] ScriptExtension e… in CheckNotDeclarations() argument
285 bool Identifier::CheckDefinitions(const ir::AstNode *parent, [[maybe_unused]] ScriptExtension ext) … in CheckDefinitions() argument
313 bool Identifier::CheckDeclarationsPart1(const ir::AstNode *parent, [[maybe_unused]] ScriptExtension… in CheckDeclarationsPart1() argument
370 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/
Dx64_cgfunc.cpp77 Operand *X64CGFunc::SelectDread(const BaseNode &parent, AddrofNode &expr) in SelectDread()
87 Operand *X64CGFunc::SelectIread(const BaseNode &parent, IreadNode &expr, int extraOffset, in SelectIread()
93 Operand *X64CGFunc::SelectIntConst(const MIRIntConst &intConst, const BaseNode &parent) in SelectIntConst()
98 Operand *X64CGFunc::SelectFloatConst(MIRFloatConst &floatConst, const BaseNode &parent) in SelectFloatConst()
103 Operand *X64CGFunc::SelectDoubleConst(MIRDoubleConst &doubleConst, const BaseNode &parent) in SelectDoubleConst()
112 …and *X64CGFunc::SelectAdd(BinaryNode &node, Operand &opnd0, Operand &opnd1, const BaseNode &parent) in SelectAdd()
117 …d *X64CGFunc::SelectShift(BinaryNode &node, Operand &opnd0, Operand &opnd1, const BaseNode &parent) in SelectShift()
126 …and *X64CGFunc::SelectMpy(BinaryNode &node, Operand &opnd0, Operand &opnd1, const BaseNode &parent) in SelectMpy()
131 …and *X64CGFunc::SelectRem(BinaryNode &node, Operand &opnd0, Operand &opnd1, const BaseNode &parent) in SelectRem()
140 …and *X64CGFunc::SelectDiv(BinaryNode &node, Operand &opnd0, Operand &opnd1, const BaseNode &parent) in SelectDiv()
[all …]
/arkcompiler/ets_runtime/ecmascript/compiler/
Daccess_object_stub_builder.h26 explicit AccessObjectStubBuilder(StubBuilder *parent) : StubBuilder(parent) in AccessObjectStubBuilder()
30 explicit AccessObjectStubBuilder(StubBuilder *parent, GateRef jsFunc) in AccessObjectStubBuilder()
Doperations_stub_builder.h24 explicit OperationsStubBuilder(StubBuilder *parent) in OperationsStubBuilder()
Dobject_operator_stub_builder.h26 explicit ObjectOperatorStubBuilder(StubBuilder *parent) in ObjectOperatorStubBuilder()
Dhash_stub_builder.h26 explicit HashStubBuilder(StubBuilder *parent, GateRef glue) in HashStubBuilder()
/arkcompiler/ets_runtime/ecmascript/compiler/builtins/
Dbuiltins_number_stub_builder.h23 explicit BuiltinsNumberStubBuilder(StubBuilder *parent) in BuiltinsNumberStubBuilder()
25 …BuiltinsNumberStubBuilder(BuiltinsStubBuilder *parent, GateRef glue, GateRef thisValue, GateRef nu… in BuiltinsNumberStubBuilder()
Dbuiltins_reflect_stub_builder.h23 explicit BuiltinsReflectStubBuilder(StubBuilder *parent) in BuiltinsReflectStubBuilder()
25 …BuiltinsReflectStubBuilder(BuiltinsStubBuilder *parent, GateRef glue, GateRef thisValue, GateRef n… in BuiltinsReflectStubBuilder()
Dbuiltins_object_stub_builder.h23 explicit BuiltinsObjectStubBuilder(StubBuilder *parent) in BuiltinsObjectStubBuilder()
25 …BuiltinsObjectStubBuilder(BuiltinsStubBuilder *parent, GateRef glue, GateRef thisValue, GateRef nu… in BuiltinsObjectStubBuilder()
Dbuiltins_collection_stub_builder.h26 …explicit BuiltinsCollectionStubBuilder(BuiltinsStubBuilder *parent, GateRef glue, GateRef thisValu… in BuiltinsCollectionStubBuilder()
28 explicit BuiltinsCollectionStubBuilder(StubBuilder *parent, GateRef glue, GateRef thisValue, in BuiltinsCollectionStubBuilder()
Dbuiltins_function_stub_builder.h23 explicit BuiltinsFunctionStubBuilder(StubBuilder *parent) in BuiltinsFunctionStubBuilder()
/arkcompiler/ets_frontend/ets2panda/ast_verifier/
DidentifierHasVariable.cpp49 const auto *parent = ast->Parent(); in CheckMoreAstExceptions() local
80 const auto *parent = ast->Parent(); in CheckAstExceptions() local
Dhelpers.h43 bool IsContainedIn(const T *child, const T *parent) in IsContainedIn()
/arkcompiler/ets_frontend/ets2panda/varbinder/
Dscope.h174 void SetParent(Scope *parent) in SetParent()
289 explicit Scope(ArenaAllocator *allocator, Scope *parent) in Scope() function
294 explicit Scope(ArenaAllocator *allocator, Scope *parent, ScopeFlags flags) in Scope() function
406 explicit VariableScope(ArenaAllocator *allocator, Scope *parent) : Scope(allocator, parent) {} in VariableScope()
447 explicit ParamScope(ArenaAllocator *allocator, Scope *parent) in ParamScope()
462 …explicit FunctionParamScope(ArenaAllocator *allocator, Scope *parent) : ParamScope(allocator, pare… in FunctionParamScope()
501 …explicit ScopeWithParamScope(ArenaAllocator *allocator, Scope *parent) : E(allocator, parent), par… in ScopeWithParamScope()
534 explicit LocalScope(ArenaAllocator *allocator, Scope *parent) : Scope(allocator, parent) {} in LocalScope()
535 …explicit LocalScope(ArenaAllocator *allocator, Scope *parent, ScopeFlags flags) : Scope(allocator,… in LocalScope()
548 explicit LocalScopeWithTypeAlias(ArenaAllocator *allocator, Scope *parent) in LocalScopeWithTypeAlias()
[all …]
/arkcompiler/ets_frontend/ets2panda/ir/ts/
DtsQualifiedName.cpp95 const ir::AstNode *parent = iter; in ToString() local
118 const ir::AstNode *parent = iter->Parent(); in BaseToString() local
151 TSQualifiedName *TSQualifiedName::Clone(ArenaAllocator *const allocator, AstNode *const parent) in Clone()
/arkcompiler/ets_runtime/test/aottest/forin_non_empty_prototype/
Dforin_non_empty_prototype.ts32 let parent = { variable
/arkcompiler/ets_frontend/test/scripts/performance_test/
Dtest_report.json31 "parent":"22", string
65 "parent":"", string
83 "parent":"", string
/arkcompiler/ets_runtime/test/aottest/forin_delete_property/
Dforin_delete_property.ts33 let parent = { variable
/arkcompiler/ets_frontend/ets2panda/ir/
DtypeNode.cpp23 TypeNode *TypeNode::Clone(ArenaAllocator *const allocator, AstNode *const parent) in Clone()
/arkcompiler/ets_frontend/ets2panda/util/ast-builders/
DastBuilder.h38 BuilderType &SetParent(AstNode *parent) in SetParent()
/arkcompiler/ets_runtime/test/moduletest/forin_dictionary_mode/
Dforin_dictionary_mode.js23 let parent = { variable
/arkcompiler/ets_runtime/test/aottest/forin_special_object/
Dforin_special_object.ts29 let parent = new Int8Array(arr); variable

12345678910