| /arkcompiler/ets_frontend/es2panda/typescript/types/ |
| D | constructorType.h | 25 …explicit ConstructorType(ObjectDescriptor *desc) : ObjectType(ObjectType::ObjectTypeKind::FUNCTION… in ConstructorType()
|
| D | functionType.h | 26 …explicit FunctionType(ObjectDescriptor *desc) : ObjectType(ObjectType::ObjectTypeKind::FUNCTION, d… in FunctionType()
|
| D | objectLiteralType.h | 25 …explicit ObjectLiteralType(ObjectDescriptor *desc) : ObjectType(ObjectType::ObjectTypeKind::LITERA… in ObjectLiteralType()
|
| D | tupleType.h | 36 …TupleType(ObjectDescriptor *desc, ArenaVector<ElementFlags> &&elementFlags, ElementFlags combinedF… in TupleType() 52 …TupleType(ObjectDescriptor *desc, ArenaVector<ElementFlags> &&elementFlags, ElementFlags combinedF… in TupleType()
|
| D | interfaceType.h | 25 InterfaceType(ArenaAllocator *allocator, util::StringView name, ObjectDescriptor *desc) in InterfaceType()
|
| /arkcompiler/ets_runtime/ecmascript/ |
| D | js_primitive_ref.cpp | 44 …PropertyDescriptor desc(thread, JSHandle<JSTaggedValue>(thread, JSTaggedValue(length)), false, fal… in StringCreate() local 53 PropertyDescriptor *desc) in StringGetIndexProperty()
|
| D | js_arguments.cpp | 25 const JSHandle<JSTaggedValue> &key, PropertyDescriptor &desc) in GetOwnProperty() 45 … const JSHandle<JSTaggedValue> &key, const PropertyDescriptor &desc) in DefineOwnProperty()
|
| D | js_for_in_iterator.cpp | 64 PropertyDescriptor desc(thread); in GetAllEnumKeys() local 92 PropertyDescriptor desc(thread); in GetAllEnumKeys() local 133 PropertyDescriptor desc(thread); in NextInternal() local
|
| D | filter_helper.h | 40 static bool IgnoreKeyByFilter(T &desc, uint32_t filter) in IgnoreKeyByFilter()
|
| D | template_string.cpp | 58 PropertyDescriptor desc(thread, rawArr, false, false, false); in GetTemplateObject() local
|
| D | js_object.cpp | 36 PropertyAttributes::PropertyAttributes(const PropertyDescriptor &desc) in PropertyAttributes() 956 PropertyDescriptor &desc) in GetOwnProperty() 961 …lobalGetOwnProperty(JSThread *thread, const JSHandle<JSTaggedValue> &key, PropertyDescriptor &desc) in GlobalGetOwnProperty() 982 const JSHandle<JSTaggedValue> &key, PropertyDescriptor &desc) in OrdinaryGetOwnProperty() 1006 const PropertyDescriptor &desc) in DefineOwnProperty() 1012 const PropertyDescriptor &desc) in DefineOwnProperty() 1019 … const JSHandle<JSTaggedValue> &key, const PropertyDescriptor &desc) in OrdinaryDefineOwnProperty() 1034 const PropertyDescriptor &desc) in OrdinaryDefineOwnProperty() 1046 …dateAndApplyPropertyDescriptor(ObjectOperator *op, bool extensible, const PropertyDescriptor &desc, in ValidateAndApplyPropertyDescriptor() 1169 bool JSObject::IsCompatiblePropertyDescriptor(bool extensible, const PropertyDescriptor &desc, in IsCompatiblePropertyDescriptor() [all …]
|
| D | js_tagged_value.cpp | 743 … const JSHandle<JSTaggedValue> &key, const PropertyDescriptor &desc) in DefinePropertyOrThrow() 760 … const JSHandle<JSTaggedValue> &key, const PropertyDescriptor &desc) in DefineOwnProperty() 786 const JSHandle<JSTaggedValue> &key, PropertyDescriptor &desc) in GetOwnProperty() 944 PropertyDescriptor desc(thread); in HasOwnProperty() local 952 PropertyDescriptor desc(thread); in GlobalHasOwnProperty() local 1164 … const JSHandle<JSTaggedValue> &key, PropertyDescriptor &desc) in GetContainerProperty()
|
| /arkcompiler/ets_frontend/es2panda/test/ |
| D | test262util.py | 156 def validate_parse_result(return_code, std_err, desc, out): argument 170 def validate_runtime_result(self, return_code, std_err, desc, out): argument
|
| /arkcompiler/ets_runtime/ecmascript/tests/ |
| D | js_primitive_ref_test.cpp | 67 PropertyDescriptor desc(thread); in HWTEST_F_L0() local
|
| D | js_proxy_test.cpp | 87 PropertyDescriptor desc(thread); in HWTEST_F_L0() local 159 PropertyDescriptor desc(thread); in HWTEST_F_L0() local 242 PropertyDescriptor desc(thread, JSHandle<JSTaggedValue>(thread, JSTaggedValue(1))); in HWTEST_F_L0() local 284 …PropertyDescriptor desc(thread, JSHandle<JSTaggedValue>(thread, JSTaggedValue(1)), true, true, tru… in HWTEST_F_L0() local 472 PropertyDescriptor desc(thread, JSHandle<JSTaggedValue>(thread, JSTaggedValue(1))); in HWTEST_F_L0() local 513 PropertyDescriptor desc(thread, JSHandle<JSTaggedValue>(thread, JSTaggedValue(1))); in HWTEST_F_L0() local 593 …PropertyDescriptor desc(thread, JSHandle<JSTaggedValue>(thread, JSTaggedValue(2))); // 2 : test ca… in HandlerConstruct() local 605 PropertyDescriptor desc(thread, JSHandle<JSTaggedValue>(thread, JSTaggedValue(1))); in HandlerConFunc() local
|
| /arkcompiler/ets_frontend/es2panda/ir/ts/ |
| D | tsIndexSignature.cpp | 59 …checker::ObjectDescriptor *desc = checker->Allocator()->New<checker::ObjectDescriptor>(checker->Al… in Check() local
|
| D | tsTypeLiteral.cpp | 62 …checker::ObjectDescriptor *desc = checker->Allocator()->New<checker::ObjectDescriptor>(checker->Al… in GetType() local
|
| D | tsInterfaceDeclaration.cpp | 105 checker::ObjectDescriptor *desc = in Check() local
|
| /arkcompiler/ets_runtime/ecmascript/jspandafile/ |
| D | js_pandafile.cpp | 139 const char *desc = utf::Mutf8AsCString(cda.GetDescriptor()); in InitializeUnMergedPF() local 197 CString desc = utf::Mutf8AsCString(cda.GetDescriptor()); in InitializeMergedPF() local 261 CString desc = utf::Mutf8AsCString(cda.GetDescriptor()); in GetNpmEntries() local
|
| D | js_pandafile_manager.cpp | 148 const CString &desc = filename.empty() ? pf->GetFilename().c_str() : filename; in LoadJSPandaFile() local 192 const CString &desc = filename.empty() ? pf->GetFilename().c_str() : filename; in LoadJSPandaFileSecure() local 373 …tr<JSPandaFile> JSPandaFileManager::NewJSPandaFile(const panda_file::File *pf, const CString &desc) in NewJSPandaFile() 451 … const CString &desc, std::string_view entryPoint) in GenerateJSPandaFile()
|
| /arkcompiler/ets_frontend/es2panda/typescript/core/ |
| D | typeCreation.cpp | 154 Type *Checker::CreateTupleType(ObjectDescriptor *desc, ArenaVector<ElementFlags> &&elementFlags, in CreateTupleType() 161 Type *Checker::CreateTupleType(ObjectDescriptor *desc, ArenaVector<ElementFlags> &&elementFlags, in CreateTupleType()
|
| /arkcompiler/ets_runtime/ecmascript/pgo_profiler/ |
| D | pgo_profiler_layout.cpp | 45 PropertyDesc desc; in FindDescWithKey() local
|
| /arkcompiler/ets_frontend/es2panda/ir/expressions/ |
| D | arrayExpression.cpp | 241 …checker::ObjectDescriptor *desc = checker->Allocator()->New<checker::ObjectDescriptor>(checker->Al… in Check() local 273 …checker::ObjectDescriptor *desc = checker->Allocator()->New<checker::ObjectDescriptor>(checker->Al… in CheckPattern() local
|
| /arkcompiler/runtime_core/tests/cts-coverage-tool/lib/ |
| D | full_md.rb | 45 def covered_description(desc) argument
|
| /arkcompiler/runtime_core/libpandabase/utils/ |
| D | pandargs.h | 91 explicit PandArg(const std::string &name, T default_val, const std::string &desc) in PandArg() 96 …explicit PandArg(const std::string &name, T default_val, const std::string &desc, PandArgType type) in PandArg() 101 …explicit PandArg(const std::string &name, int default_val, const std::string &desc, T min_val, T m… in PandArg() 109 … explicit PandArg(const std::string &name, const arg_list_t &default_val, const std::string &desc, in PandArg() 192 …PandArgCompound(const std::string &name, const std::string &desc, std::initializer_list<PandArgBas… in PandArgCompound()
|