Home
last modified time | relevance | path

Searched defs:node (Results 1 – 25 of 543) sorted by relevance

12345678910>>...22

/arkcompiler/ets_frontend/arkguard/test/ut/utils/
DNodeUtils.spec.ts29 const node = ts.factory.createIdentifier('name'); constant
33 const node = ts.factory.createIdentifier('name'); constant
39 const node = ts.factory.createIdentifier('name'); constant
45 const node = ts.factory.createIdentifier('name'); constant
51 const node = ts.factory.createIdentifier('name'); constant
57 const node = ts.factory.createIdentifier('name'); constant
63 const node = ts.factory.createIdentifier('name'); constant
69 const node = ts.factory.createIdentifier('name'); constant
75 const node = ts.factory.createIdentifier('name'); constant
81 const node = ts.factory.createIdentifier('name'); constant
[all …]
DScopeAnalyzer.spec.ts337 const node: SourceFile = sourceFile; constant
343 const node: Identifier = factory.createIdentifier('noSymbolIdentifier'); constant
351 const node: Identifier = (classDeclaration as any)?.name; constant
358 …const node = (anotherSourceFile.statements[0] as VariableStatement).declarationList.declarations[0… constant
378 const node: SourceFile = sourceFile; constant
384 const node: Identifier = factory.createIdentifier('noSymbolIdentifier'); constant
392 const node: Identifier = (functionDeclaration as any)?.name; constant
399 …const node = (anotherSourceFile.statements[0] as VariableStatement).declarationList.declarations[0… constant
419 const node: SourceFile = sourceFile; constant
425 const node: Identifier = factory.createIdentifier('noSymbolIdentifier'); constant
[all …]
/arkcompiler/ets_frontend/ets2panda/test/unit/
Dsizeof_node_test.cpp62 AstNode *node = nullptr; in SizeOf() local
81 Typed<AstNode> *node = nullptr; in SizeOf() local
98 AnnotationAllowed<TypedAstNode> *node = nullptr; in SizeOf() local
109 JsDocAllowed<AnnotationAllowed<TypedAstNode>> *node = nullptr; in SizeOf() local
120 ClassDefinition *node = nullptr; in SizeOf() local
155 ClassDeclaration *node = nullptr; in SizeOf() local
167 Typed<Statement> *node = nullptr; in SizeOf() local
184 ClassElement *node = nullptr; in SizeOf() local
199 AnnotationAllowed<ClassElement> *node = nullptr; in SizeOf() local
210 JsDocAllowed<AnnotationAllowed<ClassElement>> *node = nullptr; in SizeOf() local
[all …]
/arkcompiler/ets_frontend/ets2panda/test/unit/lsp/
Dget_type_of_symbol_at_location_test.cpp43 …astNode->FindChild([](AstNode *node) { return node->IsIdentifier() && node->AsIdentifier()->Name()… in TEST_F()
48 …astNode->FindChild([](AstNode *node) { return node->IsIdentifier() && node->AsIdentifier()->Name()… in TEST_F()
53 …astNode->FindChild([](AstNode *node) { return node->IsIdentifier() && node->AsIdentifier()->Name()… in TEST_F()
58 …astNode->FindChild([](AstNode *node) { return node->IsIdentifier() && node->AsIdentifier()->Name()… in TEST_F()
63 …astNode->FindChild([](AstNode *node) { return node->IsIdentifier() && node->AsIdentifier()->Name()… in TEST_F()
68 …astNode->FindChild([](AstNode *node) { return node->IsIdentifier() && node->AsIdentifier()->Name()… in TEST_F()
73 …astNode->FindChild([](AstNode *node) { return node->IsIdentifier() && node->AsIdentifier()->Name()… in TEST_F()
78 …astNode->FindChild([](AstNode *node) { return node->IsIdentifier() && node->AsIdentifier()->Name()… in TEST_F()
83 …astNode->FindChild([](AstNode *node) { return node->IsIdentifier() && node->AsIdentifier()->Name()… in TEST_F()
103 …astNode->FindChild([](AstNode *node) { return node->IsIdentifier() && node->AsIdentifier()->Name()… in TEST_F()
[all …]
/arkcompiler/ets_frontend/es2panda/compiler/core/
Dpandagen.cpp272 void PandaGen::InitializeLexEnv(const ir::AstNode *node) in InitializeLexEnv()
285 void PandaGen::CopyFunctionArguments(const ir::AstNode *node) in CopyFunctionArguments()
329 void PandaGen::GetFunctionObject(const ir::AstNode *node) in GetFunctionObject()
334 void PandaGen::GetNewTarget(const ir::AstNode *node) in GetNewTarget()
339 void PandaGen::GetThis(const ir::AstNode *node) in GetThis()
344 void PandaGen::SetThis(const ir::AstNode *node) in SetThis()
349 void PandaGen::LoadVar(const ir::Identifier *node, const binder::ScopeFindResult &result) in LoadVar()
382 void PandaGen::StoreVar(const ir::AstNode *node, const binder::ScopeFindResult &result, bool isDecl… in StoreVar()
433 void PandaGen::StoreAccumulator(const ir::AstNode *node, VReg vreg) in StoreAccumulator()
438 void PandaGen::LoadAccFromArgs(const ir::AstNode *node) in LoadAccFromArgs()
[all …]
/arkcompiler/ets_frontend/ets2panda/test/unit/lowerings/
Dconst_expression.cpp22 static bool CheckNumberLiteral(const ir::AstNode *node) in CheckNumberLiteral()
51 ASSERT_FALSE(ast->IsAnyChild([](ir::AstNode *const node) { in TEST_F()
56 …ast->IsAnyChild([](ir::AstNode *const node) { return CheckNumberLiteral<int32_t, expectA>(node); }… in TEST_F()
59 …ast->IsAnyChild([](ir::AstNode *const node) { return CheckNumberLiteral<int32_t, expectC>(node); }… in TEST_F()
62 …ast->IsAnyChild([](ir::AstNode *const node) { return CheckNumberLiteral<int32_t, expectD>(node); }… in TEST_F()
84 ASSERT_FALSE(ast->IsAnyChild([](ir::AstNode *const node) { in TEST_F()
89 …ast->IsAnyChild([](ir::AstNode *const node) { return CheckNumberLiteral<int32_t, expectA>(node); }… in TEST_F()
92 …ast->IsAnyChild([](ir::AstNode *const node) { return CheckNumberLiteral<int32_t, expectC>(node); }… in TEST_F()
95 …ast->IsAnyChild([](ir::AstNode *const node) { return CheckNumberLiteral<int32_t, expectD>(node); }… in TEST_F()
116 ASSERT_FALSE(ast->IsAnyChild([](ir::AstNode *const node) { in TEST_F()
[all …]
/arkcompiler/ets_frontend/ets2panda/compiler/core/
DETSGen.h135 void BranchIfFalse(const ir::AstNode *node, Label *ifFalse) in BranchIfFalse()
140 void BranchIfTrue(const ir::AstNode *node, Label *ifTrue) in BranchIfTrue()
145 void BranchIfUndefined(const ir::AstNode *node, Label *ifNull) in BranchIfUndefined()
150 void BranchIfNotUndefined(const ir::AstNode *node, Label *ifNotNull) in BranchIfNotUndefined()
155 void BranchIfNull(const ir::AstNode *node, Label *ifTaken) in BranchIfNull()
161 void BranchIfNotNull(const ir::AstNode *node, Label *ifTaken) in BranchIfNotNull()
171 void JumpTo(const ir::AstNode *node, Label *labelTo) in JumpTo()
176 void EmitThrow(const ir::AstNode *node, VReg err) in EmitThrow()
218 void ApplyConversion(const ir::AstNode *node) in ApplyConversion()
252 void JumpCompareRegister(const ir::AstNode *node, VReg lhs, Label *ifFalse) in JumpCompareRegister()
[all …]
DETSGen.cpp129 void ETSGen::ApplyConversionAndStoreAccumulator(const ir::AstNode *const node, const VReg vreg, in ApplyConversionAndStoreAccumulator()
136 VReg ETSGen::StoreException(const ir::AstNode *node) in StoreException()
146 void ETSGen::StoreAccumulator(const ir::AstNode *const node, const VReg vreg) in StoreAccumulator()
162 void ETSGen::LoadAccumulator(const ir::AstNode *node, VReg vreg) in LoadAccumulator()
178 IRNode *ETSGen::AllocMov(const ir::AstNode *const node, const VReg vd, const VReg vs) in AllocMov()
196 IRNode *ETSGen::AllocMov(const ir::AstNode *const node, OutVReg vd, const VReg vs) in AllocMov()
217 void ETSGen::MoveVreg(const ir::AstNode *const node, const VReg vd, const VReg vs) in MoveVreg()
234 void ETSGen::LoadAccumulatorPoison(const ir::AstNode *node, const checker::Type *type) in LoadAccumulatorPoison()
253 void ETSGen::LoadAccumulatorDynamicModule(const ir::AstNode *node, const ir::ETSImportDeclaration *… in LoadAccumulatorDynamicModule()
270 void ETSGen::LoadDynamicModuleVariable(const ir::AstNode *node, varbinder::Variable const *const va… in LoadDynamicModuleVariable()
[all …]
Dpandagen.cpp50 explicit EcmaDisabled(const ir::AstNode *node, [[maybe_unused]] Args &&...args) : IRNode(node) in EcmaDisabled()
332 void PandaGen::StoreAccumulator(const ir::AstNode *node, VReg vreg) in StoreAccumulator()
337 void PandaGen::LoadAccumulator(const ir::AstNode *node, VReg reg) in LoadAccumulator()
342 IRNode *PandaGen::AllocMov(const ir::AstNode *node, const VReg vd, const VReg vs) in AllocMov()
347 IRNode *PandaGen::AllocMov(const ir::AstNode *node, OutVReg vd, const VReg vs) in AllocMov()
353 void PandaGen::MoveVreg(const ir::AstNode *node, VReg vd, VReg vs) in MoveVreg()
358 void PandaGen::LoadAccumulatorDouble(const ir::AstNode *node, double num) in LoadAccumulatorDouble()
363 void PandaGen::LoadAccumulatorInt(const ir::AstNode *node, size_t num) in LoadAccumulatorInt()
368 void PandaGen::StoreConst(const ir::AstNode *node, VReg reg, Constant id) in StoreConst()
374 void PandaGen::LoadConst(const ir::AstNode *node, Constant id) in LoadConst()
[all …]
DregAllocator.h43 [[nodiscard]] T *Alloc(const ir::AstNode *const node, Args &&...args) in Alloc()
49 void Add(const ir::AstNode *const node, Args &&...args) in Add()
72 void Emit(const ir::AstNode *const node, Args &&...args) in Emit()
105 void Emit(const ir::AstNode *const node, Args &&...args) in Emit()
123 …void Emit(const ir::AstNode *const node, const VReg rangeStart, const std::size_t argCount, Args &… in Emit()
/arkcompiler/ets_frontend/ets2panda/lsp/src/
Drename.cpp36 auto node = GetAdjustedLocation(GetTouchingPropertyName(context, pos), true, ctx->allocator); in GetRenameInfo() local
53 std::string kindModifiers, ir::AstNode *node) in GetRenameInfoSuccess()
60 TextSpan CreateTriggerSpanForNode(ir::AstNode *node) in CreateTriggerSpanForNode()
72 std::optional<RenameInfoType> GetRenameInfoForNode(ir::AstNode *node, checker::ETSChecker *checker, in GetRenameInfoForNode()
112 …d::optional<checker::VerifiedType> GetContextualTypeFromParentOrAncestorTypeNode(ir::AstNode *node, in GetContextualTypeFromParentOrAncestorTypeNode()
135 std::string GetTextOfNode(ir::AstNode *node, parser::Program *program) in GetTextOfNode()
141 std::string GetSourceTextOfNodeFromSourceFile(util::StringView sourceCode, ir::AstNode *node) in GetSourceTextOfNodeFromSourceFile()
154 ir::AstNode *TryGetImportFromModuleSpecifier(ir::AstNode *node) in TryGetImportFromModuleSpecifier()
185 bool NodeIsMissing(ir::AstNode *node) in NodeIsMissing()
222 std::optional<RenameInfoSuccess> GetRenameInfoForModule(ir::AstNode *node, parser::Program *program) in GetRenameInfoForModule()
[all …]
Dquick_info.cpp26 ir::AstNode *GetEnumMemberByName(ir::AstNode *node, const util::StringView &name) in GetEnumMemberByName()
38 bool IsIncludedToken(const ir::AstNode *node) in IsIncludedToken()
58 auto node = GetTouchingToken(context, position, false); in GetTokenForQuickInfo() local
68 bool IsObjectLiteralElement(ir::AstNode *node) in IsObjectLiteralElement()
77 ir::AstNode *GetContainingObjectLiteralNode(ir::AstNode *node) in GetContainingObjectLiteralNode()
96 ir::AstNode *GetContextualTypeNode(ir::AstNode *node) in GetContextualTypeNode()
118 ir::AstNode *GetPropertyNodeFromContextualType(ir::AstNode *node, ir::AstNode *contextualTypeNode) in GetPropertyNodeFromContextualType()
153 bool IsDeclaration(ir::AstNode *node) in IsDeclaration()
175 bool IsDefinition(ir::AstNode *node) in IsDefinition()
180 bool IsIdentifierOfDeclaration(ir::AstNode *node) in IsIdentifierOfDeclaration()
[all …]
Dget_adjusted_location.cpp33 ArenaVector<AstNode *> GetChildren(AstNode *node, ArenaAllocator *allocator) in GetChildren()
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()
198 std::optional<AstNode *> HandleBasicExpressions(AstNode *node, AstNode *parent, in HandleBasicExpressions()
213 std::optional<AstNode *> HandleBinaryExpressions(AstNode *node, AstNode *parent, in HandleBinaryExpressions()
[all …]
Dsuggestion_diagnostics.cpp41 void Check(ir::AstNode *node, std::vector<FileDiagnostic> &diag, std::unordered_map<std::string, bo… in Check()
53 bool CheckGivenTypeExistInChilds(ir::AstNode *node, ir::AstNodeType type) in CheckGivenTypeExistInChilds()
62 void AddConvertToAsyncFunctionDiagnostics(ir::AstNode *node, std::vector<FileDiagnostic> &diag, in AddConvertToAsyncFunctionDiagnostics()
76 bool IsConvertibleFunction(ir::AstNode *node, std::unordered_map<std::string, bool> &visitedFunc) in IsConvertibleFunction()
82 bool HasReturnStatementWithPromiseHandler(ir::AstNode *node, std::unordered_map<std::string, bool> … in HasReturnStatementWithPromiseHandler()
90 bool IsReturnStatementWithFixablePromiseHandler(ir::AstNode *node, std::unordered_map<std::string, … in IsReturnStatementWithFixablePromiseHandler()
103 ir::AstNode *HasSpecificIdentifier(ir::AstNode *node) in HasSpecificIdentifier()
135 bool IsFixablePromiseHandler(ir::AstNode *node, std::unordered_map<std::string, bool> &visitedFunc) in IsFixablePromiseHandler()
163 bool HasPropertyAccessExpressionWithName(ir::AstNode *node, const std::string &func) in HasPropertyAccessExpressionWithName()
168 bool IsPromiseHandler(ir::AstNode *node) in IsPromiseHandler()
[all …]
Dclass_hierarchy.cpp27 std::string GetHierarchyDeclarationFileName(const ir::AstNode *node) in GetHierarchyDeclarationFileName()
47 std::string GetHierarchyDeclarationName(const ir::AstNode *node) in GetHierarchyDeclarationName()
61 HierarchyType GetHierarchyType(const ir::AstNode *node) in GetHierarchyType()
75 size_t GetPosition(const ir::AstNode *node) in GetPosition()
89 const ir::AstNode *GetEffectiveBaseTypeNode(const ir::AstNode *node) in GetEffectiveBaseTypeNode()
109 std::vector<const ir::AstNode *> GetInterfaceExtendsHeritageElement(const ir::AstNode *node) in GetInterfaceExtendsHeritageElement()
123 void FindSuper(const ir::AstNode *node, TypeHierarchies &typeHierarchies, std::set<TypeHierarchies>… in FindSuper()
138 std::vector<ir::AstNode *> GetEffectiveImplementsTypeNodes(const ir::AstNode *node) in GetEffectiveImplementsTypeNodes()
152 void GetSuperTypeHierarchies(const ir::AstNode *node, TypeHierarchies &typeHierarchies, in GetSuperTypeHierarchies()
173 ir::AstNode *GetCurrentClassOrInterfaceDeclaration(ir::AstNode *node) in GetCurrentClassOrInterfaceDeclaration()
[all …]
Dsignature_help.cpp39 TextSpan CreateTextSpanForNode(const ir::AstNode *node) in CreateTextSpanForNode()
46 bool IsSyntacticOwner(const ir::AstNode *node) in IsSyntacticOwner()
105 auto node = context->node; in GetCandidateOrTypeInfo() local
185 ir::AstNode *GetHighestBinary(ir::AstNode *node) in GetHighestBinary()
190 size_t CountBinaryExpressionParameters(ir::AstNode *node) in CountBinaryExpressionParameters()
198 …onal<ArgumentListInfo> GetImmediatelyContainingArgumentOrContextualParameterInfo(ir::AstNode *node, in GetImmediatelyContainingArgumentOrContextualParameterInfo()
205 std::optional<ArgumentListInfo> GetContainingArgumentInfo(ir::AstNode *node, size_t position, bool … in GetContainingArgumentInfo()
230 size_t GetArgumentCount(ir::AstNode *node, bool ignoreTrailingComma) in GetArgumentCount()
244 std::vector<ArgumentListInfo> GetArgumentOrParameterListAndIndex(ir::AstNode *node, std::vector<Arg… in GetArgumentOrParameterListAndIndex()
271 ContextualSignatureLocationInfo GetArgumentOrParameterListInfo(ir::AstNode *node) in GetArgumentOrParameterListInfo()
[all …]
/arkcompiler/ets_runtime/ecmascript/mem/
Decma_list.h30 explicit EcmaList(T *node) : first_(node), last_(node) in EcmaList()
38 void AddNode(T *node) in AddNode()
59 void AddNodeToFront(T *node) in AddNodeToFront()
77 T *node = last_; in PopBack() local
82 void RemoveNode(T *node) in RemoveNode()
110 bool HasNode(T *node) in HasNode()
/arkcompiler/ets_frontend/ets2panda/compiler/base/
Dlexenv.cpp27 static bool CheckTdz(const ir::AstNode *node) in CheckTdz()
32 static void CheckConstAssignment(PandaGen *pg, const ir::AstNode *node, varbinder::Variable *variab… in CheckConstAssignment()
43 static void ExpandLoadLexVar(PandaGen *pg, const ir::AstNode *node, const varbinder::ConstScopeFind… in ExpandLoadLexVar()
52 static void ExpandLoadNormalVar(PandaGen *pg, const ir::AstNode *node, const varbinder::ConstScopeF… in ExpandLoadNormalVar()
63 void VirtualLoadVar::Expand(PandaGen *pg, const ir::AstNode *node, const varbinder::ConstScopeFindR… in Expand()
74 static void StoreLocalExport(PandaGen *pg, const ir::AstNode *node, varbinder::Variable *variable) in StoreLocalExport()
89 static void ExpandStoreLexVar(PandaGen *pg, const ir::AstNode *node, const varbinder::ConstScopeFin… in ExpandStoreLexVar()
109 static void ExpandStoreNormalVar(PandaGen *pg, const ir::AstNode *node, const varbinder::ConstScope… in ExpandStoreNormalVar()
127 void VirtualStoreVar::Expand(PandaGen *pg, const ir::AstNode *node, const varbinder::ConstScopeFind… in Expand()
/arkcompiler/ets_frontend/es2panda/compiler/base/
Dlexenv.cpp26 static bool CheckTdz(const ir::AstNode *node) in CheckTdz()
31 static void CheckConstAssignment(PandaGen *pg, const ir::AstNode *node, binder::Variable *variable) in CheckConstAssignment()
42 static void ExpandLoadLexVar(PandaGen *pg, const ir::AstNode *node, const binder::ScopeFindResult &… in ExpandLoadLexVar()
70 static void ExpandLoadNormalVar(PandaGen *pg, const ir::AstNode *node, const binder::ScopeFindResul… in ExpandLoadNormalVar()
82 void VirtualLoadVar::Expand(PandaGen *pg, const ir::AstNode *node, const binder::ScopeFindResult &r… in Expand()
93 static void ExpandStoreLexVar(PandaGen *pg, const ir::AstNode *node, const binder::ScopeFindResult … in ExpandStoreLexVar()
121 static void ExpandStoreNormalVar(PandaGen *pg, const ir::AstNode *node, const binder::ScopeFindResu… in ExpandStoreNormalVar()
139 void VirtualStoreVar::Expand(PandaGen *pg, const ir::AstNode *node, const binder::ScopeFindResult &… in Expand()
/arkcompiler/runtime_core/static_core/runtime/
Dhandle_storage-inl.h28 auto node = nodes_[id]; in GetNodeAddress() local
43 auto node = nodes_[nid]; in NewHandle() local
75 void HandleStorage<T>::ZapFreedHandlesForNode(std::array<T, NODE_BLOCK_SIZE> *node, uint32_t start) in ZapFreedHandlesForNode()
88 auto node = nodes_.at(i); in ZapFreedHandles() local
99 …std::array<coretypes::TaggedType, NODE_BLOCK_SIZE> *node, uint32_t size, const GCRootUpdater &gcRo… in UpdateHeapObjectForNode()
123 auto node = nodes_.at(i); in UpdateHeapObject() local
131 … std::array<coretypes::TaggedType, NODE_BLOCK_SIZE> *node, uint32_t size, const ObjectVisitor &cb) in VisitGCRootsForNode()
155 auto node = nodes_.at(i); in VisitGCRoots() local
162 …Storage<ObjectHeader *>::UpdateHeapObjectForNode(std::array<ObjectHeader *, NODE_BLOCK_SIZE> *node, in UpdateHeapObjectForNode()
184 auto node = nodes_.at(i); in UpdateHeapObject() local
[all …]
/arkcompiler/runtime_core/static_core/libpandabase/tests/
Dlist_test.cpp82 TestNode *node; in TEST_F() local
181 auto *node = reinterpret_cast<const DTestNode *>(&(*it1)); in IsEqual() local
189 auto *node = reinterpret_cast<const DTestNode *>(&(*it1)); in IsEqual() local
198 auto *node = reinterpret_cast<const DTestNode *>(&(*it3)); in IsEqual() local
206 auto *node = reinterpret_cast<const DTestNode *>(&(*it3)); in IsEqual() local
223 auto *node = NewNode(i); in TEST_F() local
247 auto *node = NewNode(i); in TEST_F() local
253 …list1.remove_if([](DListNode *node) { return reinterpret_cast<const DTestNode *>(node)->value < 41… in TEST_F()
254 list2.remove_if([](DTestNode &node) { return node.value < 41L; }); in TEST_F()
/arkcompiler/runtime_core/libpandabase/tests/
Dlist_test.cpp80 TestNode *node; in TEST_F() local
178 auto *node = reinterpret_cast<const DTestNode *>(&(*it1)); in IsEqual() local
186 auto *node = reinterpret_cast<const DTestNode *>(&(*it1)); in IsEqual() local
195 auto *node = reinterpret_cast<const DTestNode *>(&(*it3)); in IsEqual() local
203 auto *node = reinterpret_cast<const DTestNode *>(&(*it3)); in IsEqual() local
220 auto *node = NewNode(i); in TEST_F() local
244 auto *node = NewNode(i); in TEST_F() local
250 …list1.remove_if([](DListNode *node) { return reinterpret_cast<const DTestNode *>(node)->value < 41… in TEST_F()
251 list2.remove_if([](DTestNode &node) { return node.value < 41; }); in TEST_F()
/arkcompiler/ets_frontend/ets2panda/checker/ets/
DetsWarningAnalyzer.cpp124 void ETSWarningAnalyzer::ETSWarningSuggestFinal(const ir::AstNode *node) in ETSWarningSuggestFinal()
176 void ETSWarningAnalyzer::ETSWarningAnnotationUnusedGenericAliasWarn(const ir::AstNode *node) in ETSWarningAnnotationUnusedGenericAliasWarn()
201 void ETSWarningAnalyzer::ETSWarningsProhibitTopLevelStatements(const ir::AstNode *node) in ETSWarningsProhibitTopLevelStatements()
238 void ETSWarningAnalyzer::ETSWarningBoostEqualityStatement(const ir::AstNode *node) in ETSWarningBoostEqualityStatement()
255 void ETSWarningAnalyzer::ETSWarningRemoveAsync(const ir::AstNode *node) in ETSWarningRemoveAsync()
266 void ETSWarningAnalyzer::ETSWarningRemoveLambda(const ir::AstNode *node) in ETSWarningRemoveLambda()
276 void ETSWarningAnalyzer::CheckTypeOfBoxing(const ir::AstNode *node) in CheckTypeOfBoxing()
318 void ETSWarningAnalyzer::CheckTypeOfUnboxing(const ir::AstNode *node) in CheckTypeOfUnboxing()
360 void ETSWarningAnalyzer::CheckTypeOfBoxingUnboxing(const ir::AstNode *node) in CheckTypeOfBoxingUnboxing()
368 std::string ETSWarningAnalyzer::GetBoxingUnboxingType(const ir::AstNode *node) in GetBoxingUnboxingType()
[all …]
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/types/
Dets_waiters_list.h50 void PushBack(Node *node) in PushBack()
62 Node *node = nullptr; in PopFront() local
83 bool TryPushBack(Node *node) in TryPushBack()
89 bool TryPopFront(Node **node) in TryPopFront()
/arkcompiler/ets_frontend/arkguard/test/ut/transformer/
DVirtualConstructorTransfomer.spec.ts88 const node = transfomerFactory(context)(sourcefile); constant
96 const node = transfomerFactory(context)(sourcefile); constant
104 const node = transfomerFactory(context)(sourcefile); constant

12345678910>>...22