Lines Matching refs:rawValue
657 void RuntimeStubs::Dump(JSTaggedType rawValue)
660 auto value = JSTaggedValue(rawValue);
665 void RuntimeStubs::DebugDump(JSTaggedType rawValue)
667 DebugDumpWithHint(reinterpret_cast<uintptr_t>(nullptr), rawValue);
670 void RuntimeStubs::DumpWithHint(uintptr_t hintStrAddress, JSTaggedType rawValue)
674 DumpToStreamWithHint(std::cout, hintStr, JSTaggedValue(rawValue));
678 void RuntimeStubs::DebugDumpWithHint(uintptr_t hintStrAddress, JSTaggedType rawValue)
683 LOG_ECMA(DEBUG) << [](const char *hintStr, JSTaggedType rawValue) {
685 DumpToStreamWithHint(out, hintStr, JSTaggedValue(rawValue));
687 }(hintStr, rawValue);