Home
last modified time | relevance | path

Searched refs:IsTSObjectType (Results 1 – 8 of 8) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/ts_types/
Dts_type.h52 CAST_CHECK(TSObjectType, IsTSObjectType);
Dts_manager.cpp242 } else if (type->IsTSObjectType()) { in GetPropType()
269 } else if (type->IsTSObjectType()) { in GetIndexSignType()
293 if (type->IsTSObjectType()) { in GetSuperGateType()
Dts_type_parser.cpp199 } else if (type->IsTSObjectType()) { in ParseIndexSigType()
663 } else if (genericsType->IsTSObjectType()) { in InstantiateGenericsType()
/arkcompiler/ets_runtime/ecmascript/
Djs_tagged_value-inl.h1300 inline bool JSTaggedValue::IsTSObjectType() const in IsTSObjectType() function
1302 return IsHeapObject() && GetTaggedObject()->GetClass()->IsTSObjectType(); in IsTSObjectType()
Djs_tagged_value.h673 bool IsTSObjectType() const;
Djs_hclass.h1364 inline bool IsTSObjectType() const in IsTSObjectType() function
Ddump.cpp3236 if (GetInstanceType().IsTSObjectType()) { in Dump()
3243 if (GetConstructorType().IsTSObjectType()) { in Dump()
3250 if (GetPrototypeType().IsTSObjectType()) { in Dump()
3288 if (GetFields().IsTSObjectType()) { in Dump()
/arkcompiler/ets_runtime/ecmascript/ts_types/tests/
Dts_type_parser_test.cpp418 EXPECT_TRUE(type->IsTSObjectType()); in HWTEST_F_L0()