Home
last modified time | relevance | path

Searched defs:type (Results 1 – 25 of 1111) sorted by relevance

12345678910>>...45

/arkcompiler/runtime_core/static_core/tests/cts-generator/cts-template/
Dtest-schema.json2 "type": "object", string
11 "type": "string" string
14 "type": "boolean" string
17 "type": "boolean" string
20 "type": "object", string
28 "type": "string" string
31 "type": "string" string
34 "type": "array", string
36 "type": "string" string
40 "type": "array", string
[all …]
Dyaml-schema.json2 "type": "object", string
8 "type": "array", string
10 "type": "object", string
15 "type": "string" string
18 "type": "string" string
25 "type": "array", string
31 "type": "object", string
36 "type": "string" string
/arkcompiler/runtime_core/tests/cts-generator/cts-template/
Dtest-schema.json2 "type": "object", string
11 "type": "string" string
14 "type": "boolean" string
17 "type": "boolean" string
20 "type": "object", string
28 "type": "string" string
31 "type": "string" string
34 "type": "array", string
36 "type": "string" string
40 "type": "array", string
[all …]
Dyaml-schema.json2 "type": "object", string
8 "type": "array", string
10 "type": "object", string
15 "type": "string" string
18 "type": "string" string
25 "type": "array", string
31 "type": "object", string
36 "type": "string" string
/arkcompiler/ets_runtime/ecmascript/interpreter/
Dframe_handler.h65 FrameType type = GetFrameType(); in IsEntryFrame() local
82 FrameType type = GetFrameType(); in IsInterpretedFrame() local
86 bool IsInterpretedFrame(FrameType type) const in IsInterpretedFrame()
93 FrameType type = GetFrameType(); in IsJSFrame() local
99 FrameType type = GetFrameType(); in IsOptimizedJSFunctionFrame() local
104 bool IsJSFrame(FrameType type) const in IsJSFrame()
109 bool IsOptimizedJSFunctionFrame(FrameType type) const in IsOptimizedJSFunctionFrame()
115 bool IsFastJitFunctionFrame(FrameType type) const in IsFastJitFunctionFrame()
124 FrameType type = it.GetFrameType(); in IsAsmInterpretedFrame() local
129 bool IsAsmInterpretedFrame(FrameType type) const in IsAsmInterpretedFrame()
[all …]
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/intrinsics/
Descompat_Atomics.cpp35 #define SHARED_MEMORY_AT(type, postfix) … argument
42 #define SHARED_MEMORY_SET(type, postfix) … argument
49 #define SHARED_MEMORY_ADD(type, postfix) … argument
58 #define SHARED_MEMORY_AND_SIGNED(type, postfix) … argument
67 #define SHARED_MEMORY_AND_UNSIGNED(type, postfix) … argument
76 #define SHARED_MEMORY_COMPARE_EXCHANGE(type, postfix) … argument
85 #define SHARED_MEMORY_EXCHANGE(type, postfix) … argument
94 #define SHARED_MEMORY_LOAD(type, postfix) … argument
103 #define SHARED_MEMORY_OR_SIGNED(type, postfix) … argument
112 #define SHARED_MEMORY_OR_UNSIGNED(type, postfix) … argument
[all …]
/arkcompiler/runtime_core/compiler/optimizer/ir/
Ddatatype.h83 inline const char *ToString(Type type) in ToString()
89 constexpr inline Type GetCommonType(Type type) in GetCommonType()
107 inline bool IsInt32Bit(Type type) in IsInt32Bit()
123 inline bool IsTypeNumeric(Type type) in IsTypeNumeric()
144 inline bool IsLessInt32(Type type) in IsLessInt32()
196 inline bool Is32Bits(Type type, Arch arch) in Is32Bits()
217 inline bool Is64Bits(Type type, Arch arch) in Is64Bits()
222 inline bool IsFloatType(Type type) in IsFloatType()
233 inline bool IsTypeSigned(Type type) in IsTypeSigned()
248 inline bool IsReference(Type type) in IsReference()
[all …]
/arkcompiler/ets_frontend/ets2panda/linter/
Dtsconfig-sdk.json209 "type": "AbilityComponentAttribute", string
214 "type": "AlphabetIndexerAttribute", string
219 "type": "AnimatorAttribute", string
224 "type": "BadgeAttribute", string
229 "type": "BlankAttribute", string
234 "type": "ButtonAttribute", string
239 "type": "CalendarAttribute", string
244 "type": "CalendarPickerAttribute", string
249 "type": "CameraAttribute", string
254 "type": "CanvasAttribute", string
[all …]
/arkcompiler/ets_frontend/ets2panda/ir/
Dtyped.h60 explicit Typed(AstNodeType const type) : T(type) {} in Typed()
61 explicit Typed(AstNodeType const type, ModifierFlags const flags) : T(type, flags) {} in Typed()
92 explicit TypedAstNode(AstNodeType const type) : Typed<AstNode>(type) {} in TypedAstNode()
93 …explicit TypedAstNode(AstNodeType const type, ModifierFlags const flags) : Typed<AstNode>(type, fl… in TypedAstNode()
107 explicit AnnotatedAstNode(AstNodeType const type, TypeNode *const typeAnnotation) in AnnotatedAstNode()
111 explicit AnnotatedAstNode(AstNodeType const type) : Annotated<AstNode>(type) {} in AnnotatedAstNode()
112 …explicit AnnotatedAstNode(AstNodeType const type, ModifierFlags const flags) : Annotated<AstNode>(… in AnnotatedAstNode()
133 explicit TypedStatement(AstNodeType type) : Typed<Statement>(type) {}; in TypedStatement()
134 … explicit TypedStatement(AstNodeType type, ModifierFlags flags) : Typed<Statement>(type, flags) {}; in TypedStatement()
155 …explicit AnnotatedStatement(AstNodeType type, TypeNode *typeAnnotation) : Annotated<Statement>(typ… in AnnotatedStatement()
[all …]
Dexpression.h107 explicit Expression(AstNodeType const type) : TypedAstNode(type) {} in Expression()
108 …explicit Expression(AstNodeType const type, ModifierFlags const flags) : TypedAstNode(type, flags)… in Expression()
134 explicit AnnotatedExpression(AstNodeType const type, TypeNode *const typeAnnotation) in AnnotatedExpression()
138 explicit AnnotatedExpression(AstNodeType const type) : Annotated<Expression>(type) {} in AnnotatedExpression()
162 …explicit MaybeOptionalExpression(AstNodeType type, bool optional) : Expression(type), optional_(op… in MaybeOptionalExpression()
163 explicit MaybeOptionalExpression(AstNodeType type, ModifierFlags flags, bool optional) in MaybeOptionalExpression()
/arkcompiler/ets_frontend/ets2panda/lsp/src/
Dscript_element_kind.cpp23 std::tuple<bool, CompletionEntryKind> GetTargetTokenKindIfETSType(ir::AstNodeType type) in GetTargetTokenKindIfETSType()
60 bool IsTSParameterKind(ir::AstNodeType type) in IsTSParameterKind()
84 bool IsTSMoudleKind(ir::AstNodeType type) in IsTSMoudleKind()
99 std::tuple<bool, CompletionEntryKind> GetTargetTokenKindIfTSType(ir::AstNodeType type) in GetTargetTokenKindIfTSType()
151 bool IsExpress(ir::AstNodeType type) in IsExpress()
184 bool IsStatement(ir::AstNodeType type) in IsStatement()
215 bool IsLiteral(ir::AstNodeType type) in IsLiteral()
234 bool IsModule(ir::AstNodeType type) in IsModule()
259 auto type = node->Type(); in GetTargetTokenKind() local
/arkcompiler/runtime_core/static_core/compiler/optimizer/ir/
Ddatatype.h84 inline const char *ToString(Type type) in ToString()
97 constexpr inline Type GetCommonType(Type type) in GetCommonType()
119 inline bool IsInt32Bit(Type type) in IsInt32Bit()
136 inline bool IsTypeNumeric(Type type) in IsTypeNumeric()
157 inline bool IsLessInt32(Type type) in IsLessInt32()
212 inline bool Is32Bits(Type type, Arch arch) in Is32Bits()
233 inline bool Is64Bits(Type type, Arch arch) in Is64Bits()
238 inline bool IsFloatType(Type type) in IsFloatType()
250 inline bool IsTypeSigned(Type type) in IsTypeSigned()
265 inline bool IsReference(Type type) in IsReference()
[all …]
/arkcompiler/runtime_core/static_core/runtime/templates/
Dintrinsics.rb18 def get_shorty_type(type) argument
40 def primitive_type?(type) argument
62 def get_primitive_descriptor(type) argument
83 def object_type?(type) argument
87 def get_object_descriptor(type) argument
94 def floating_point_type?(type) argument
Druntime.rb16 def array_type?(type) argument
20 def get_object_type(type) argument
31 def get_type(type) argument
55 def get_ret_type(type) argument
78 def get_effective_type(type) argument
82 def get_ret_effective_type(type) argument
/arkcompiler/ets_runtime/ecmascript/mem/
Dconcurrent_sweeper.cpp24 ConcurrentSweeper::ConcurrentSweeper(Heap *heap, EnableConcurrentSweepType type) in ConcurrentSweeper()
58 for (int type = startSpaceType_; type < FREE_LIST_NUM; type++) { in Sweep() local
78 for (int type = startSpaceType_; type < FREE_LIST_NUM; type++) { in SweepNewToOldRegions() local
86 void ConcurrentSweeper::AsyncSweepSpace(MemSpaceType type, bool isMain) in AsyncSweepSpace()
126 void ConcurrentSweeper::EnsureTaskFinished(MemSpaceType type) in EnsureTaskFinished()
132 void ConcurrentSweeper::EnsureTaskFinishedNoCheck(MemSpaceType type) in EnsureTaskFinishedNoCheck()
140 void ConcurrentSweeper::WaitingTaskFinish(MemSpaceType type) in WaitingTaskFinish()
183 auto type = static_cast<MemSpaceType>(((i + type_) % sweepTypeNum) + startSpaceType_); in Run() local
189 void ConcurrentSweeper::EnableConcurrentSweep(EnableConcurrentSweepType type) in EnableConcurrentSweep()
/arkcompiler/ets_runtime/ecmascript/compiler/
Dtype.h64 explicit ParamType(uint32_t type = 0) : type_(type) {} in type_() argument
73 #define DEFINE_TYPE_CONSTRUCTOR(type, name) \ argument
80 #define DEFINE_JUDGE_METHOD(type, name) \ in PARAM_TYPE_LIST() argument
119 #define DECLARE_TYPE(type, name) type, argument
234 uint32_t type = GetType(); in IsAnyType() local
240 uint32_t type = GetType(); in IsNumberType() local
248 uint32_t type = GetType(); in IsIntType() local
254 uint32_t type = GetType(); in IsDoubleType() local
260 uint32_t type = GetType(); in IsStringType() local
266 uint32_t type = GetType(); in IsNullType() local
[all …]
/arkcompiler/ets_frontend/es2panda/lexer/token/
Dtoken.cpp128 bool Token::IsBinaryToken(TokenType type) in IsBinaryToken()
133 bool Token::IsBinaryLvalueToken(TokenType type) in IsBinaryLvalueToken()
138 bool Token::IsUpdateToken(TokenType type) in IsUpdateToken()
143 bool Token::IsPunctuatorToken(TokenType type) in IsPunctuatorToken()
148 bool Token::IsTsParamToken(TokenType type, char32_t nextChar) in IsTsParamToken()
154 const char *TokenToString(TokenType type) in TokenToString()
/arkcompiler/runtime_core/static_core/runtime/tooling/
Dpt_hook_type_info.h34 bool IsEnabled(const PtHookType type) const in IsEnabled()
39 void Enable(const PtHookType type) in Enable()
44 void Disable(const PtHookType type) in Disable()
64 static constexpr size_t ToIndex(const PtHookType type) in ToIndex()
/arkcompiler/ets_frontend/ets2panda/checker/ts/
Dobject.cpp41 void TSChecker::CheckIndexConstraints(Type *type) in CheckIndexConstraints()
79 void TSChecker::ResolveStructuredTypeMembers(Type *type) in ResolveStructuredTypeMembers()
101 void TSChecker::ResolveUnionTypeMembers(UnionType *type) in ResolveUnionTypeMembers()
160 void TSChecker::ResolveInterfaceOrClassTypeMembers(InterfaceType *type) in ResolveInterfaceOrClassTypeMembers()
172 void TSChecker::ResolveObjectTypeMembers(ObjectType *type) in ResolveObjectTypeMembers()
193 void TSChecker::ResolvePropertiesOfObjectType(ObjectType *type, ir::AstNode *member, in ResolvePropertiesOfObjectType()
228 void TSChecker::ResolveSignaturesOfObjectType(ObjectType *type, in ResolveSignaturesOfObjectType()
243 void TSChecker::ResolveIndexInfosOfObjectType(ObjectType *type, ArenaVector<ir::TSIndexSignature *>… in ResolveIndexInfosOfObjectType()
269 varbinder::Variable *TSChecker::GetPropertyOfType(Type *type, const util::StringView &name, bool ge… in GetPropertyOfType()
284 varbinder::Variable *TSChecker::GetPropertyOfUnionType(UnionType *type, const util::StringView &nam… in GetPropertyOfUnionType()
[all …]
/arkcompiler/ets_frontend/es2panda/typescript/core/
Dobject.cpp30 void Checker::CheckIndexConstraints(Type *type) in CheckIndexConstraints()
72 void Checker::ResolveStructuredTypeMembers(Type *type) in ResolveStructuredTypeMembers()
94 void Checker::ResolveUnionTypeMembers(UnionType *type) in ResolveUnionTypeMembers()
153 void Checker::ResolveInterfaceOrClassTypeMembers(InterfaceType *type) in ResolveInterfaceOrClassTypeMembers()
165 void Checker::ResolveObjectTypeMembers(ObjectType *type) in ResolveObjectTypeMembers()
186 void Checker::ResolvePropertiesOfObjectType(ObjectType *type, const ir::Expression *member, in ResolvePropertiesOfObjectType()
222 void Checker::ResolveSignaturesOfObjectType(ObjectType *type, in ResolveSignaturesOfObjectType()
237 void Checker::ResolveIndexInfosOfObjectType(ObjectType *type, in ResolveIndexInfosOfObjectType()
264 binder::Variable *Checker::GetPropertyOfType(Type *type, const util::StringView &name, bool getPart… in GetPropertyOfType()
279 binder::Variable *Checker::GetPropertyOfUnionType(UnionType *type, const util::StringView &name, bo… in GetPropertyOfUnionType()
[all …]
/arkcompiler/ets_runtime/ecmascript/pgo_profiler/ap_file/
Dpgo_method_type_set.h42 void AddType(uint32_t offset, PGOSampleType type) in AddType()
53 void AddCallTargetType(uint32_t offset, PGOSampleType type) in AddCallTargetType()
74 void AddDefine(uint32_t offset, PGODefineOpType type) in AddDefine()
93 const auto &type = typeInfo.GetTypeRef(); in GetTypeInfo() local
97 const auto &type = typeInfo.GetTypeRef(); in GetTypeInfo() local
101 const auto &type = typeInfo.GetTypeRef(); in GetTypeInfo() local
130 TypeInfoHeader(InfoType type, uint32_t offset) : infoType_(type), offset_(offset) {} in TypeInfoHeader()
131 TypeInfoHeader(uint32_t size, InfoType type, uint32_t offset) in TypeInfoHeader()
182 void Merge(const RWScalarOpTemplate &type) in Merge()
231 ScalarOpTemplate(uint32_t offset, SampleType type) in ScalarOpTemplate()
[all …]
/arkcompiler/ets_runtime/ecmascript/mem/shared_heap/
Dshared_concurrent_sweeper.cpp23 SharedConcurrentSweeper::SharedConcurrentSweeper(SharedHeap *heap, EnableConcurrentSweepType type) in SharedConcurrentSweeper()
68 void SharedConcurrentSweeper::AsyncSweepSpace(MemSpaceType type, bool isMain) in AsyncSweepSpace()
103 int type = spaceIndex + SHARED_SWEEPING_SPACE_BEGIN; in EnsureAllTaskFinished() local
113 void SharedConcurrentSweeper::EnsureTaskFinished(MemSpaceType type) in EnsureTaskFinished()
121 void SharedConcurrentSweeper::WaitingTaskFinish(MemSpaceType type) in WaitingTaskFinish()
166 void SharedConcurrentSweeper::EnableConcurrentSweep(EnableConcurrentSweepType type) in EnableConcurrentSweep()
/arkcompiler/ets_frontend/es2panda/test/parser/ts/
Dtest_export_type3.ts17 type type = number; alias
18 export { type type }; alias
/arkcompiler/runtime_core/static_core/assembler/
Dannotation.h103 char type = '0'; in GetTypeAsChar() local
178 char type = '0'; in GetArrayTypeAsChar() local
241 Type type = Type::UNKNOWN; in GetCharAsType() local
316 Type type = Type::UNKNOWN; in GetCharAsArrayType() local
403 explicit Value(Type type) : type_(type) {} in Value()
516 ScalarValue(Type type, uint64_t value) : Value(type), value_(value) {} in ScalarValue()
518 ScalarValue(Type type, float value) : Value(type), value_(value) {} in ScalarValue()
520 ScalarValue(Type type, double value) : Value(type), value_(value) {} in ScalarValue()
522 ScalarValue(Type type, std::string_view value) : Value(type), value_(std::string(value)) {} in ScalarValue()
524 ScalarValue(Type type, std::string_view value, bool isStatic) in ScalarValue()
[all …]
/arkcompiler/runtime_core/assembler/
Dannotation.h112 char type = '0'; in GetTypeAsChar() local
186 char type = '0'; in GetArrayTypeAsChar() local
248 Type type = Type::UNKNOWN; in GetCharAsType() local
322 Type type = Type::UNKNOWN; in GetCharAsArrayType() local
409 explicit Value(Type type) : type_(type) {} in Value()
421 using type = std::conditional_t<value_type == Value::Type::U1, uint8_t, member
508 ScalarValue(Type type, uint64_t value) : Value(type), value_(value) {} in ScalarValue()
510 ScalarValue(Type type, float value) : Value(type), value_(value) {} in ScalarValue()
512 ScalarValue(Type type, double value) : Value(type), value_(value) {} in ScalarValue()
514 … ScalarValue(Type type, const std::string_view &value) : Value(type), value_(std::string(value)) {} in ScalarValue()
[all …]

12345678910>>...45