Lines Matching full:representation
26 enum class Representation { enum
117 …using RepresentationField = IsInlinedPropsField::NextField<Representation, REPRESENTATION_NUM>; //…
298 return rep == Representation::DOUBLE; in IsDoubleRep()
304 return rep == Representation::INT; in IsIntRep()
307 inline void SetRepresentation(Representation representation) in SetRepresentation() argument
309 RepresentationField::Set<uint64_t>(representation, &value_); in SetRepresentation()
312 inline Representation GetRepresentation() const in GetRepresentation()
415 static inline Representation TranslateToRep(JSTaggedValue value) in TranslateToRep()
418 return Representation::INT; in TranslateToRep()
420 return Representation::DOUBLE; in TranslateToRep()
422 return Representation::TAGGED; in TranslateToRep()