Lines Matching refs:printee
425 HeapObject* printee = (*debug_object_cache)[i]; in PrintMentionedObjectCache() local
426 Add(" #%d# %p: ", i, printee); in PrintMentionedObjectCache()
427 printee->ShortPrint(this); in PrintMentionedObjectCache()
429 if (printee->IsJSObject()) { in PrintMentionedObjectCache()
430 if (printee->IsJSValue()) { in PrintMentionedObjectCache()
431 Add(" value(): %o\n", JSValue::cast(printee)->value()); in PrintMentionedObjectCache()
433 PrintUsingMap(JSObject::cast(printee)); in PrintMentionedObjectCache()
434 if (printee->IsJSArray()) { in PrintMentionedObjectCache()
435 JSArray* array = JSArray::cast(printee); in PrintMentionedObjectCache()
444 } else if (printee->IsByteArray()) { in PrintMentionedObjectCache()
445 PrintByteArray(ByteArray::cast(printee)); in PrintMentionedObjectCache()
446 } else if (printee->IsFixedArray()) { in PrintMentionedObjectCache()
447 unsigned int limit = FixedArray::cast(printee)->length(); in PrintMentionedObjectCache()
448 PrintFixedArray(FixedArray::cast(printee), limit); in PrintMentionedObjectCache()