/arkcompiler/ets_frontend/ets2panda/parser/context/ |
H A D | parserContext.h | 32 FUNCTION = 1U << 1U, member in ark::es2panda::parser::ParserStatus 90 ParserStatus::ALLOW_THIS_TYPE | ParserStatus::IN_CLASS_BODY | ParserStatus::FUNCTION | in ParserContext() 144 return (status_ & (ParserStatus::FUNCTION | ParserStatus::FUNCTION_PARAM)) != 0;
|
/arkcompiler/ets_frontend/ets2panda/checker/types/ts/ |
H A D | constructorType.h | 24 explicit ConstructorType(ObjectDescriptor *desc) : ObjectType(ObjectType::ObjectTypeKind::FUNCTION, desc) {} in ConstructorType()
|
H A D | functionType.h | 25 explicit FunctionType(ObjectDescriptor *desc) : ObjectType(ObjectType::ObjectTypeKind::FUNCTION, desc) {} in FunctionType()
|
H A D | objectType.h | 60 FUNCTION, member in ark::es2panda::checker::ObjectType::ObjectTypeKind
|
/arkcompiler/ets_frontend/es2panda/typescript/types/ |
H A D | functionType.h | 26 explicit FunctionType(ObjectDescriptor *desc) : ObjectType(ObjectType::ObjectTypeKind::FUNCTION, desc) {} in FunctionType()
|
H A D | constructorType.h | 25 explicit ConstructorType(ObjectDescriptor *desc) : ObjectType(ObjectType::ObjectTypeKind::FUNCTION, desc) {} in ConstructorType()
|
H A D | typeMapping.h | 47 _(ObjectType::ObjectTypeKind::FUNCTION, FunctionType) \
|
H A D | typeFlag.h | 56 FUNCTION = 1ULL << 30, // x: (a) => b member in panda::es2panda::checker::TypeFlag
|
/arkcompiler/ets_frontend/ets2panda/checker/types/ |
H A D | typeMapping.h | 55 _(TypeFlag::FUNCTION, ETSFunctionType) \ 71 _(ObjectType::ObjectTypeKind::FUNCTION, FunctionType) \
|
H A D | typeFlag.h | 55 FUNCTION = 1ULL << 26ULL, // x: (a) => b member in ark::es2panda::checker::TypeFlag 90 ETS_DYNAMIC_FUNCTION_TYPE = FUNCTION | ETS_DYNAMIC_FLAG,
|
/arkcompiler/ets_runtime/ecmascript/compiler/ |
H A D | pgo_bc_info.h | 32 FUNCTION, enumerator 36 TYPE_LAST = FUNCTION,
|
H A D | pgo_bc_info.cpp | 82 Record(InfoDetail {recordName, methodOffset, bcIndex, bcOffset, 0}, Type::FUNCTION); in Record()
|
/arkcompiler/ets_frontend/es2panda/parser/context/ |
H A D | parserContext.h | 31 FUNCTION = (1 << 1), member in panda::es2panda::parser::ParserStatus 80 ParserStatus::ALLOW_THIS_TYPE | ParserStatus::IN_CLASS_BODY | ParserStatus::FUNCTION); in ParserContext()
|
/arkcompiler/ets_frontend/ets2panda/checker/types/ets/ |
H A D | etsFunctionType.h | 30 : Type(TypeFlag::FUNCTION), callSignatures_(allocator->Adapter()), name_(name), funcInterface_(nullptr) in ETSFunctionType() 35 : Type(TypeFlag::FUNCTION), callSignatures_(allocator->Adapter()), name_(name), funcInterface_(nullptr) in ETSFunctionType()
|
/arkcompiler/ets_frontend/es2panda/binder/ |
H A D | variableFlags.h | 59 _(FUNCTION, FunctionScope) \ 109 FUNCTION, member in panda::es2panda::binder::VariableKind
|
/arkcompiler/ets_frontend/ets2panda/varbinder/ |
H A D | variableFlags.h | 66 _(FUNCTION, FunctionScope) \ 118 FUNCTION, member in ark::es2panda::varbinder::VariableKind
|
/arkcompiler/ets_runtime/ecmascript/ |
H A D | vtable.h | 52 FUNCTION = 0, enumerator
|
H A D | vtable.cpp | 34 typeVal = JSTaggedValue(VTable::TypeKind::FUNCTION); in CreateTuple()
|
H A D | enum_conversion.h | 57 case BuiltinTypeId::FUNCTION: in ToGlobelEnvPrototypeField()
|
/arkcompiler/ets_runtime/ecmascript/ts_types/ |
H A D | global_ts_type_ref.h | 28 FUNCTION, member in panda::ecmascript::TSTypeKind
|
H A D | builtin_type_id.h | 23 V(FUNCTION) \ 94 * according to the following enum order. For example, the GT of FUNCTION will be (1, 21), where 1
|
/arkcompiler/ets_runtime/ecmascript/compiler/pgo_type/ |
H A D | pgo_type_parser.h | 82 FunctionParser(PGOTypeManager *ptManager) : BaseParser(ptManager, PGOBCInfo::Type::FUNCTION) {} in FunctionParser()
|
/arkcompiler/ets_runtime/ecmascript/pgo_profiler/ |
H A D | pgo_utils.h | 56 static inline const std::string FUNCTION = "function"; member in panda::ecmascript::pgo::DumpJsonUtils
|
/arkcompiler/ets_frontend/ets2panda/parser/ |
H A D | parserStatusContext.h | 175 return ParserStatus::FUNCTION | ParserStatus::ARROW_FUNCTION | in InitialFlags()
|
/arkcompiler/ets_frontend/es2panda/parser/ |
H A D | commonjs.cpp | 75 FunctionContext functionContext(this, ParserStatus::FUNCTION | ParserStatus::ALLOW_NEW_TARGET); in ParseCommonjs()
|