Lines Matching full:representation
26 enum class Representation { enum
116 …using RepresentationField = IsInlinedPropsField::NextField<Representation, REPRESENTATION_NUM>; //…
297 return rep == Representation::DOUBLE; in IsDoubleRep()
303 return rep == Representation::INT; in IsIntRep()
306 inline void SetRepresentation(Representation representation) in SetRepresentation() argument
308 RepresentationField::Set<uint64_t>(representation, &value_); in SetRepresentation()
311 inline Representation GetRepresentation() const in GetRepresentation()
414 static inline Representation TranslateToRep(JSTaggedValue value) in TranslateToRep()
417 return Representation::INT; in TranslateToRep()
419 return Representation::DOUBLE; in TranslateToRep()
421 return Representation::TAGGED; in TranslateToRep()