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