Home
last modified time | relevance | path

Searched refs:IsTSFunctionType (Results 1 – 9 of 9) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/ts_types/
Dts_manager.cpp285 ASSERT(tsType->IsTSFunctionType()); in IsStaticFunc()
556 ASSERT(tsType->IsTSFunctionType()); in GetFuncName()
578 ASSERT(tsType->IsTSFunctionType()); in GetFunctionTypeLength()
587 ASSERT(tsType->IsTSFunctionType()); in GetFuncParameterTypeGT()
596 ASSERT(tsType->IsTSFunctionType()); in GetFuncThisGT()
607 ASSERT(tsType->IsTSFunctionType()); in IsGetterSetterFunc()
618 ASSERT(tsType->IsTSFunctionType()); in IsAbstractMethod()
629 ASSERT(tsType->IsTSFunctionType()); in IsMethodSignature()
640 ASSERT(tsType->IsTSFunctionType()); in CanFastCall()
651 ASSERT(tsType->IsTSFunctionType()); in IsNoGC()
[all …]
Dts_type.h177 CAST_CHECK(TSFunctionType, IsTSFunctionType);
Dts_type_parser.cpp461 ASSERT(tsType->IsTSFunctionType()); in FillInterfaceMethodTypes()
656 } else if (genericsType->IsTSFunctionType()) { in InstantiateGenericsType()
780 ASSERT(tsType->IsTSFunctionType()); in TryReplaceTypePara()
/arkcompiler/ets_runtime/ecmascript/
Djs_tagged_value-inl.h1340 inline bool JSTaggedValue::IsTSFunctionType() const in IsTSFunctionType() function
1342 return IsHeapObject() && GetTaggedObject()->GetClass()->IsTSFunctionType(); in IsTSFunctionType()
Djs_tagged_value.h678 bool IsTSFunctionType() const;
Djs_hclass.h1389 inline bool IsTSFunctionType() const in IsTSFunctionType() function
/arkcompiler/ets_runtime/ecmascript/ts_types/tests/
Dts_type_parser_test.cpp225 EXPECT_TRUE(type->IsTSFunctionType()); in HWTEST_F_L0()
/arkcompiler/ets_frontend/es2panda/typescript/extractor/
DtypeSystem.h480 …} else if (node->IsTSSignatureDeclaration() || node->IsTSFunctionType() || node->IsTSConstructorTy… in FunctionType()
525 } else if (node->IsTSFunctionType()) { in HandleFuncNodeWithoutName()
DtypeExtractor.cpp581 } else if (type->IsTSFunctionType()) { in GetTypeIndexFromAnnotation()