Searched defs:PropertyAttributes (Results 1 – 4 of 4) sorted by relevance
27 class PropertyAttributes; variable
34 class PropertyAttributes; variable
83 explicit PropertyAttributes(uint32_t v) : value_(v) {} in PropertyAttributes() function84 explicit PropertyAttributes(int32_t v) : value_(static_cast<uint32_t>(v)) {} in PropertyAttributes() function85 explicit PropertyAttributes(JSTaggedValue v) : value_(v.GetInt()) {} in PropertyAttributes() function
44 PropertyAttributes::PropertyAttributes(const PropertyDescriptor &desc) in PropertyAttributes() function in panda::ecmascript::PropertyAttributes