Lines Matching refs:printee
370 HeapObject printee = *(*debug_object_cache)[i];
372 reinterpret_cast<void*>(printee.ptr()));
373 printee.ShortPrint(this);
375 if (printee.IsJSObject()) {
376 if (printee.IsJSPrimitiveWrapper()) {
378 JSPrimitiveWrapper::cast(printee).value());
380 PrintUsingMap(JSObject::cast(printee));
381 if (printee.IsJSArray()) {
382 JSArray array = JSArray::cast(printee);
391 } else if (printee.IsByteArray()) {
392 PrintByteArray(ByteArray::cast(printee));
393 } else if (printee.IsFixedArray()) {
394 unsigned int limit = FixedArray::cast(printee).length();
395 PrintFixedArray(FixedArray::cast(printee), limit);