Searched defs:PropertyAttributes (Results 1 – 3 of 3) sorted by relevance
26 class PropertyAttributes; variable
55 explicit PropertyAttributes(uint32_t v) : value_(v) {} in PropertyAttributes() function56 explicit PropertyAttributes(int32_t v) : value_(static_cast<uint32_t>(v)) {} in PropertyAttributes() function57 explicit PropertyAttributes(JSTaggedValue v) : value_(v.GetInt()) {} in PropertyAttributes() function
34 PropertyAttributes::PropertyAttributes(const PropertyDescriptor &desc) in PropertyAttributes() function in panda::ecmascript::PropertyAttributes