Home
last modified time | relevance | path

Searched refs:PropertyAttribute (Results 1 - 18 of 18) sorted by relevance

/arkcompiler/ets_runtime/test/fuzztest/propertyattribute_fuzzer/
H A Dpropertyattribute_fuzzer.cpp35 PropertyAttribute::Default(); in PropertyAttributeFuzzTest()
58 PropertyAttribute propertyattribute(jsvalueref, w, e, c); in PropertyAttributeSetIsFuzzTest()
/arkcompiler/ets_runtime/ecmascript/napi/test/
H A Djsnapi_third_tests.cpp959 PropertyAttribute attributes[1100]; in HWTEST_F_L0()
966 attributes[j] = PropertyAttribute(values[j], true, true, true); in HWTEST_F_L0()
1004 PropertyAttribute attributes[] = { in HWTEST_F_L0()
1005 PropertyAttribute(values[0], true, true, true), in HWTEST_F_L0()
1026 PropertyAttribute attributes[] = { in HWTEST_F_L0()
1027 PropertyAttribute(values[0], true, true, true), in HWTEST_F_L0()
1028 PropertyAttribute(values[1], true, true, true), in HWTEST_F_L0()
1029 PropertyAttribute(values[2], true, true, true), in HWTEST_F_L0()
1118 PropertyAttribute attribute(value, true, true, true); in HWTEST_F_L0()
1144 PropertyAttribute attribut in HWTEST_F_L0()
[all...]
H A Djsnapi_sendable_tests.cpp115 infos.instancePropertiesInfo.attributes.push_back(PropertyAttribute(tempStr, true, true, true)); in GetNewSendableClassFunction()
118 infos.staticPropertiesInfo.attributes.push_back(PropertyAttribute(tempStr, true, true, true)); in GetNewSendableClassFunction()
121 infos.nonStaticPropertiesInfo.attributes.push_back(PropertyAttribute(tempStr, true, true, true)); in GetNewSendableClassFunction()
138 infos.instancePropertiesInfo.attributes.push_back(PropertyAttribute(instanceStr, true, true, true)); in GetNewSendableClassFunction()
143 infos.staticPropertiesInfo.attributes.push_back(PropertyAttribute(staticStr, true, true, true)); in GetNewSendableClassFunction()
148 infos.nonStaticPropertiesInfo.attributes.push_back(PropertyAttribute(nonStaticStr, true, true, true)); in GetNewSendableClassFunction()
155 infos.instancePropertiesInfo.attributes.push_back(PropertyAttribute(duplicatedValue, true, true, true)); in GetNewSendableClassFunction()
443 infos.staticPropertiesInfo.attributes.push_back(PropertyAttribute(func, true, true, true)); in HWTEST_F_L0()
463 infos.staticPropertiesInfo.attributes.push_back(PropertyAttribute(getterSetter, true, true, true)); in HWTEST_F_L0()
486 infos.staticPropertiesInfo.attributes.push_back(PropertyAttribute(staticValu in HWTEST_F_L0()
[all...]
H A Dffi_workload.cpp1603 PropertyAttribute object(value, true, true, true); in HWTEST_F_L0()
1609 TEST_TIME(PropertyAttribute::Default); in HWTEST_F_L0()
1618 PropertyAttribute *p = new PropertyAttribute(); in HWTEST_F_L0()
1622 TEST_TIME(PropertyAttribute::PropertyAttribute); in HWTEST_F_L0()
1632 PropertyAttribute *p = new PropertyAttribute(value, true, true, true); in HWTEST_F_L0()
1636 TEST_TIME(PropertyAttribute::PropertyAttribute); in HWTEST_F_L0()
[all...]
H A Djsnapi_first_tests.cpp525 PropertyAttribute attribute(value, true, true, true); in HWTEST_F_L0()
548 PropertyAttribute attribute(value, true, true, true); in HWTEST_F_L0()
561 PropertyAttribute attribute(value, true, true, true); in HWTEST_F_L0()
573 PropertyAttribute attribute(value, true, true, true); in HWTEST_F_L0()
1994 PropertyAttribute attribute(value, true, true, true); in HWTEST_F_L0()
H A Djsnapi_sample.cpp501 PropertyAttribute attribute1(StringRef::NewFromUtf8(vm, "AttributeValue1"), true, true, false); in ObjectRefSet()
502 PropertyAttribute attribute2(StringRef::NewFromUtf8(vm, "AttributeValue2"), false, true, true); in ObjectRefSet()
503 PropertyAttribute attribute3(StringRef::NewFromUtf8(vm, "AttributeValue3"), true, false, true); in ObjectRefSet()
676 PropertyAttribute attribute(StringRef::NewFromUtf8(vm, "FreezeValue"), true, true, false); in FreezeAndSeal()
692 PropertyAttribute value1; in GetOwnProperty()
695 PropertyAttribute value2; in GetOwnProperty()
H A Djsnapi_second_tests.cpp618 PropertyAttribute attribute(value, true, true, true); in HWTEST_F_L0()
1676 PropertyAttribute property(value, true, true, true); in HWTEST_F_L0()
/arkcompiler/ets_runtime/test/fuzztest/objectrefgetownproperty_fuzzer/
H A Dobjectrefgetownproperty_fuzzer.cpp40 PropertyAttribute attribute(objectvalue, true, true, true); in JSNApiGetOwnPropertyFuzzTest()
/arkcompiler/ets_runtime/test/fuzztest/objectref_fuzzer/
H A Dobjectref_fuzzer.cpp61 PropertyAttribute attribute(value, true, true, true); in DefinePropertyFuzzTest()
/arkcompiler/ets_runtime/ecmascript/napi/include/
H A Djsnapi_expo.h635 class ECMA_PUBLIC_API PropertyAttribute { class
637 static PropertyAttribute Default() in Default()
639 return PropertyAttribute(); in Default()
641 PropertyAttribute() = default;
642 PropertyAttribute(Local<JSValueRef> value, bool w, bool e, bool c) in PropertyAttribute() function in panda::PropertyAttribute
651 ~PropertyAttribute() = default;
776 std::vector<PropertyAttribute> attributes;
787 const PropertyAttribute *attributes);
801 Local<FunctionRef> setter, PropertyAttribute attribute = PropertyAttribute
[all...]
/arkcompiler/ets_runtime/ecmascript/debugger/
H A Ddebugger_api.cpp311 PropertyAttribute protoProperty = PropertyAttribute::Default(); in GetObjectClassName()
666 PropertyAttribute descriptor(variableValue, true, true, true); in InitializeExportVariables()
717 PropertyAttribute descriptor(variableValue, true, true, true); in GetLocalExportVariables()
759 PropertyAttribute descriptor(value, true, true, true); in GetIndirectExportVariables()
801 PropertyAttribute descriptor(static_cast<Local<JSValueRef>>(importModuleObj), true, true, true); in GetImportVariables()
809 PropertyAttribute descriptor(value, true, true, true); in GetImportVariables()
/arkcompiler/toolchain/tooling/agent/
H A Ddebugger_impl.cpp1866 PropertyAttribute descriptor(value, true, true, true); in GetClosureScopeChains()
1955 PropertyAttribute descriptor(value, true, true, true); in GetLocalVariables()
2004 PropertyAttribute descriptor(newVal, true, true, true); in UpdateScopeObject()
H A Druntime_impl.cpp295 PropertyAttribute jsProperty = PropertyAttribute::Default(); in GetProperties()
/arkcompiler/toolchain/tooling/test/
H A Dpt_types_test.cpp741 PropertyAttribute property; in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/napi/
H A Djsnapi_expo.cpp2475 const PropertyAttribute *attributes) in NewWithProperties()
2485 const PropertyAttribute &attr = attributes[i]; in NewWithProperties()
2655 Local<FunctionRef> setter, PropertyAttribute attribute) in SetAccessorProperty()
2743 bool ObjectRef::GetOwnProperty(const EcmaVM *vm, Local<JSValueRef> key, PropertyAttribute &property) in GetOwnProperty()
2833 bool ObjectRef::DefineProperty(const EcmaVM *vm, Local<JSValueRef> key, PropertyAttribute attribute) in DefineProperty()
/arkcompiler/toolchain/tooling/base/
H A Dpt_types.h893 const PropertyAttribute &property);
H A Dpt_types.cpp1339 Local<JSValueRef> name, const PropertyAttribute &property) in FromProperty()
/arkcompiler/ets_runtime/ecmascript/tests/
H A Djs_object_test.cpp180 HWTEST_F_L0(JSObjectTest, PropertyAttribute) in HWTEST_F_L0()

Completed in 61 milliseconds