Changeset 56560 in webkit for trunk/JavaScriptCore/profiler/ProfileNode.cpp
- Timestamp:
- Mar 25, 2010, 11:20:17 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/profiler/ProfileNode.cpp
r52791 r56560 294 294 295 295 printf("Function Name %s %d SelfTime %.3fms/%.3f%% TotalTime %.3fms/%.3f%% VSelf %.3fms VTotal %.3fms Visible %s Next Sibling %s\n", 296 functionName().UTF8String(). c_str(),296 functionName().UTF8String().data(), 297 297 m_numberOfCalls, m_actualSelfTime, selfPercent(), m_actualTotalTime, totalPercent(), 298 298 m_visibleSelfTime, m_visibleTotalTime, 299 299 (m_visible ? "True" : "False"), 300 m_nextSibling ? m_nextSibling->functionName().UTF8String(). c_str() : "");300 m_nextSibling ? m_nextSibling->functionName().UTF8String().data() : ""); 301 301 302 302 ++indentLevel; … … 313 313 314 314 // Print function names 315 const char* name = functionName().UTF8String(). c_str();315 const char* name = functionName().UTF8String().data(); 316 316 double sampleCount = m_actualTotalTime * 1000; 317 317 if (indentLevel) { … … 339 339 printf(" "); 340 340 341 printf("%.0f %s\n", sampleCount - sumOfChildrensCount, functionName().UTF8String(). c_str());341 printf("%.0f %s\n", sampleCount - sumOfChildrensCount, functionName().UTF8String().data()); 342 342 } 343 343
Note:
See TracChangeset
for help on using the changeset viewer.