Lines Matching refs:printee
377 HeapObject* printee = (*debug_object_cache)[i]; in PrintMentionedObjectCache() local
378 Add(" #%d# %p: ", static_cast<int>(i), printee); in PrintMentionedObjectCache()
379 printee->ShortPrint(this); in PrintMentionedObjectCache()
381 if (printee->IsJSObject()) { in PrintMentionedObjectCache()
382 if (printee->IsJSValue()) { in PrintMentionedObjectCache()
383 Add(" value(): %o\n", JSValue::cast(printee)->value()); in PrintMentionedObjectCache()
385 PrintUsingMap(JSObject::cast(printee)); in PrintMentionedObjectCache()
386 if (printee->IsJSArray()) { in PrintMentionedObjectCache()
387 JSArray* array = JSArray::cast(printee); in PrintMentionedObjectCache()
396 } else if (printee->IsByteArray()) { in PrintMentionedObjectCache()
397 PrintByteArray(ByteArray::cast(printee)); in PrintMentionedObjectCache()
398 } else if (printee->IsFixedArray()) { in PrintMentionedObjectCache()
399 unsigned int limit = FixedArray::cast(printee)->length(); in PrintMentionedObjectCache()
400 PrintFixedArray(FixedArray::cast(printee), limit); in PrintMentionedObjectCache()