Home
last modified time | relevance | path

Searched defs:property (Results 1 – 25 of 57) sorted by relevance

123

/arkcompiler/ets_runtime/test/fuzztest/arrayref_fuzzer/
Darrayref_fuzzer.cpp44 Local<ArrayRef> property = ArrayRef::New(vm, (uint32_t)size); in ArrayRefGetValueAtFuzzerTest() local
62 Local<ArrayRef> property = ArrayRef::New(vm, (uint32_t)size); in ArrayRefLengthFuzzerTest() local
77 Local<ArrayRef> property = ArrayRef::New(vm, (uint32_t)size); in ArrayRefSetValueAtFuzzerTest() local
/arkcompiler/runtime_core/static_core/runtime/tooling/inspector/tests/
Djson_object_matcher.h91 …explicit HasJsonPropertyMatcher(JsonProperty<PropertyType> property) : property_(std::move(propert… in HasJsonPropertyMatcher() argument
130 … explicit JsonObjectMatcher(JsonProperty<PropertyType>... property) : properties_ {property...} {} in JsonObjectMatcher()
179 auto JsonProperties(JsonProperty<PropertyType>... property) in JsonProperties()
/arkcompiler/runtime_core/libpandabase/os/
Dproperty.cpp18 namespace panda::os::property { namespace
/arkcompiler/runtime_core/static_core/libpandabase/os/
Dproperty.cpp18 namespace panda::os::property { namespace
/arkcompiler/runtime_core/platforms/unix/libpandabase/
Dproperty.cpp22 namespace panda::os::unix::property { namespace
/arkcompiler/runtime_core/static_core/platforms/unix/libpandabase/
Dproperty.cpp22 namespace panda::os::unix::property { namespace
/arkcompiler/runtime_core/static_core/runtime/tooling/
Ddebugger.h314 …optional<Error> GetProperty([[maybe_unused]] PtObject object, [[maybe_unused]] PtProperty property, in GetProperty()
321 …optional<Error> SetProperty([[maybe_unused]] PtObject object, [[maybe_unused]] PtProperty property, in SetProperty()
384 [[maybe_unused]] PtProperty property) override in SetPropertyAccessWatch()
391 [[maybe_unused]] PtProperty property) override in ClearPropertyAccessWatch()
398 [[maybe_unused]] PtProperty property) override in SetPropertyModificationWatch()
405 … [[maybe_unused]] PtProperty property) override in ClearPropertyModificationWatch()
Ddebugger.cpp45 static Field *PtPropertyToField(PtProperty property) in PtPropertyToField()
777 std::optional<Error> Debugger::SetPropertyAccessWatch(BaseClass *klass, PtProperty property) in SetPropertyAccessWatch()
793 std::optional<Error> Debugger::ClearPropertyAccessWatch(BaseClass *klass, PtProperty property) in ClearPropertyAccessWatch()
806 std::optional<Error> Debugger::SetPropertyModificationWatch(BaseClass *klass, PtProperty property) in SetPropertyModificationWatch()
821 std::optional<Error> Debugger::ClearPropertyModificationWatch(BaseClass *klass, PtProperty property) in ClearPropertyModificationWatch()
/arkcompiler/runtime_core/static_core/runtime/tooling/inspector/types/
Dnumeric_id.h38 auto property = object.GetValue<JsonObject::StringT>(propertyName); in ParseNumericId() local
Dlocation.cpp32 auto property = object.GetValue<JsonObject::JsonObjPointer>(propertyName); in FromJsonProperty() local
Dremote_object.cpp39 for (auto &property : properties) { in GeneratePreview() local
191 auto property = previewProperty.type.ToJson(); in PreviewToJson() local
/arkcompiler/runtime_core/static_core/runtime/tooling/inspector/
Dobject_repository.cpp94 for (auto &property : properties) { in GetProperties() local
180 auto property = isAccessor ? PropertyDescriptor::Accessor(name, CreateObject(value)) in GetProperties() local
/arkcompiler/ets_runtime/test/moduletest/objecthasownproperty/
Dobjecthasownproperty.js69 get: function(target, property) { argument
/arkcompiler/ets_runtime/ecmascript/
Djs_date_time_format.h59 IcuPatternDesc(std::string property, const std::vector<IcuPatternEntry> &pairs, in IcuPatternDesc()
70 std::string property; // NOLINT(misc-non-private-member-variables-in-classes) variable
Djs_plural_rules.cpp179 …JSHandle<JSTaggedValue> property = JSHandle<JSTaggedValue>::Cast(globalConst->GetHandledTypeString… in InitializePluralRules() local
311 …JSHandle<JSTaggedValue> property = JSHandle<JSTaggedValue>::Cast(globalConst->GetHandledLocaleStri… in ResolvedOptions() local
Djs_locale.cpp250const JSHandle<JSTaggedValue> &property, OptionType type, in GetOption()
300const JSHandle<JSTaggedValue> &property, const std::vector<std::string> &values, in GetOptionOfString()
355const JSHandle<JSTaggedValue> &property, int min, int max, int fallback) in GetNumberOption()
658 const JSHandle<JSTaggedValue> &property, bool fallback, bool *res) in GetOptionOfBool()
/arkcompiler/ets_frontend/es2panda/ir/expressions/
DmemberExpression.h38 explicit MemberExpression(Expression *object, Expression *property, MemberExpressionKind kind, in MemberExpression()
/arkcompiler/ets_frontend/es2panda/parser/transformer/
Dtransformer.h348 void AddComputedPropertyBinding(ir::Statement *property, util::StringView name) in AddComputedPropertyBinding()
353 util::StringView GetComputedPropertyBinding(ir::Statement *property) in GetComputedPropertyBinding()
/arkcompiler/ets_frontend/ets2panda/ir/expressions/
DmemberExpression.cpp27 Expression *const object, Expression *const property) in MemberExpression()
398 …auto *const property = property_ != nullptr ? property_->Clone(allocator)->AsExpression() : nullpt… in Clone() local
/arkcompiler/runtime_core/static_core/runtime/tests/tooling/
Dtest_runner.h80 PtProperty property) override in PropertyAccess()
88 PtProperty property, VRegValue newValue) override in PropertyModification()
/arkcompiler/ets_frontend/ets2panda/parser/
DparserImpl.cpp481 ir::ClassElement *property = nullptr; in ParseClassProperty() local
613 ir::ClassElement *property = ParseClassProperty(&desc, properties, propName, nullptr); in ParseClassElement() local
704 bool ParserImpl::CheckClassElement(ir::AstNode *property, ir::MethodDefinition *&ctor, in CheckClassElement()
792 ir::AstNode *property = ParseClassElement(properties, modifiers, flags, identNode); in ParseClassBody() local
DTypedParser.cpp824 bool TypedParser::CheckClassElementInterfaceBody(ir::AstNode *property, ArenaVector<ir::AstNode *> … in CheckClassElementInterfaceBody()
833 bool TypedParser::CheckClassElement(ir::AstNode *property, ir::MethodDefinition *&ctor, in CheckClassElement()
942 ir::AstNode *property = nullptr; in ParseClassElement() local
/arkcompiler/ets_frontend/es2panda/typescript/core/
DdestructuringContext.cpp591 const ir::Property *property = node->AsProperty(); in ConvertTupleTypeToArrayTypeIfNecessary() local
646 const ir::Property *property = it->AsProperty(); in Start() local
/arkcompiler/ets_frontend/ets2panda/checker/ts/
DdestructuringContext.cpp592 ir::Property *property = node->AsProperty(); in ConvertTupleTypeToArrayTypeIfNecessary() local
647 ir::Property *property = it->AsProperty(); in Start() local
/arkcompiler/ets_frontend/ets2panda/compiler/lowering/ets/
DopAssignment.cpp112 ir::Expression *property = nullptr; in HandleOpAssignment() local

123