Lines Matching full:representation
26 enum class Representation { enum
118 …using RepresentationField = IsInlinedPropsField::NextField<Representation, REPRESENTATION_NUM>; //…
299 return rep == Representation::DOUBLE; in IsDoubleRep()
305 return rep == Representation::INT; in IsIntRep()
308 inline void SetRepresentation(Representation representation) in SetRepresentation() argument
310 RepresentationField::Set<uint64_t>(representation, &value_); in SetRepresentation()
313 inline Representation GetRepresentation() const in GetRepresentation()
416 static inline Representation TranslateToRep(JSTaggedValue value) in TranslateToRep()
419 return Representation::INT; in TranslateToRep()
421 return Representation::DOUBLE; in TranslateToRep()
423 return Representation::TAGGED; in TranslateToRep()