| /arkcompiler/runtime_core/runtime/tooling/inspector/tests/ |
| D | json_object_matcher.h | 88 …explicit HasJsonPropertyMatcher(JsonProperty<PropertyType> property) : property_(std::move(propert… in HasJsonPropertyMatcher() argument 126 … explicit JsonObjectMatcher(JsonProperty<PropertyType>... property) : properties_ {property...} {} in JsonObjectMatcher() 175 auto JsonProperties(JsonProperty<PropertyType>... property) in JsonProperties()
|
| D | inspector_test.cpp | 76 explicit Callback(MockFunction<void()> &checkpoint, JsonProperty<PropertyType>... property) in Callback() 82 explicit Callback(JsonProperty<PropertyType>... property) in Callback()
|
| /arkcompiler/runtime_core/libpandabase/os/ |
| D | property.cpp | 18 namespace panda::os::property { namespace
|
| /arkcompiler/runtime_core/runtime/tooling/ |
| D | debugger.h | 308 …optional<Error> GetProperty([[maybe_unused]] PtObject object, [[maybe_unused]] PtProperty property, in GetProperty() 315 …optional<Error> SetProperty([[maybe_unused]] PtObject object, [[maybe_unused]] PtProperty property, in SetProperty() 378 [[maybe_unused]] PtProperty property) override in SetPropertyAccessWatch() 385 [[maybe_unused]] PtProperty property) override in ClearPropertyAccessWatch() 392 [[maybe_unused]] PtProperty property) override in SetPropertyModificationWatch() 399 … [[maybe_unused]] PtProperty property) override in ClearPropertyModificationWatch()
|
| D | debugger.cpp | 45 static Field *PtPropertyToField(PtProperty property) in PtPropertyToField() 784 std::optional<Error> Debugger::SetPropertyAccessWatch(BaseClass *klass, PtProperty property) in SetPropertyAccessWatch() 800 std::optional<Error> Debugger::ClearPropertyAccessWatch(BaseClass *klass, PtProperty property) in ClearPropertyAccessWatch() 813 std::optional<Error> Debugger::SetPropertyModificationWatch(BaseClass *klass, PtProperty property) in SetPropertyModificationWatch() 828 std::optional<Error> Debugger::ClearPropertyModificationWatch(BaseClass *klass, PtProperty property) in ClearPropertyModificationWatch()
|
| D | pt_hooks_wrapper.h | 121 PtProperty property) override in PropertyAccess() 134 PtProperty property, VRegValue newValue) override in PropertyModification()
|
| /arkcompiler/runtime_core/platforms/unix/libpandabase/ |
| D | property.cpp | 22 namespace panda::os::unix::property { namespace
|
| /arkcompiler/ets_frontend/es2panda/ir/expressions/ |
| D | memberExpression.h | 38 explicit MemberExpression(Expression *object, Expression *property, MemberExpressionKind kind, in MemberExpression()
|
| /arkcompiler/ets_runtime/ecmascript/ |
| D | js_date_time_format.h | 51 IcuPatternDesc(std::string property, const std::vector<IcuPatternEntry> &pairs, in IcuPatternDesc() 62 std::string property; // NOLINT(misc-non-private-member-variables-in-classes) variable
|
| D | js_plural_rules.cpp | 177 …JSHandle<JSTaggedValue> property = JSHandle<JSTaggedValue>::Cast(globalConst->GetHandledTypeString… in InitializePluralRules() local 305 …JSHandle<JSTaggedValue> property = JSHandle<JSTaggedValue>::Cast(globalConst->GetHandledLocaleStri… in ResolvedOptions() local
|
| D | js_relative_time_format.cpp | 53 …JSHandle<JSTaggedValue> property = JSHandle<JSTaggedValue>::Cast(globalConst->GetHandledNumberingS… in InitializeRelativeTimeFormat() local 484 …JSHandle<JSTaggedValue> property = JSHandle<JSTaggedValue>::Cast(globalConst->GetHandledLocaleStri… in ResolvedOptions() local
|
| D | js_number_format.cpp | 260 JSHandle<JSTaggedValue> property = globalConst->GetHandledStyleString(); in SetNumberFormatUnitOptions() local 453 JSHandle<JSTaggedValue> property = globalConst->GetHandledLocaleMatcherString(); in InitializeNumberFormat() local 923 JSHandle<JSTaggedValue> property = globalConst->GetHandledLocaleString(); in ResolvedOptions() local
|
| D | js_locale.cpp | 575 … const JSHandle<JSTaggedValue> &property, OptionType type, in GetOption() 625 … const JSHandle<JSTaggedValue> &property, const std::vector<std::string> &values, in GetOptionOfString() 680 … const JSHandle<JSTaggedValue> &property, int min, int max, int fallback) in GetNumberOption() 992 const JSHandle<JSTaggedValue> &property, bool fallback, bool *res) in GetOptionOfBool()
|
| D | js_displaynames.cpp | 135 JSHandle<JSTaggedValue> property = globalConst->GetHandledLocaleMatcherString(); in InitializeDisplayNames() local
|
| D | js_collator.cpp | 393 JSHandle<JSTaggedValue> property = globalConst->GetHandledLocaleString(); in ResolvedOptions() local
|
| D | js_list_format.cpp | 111 JSHandle<JSTaggedValue> property = globalConst->GetHandledLocaleMatcherString(); in InitializeListFormat() local
|
| D | js_date_time_format.cpp | 383 …JSHandle<JSTaggedValue> property(thread, factory->NewFromStdString(item.property).GetTaggedValue()… in InitializeDateTimeFormat() local 836 JSHandle<JSTaggedValue> property = globalConst->GetHandledLocaleString(); in ResolvedOptions() local
|
| /arkcompiler/runtime_core/runtime/tests/tooling/ |
| D | test_runner.h | 77 PtProperty property) override in PropertyAccess() 85 PtProperty property, VRegValue new_value) override in PropertyModification()
|
| /arkcompiler/ets_frontend/es2panda/typescript/core/ |
| D | destructuringContext.cpp | 591 const ir::Property *property = node->AsProperty(); in ConvertTupleTypeToArrayTypeIfNecessary() local 646 const ir::Property *property = it->AsProperty(); in Start() local
|
| /arkcompiler/ets_frontend/es2panda/parser/ |
| D | parserImpl.cpp | 2315 ir::Statement *property = nullptr; in ParseClassProperty() local 2494 ir::Statement *property = nullptr; in ParseClassElement() local 2637 bool ParserImpl::IsMethodDefinitionsAreSame(const ir::MethodDefinition *property, ir::MethodDefinit… in IsMethodDefinitionsAreSame() 2785 …ir::Statement *property = ParseClassElement(properties, &indexSignatures, hasSuperClass, isDeclare… in ParseClassDefinition() local
|
| D | expressionParser.cpp | 1532 ir::Expression *property = nullptr; in ParsePostPrimaryExpression() local 2144 …ir::Expression *property = ParsePropertyDefinition(flags | ExpressionParseFlags::POTENTIALLY_IN_PA… in ParseObjectExpression() local
|
| /arkcompiler/ets_runtime/ecmascript/builtins/ |
| D | builtins_object.cpp | 688 JSHandle<JSTaggedValue> property = JSTaggedValue::ToPropertyKey(thread, prop); in HasOwnProperty() local 743 JSHandle<JSTaggedValue> property = JSTaggedValue::ToPropertyKey(thread, msg); in PropertyIsEnumerable() local
|
| /arkcompiler/ets_frontend/es2panda/typescript/extractor/ |
| D | typeSystem.h | 1027 auto property = t->AsTSPropertySignature(); in FillMembers() local 1031 auto property = t->AsTSMethodSignature(); in FillMembers() local
|
| D | typeExtractor.cpp | 407 auto property = node->AsMemberExpression()->Property(); in GetTypeIndexFromMemberNode() local
|
| /arkcompiler/ets_runtime/ecmascript/base/ |
| D | json_stringifier.cpp | 243 void JsonStringifier::AddDeduplicateProp(const JSHandle<JSTaggedValue> &property) in AddDeduplicateProp()
|