Lines Matching defs:Representation
26 enum class Representation {
116 using RepresentationField = IsInlinedPropsField::NextField<Representation, REPRESENTATION_NUM>; // 2: 2 bits, 6-7
297 return rep == Representation::DOUBLE;
303 return rep == Representation::INT;
306 inline void SetRepresentation(Representation representation)
311 inline Representation GetRepresentation() const
414 static inline Representation TranslateToRep(JSTaggedValue value)
417 return Representation::INT;
419 return Representation::DOUBLE;
421 return Representation::TAGGED;