Lines Matching refs:where_to_point
151 WhereToPoint where_to_point, int skip) { in SerializeHotObject() argument
152 if (how_to_code != kPlain || where_to_point != kStartOfObject) return false; in SerializeHotObject()
171 WhereToPoint where_to_point, int skip) { in SerializeBackReference() argument
184 PutAttachedReference(reference, how_to_code, where_to_point); in SerializeBackReference()
196 sink_.Put(kBackref + how_to_code + where_to_point + space, "BackRef"); in SerializeBackReference()
198 sink_.Put(kBackrefWithSkip + how_to_code + where_to_point + space, in SerializeBackReference()
209 SerializerDeserializer::WhereToPoint where_to_point, in PutRoot() argument
222 if (how_to_code == kPlain && where_to_point == kStartOfObject && in PutRoot()
233 sink_.Put(kRootArray + how_to_code + where_to_point, "RootSerialization"); in PutRoot()
254 WhereToPoint where_to_point) { in PutAttachedReference() argument
256 DCHECK((how_to_code == kPlain && where_to_point == kStartOfObject) || in PutAttachedReference()
257 (how_to_code == kPlain && where_to_point == kInnerPointer) || in PutAttachedReference()
258 (how_to_code == kFromCode && where_to_point == kStartOfObject) || in PutAttachedReference()
259 (how_to_code == kFromCode && where_to_point == kInnerPointer)); in PutAttachedReference()
260 sink_.Put(kAttachedReference + how_to_code + where_to_point, "AttachedRef"); in PutAttachedReference()