MCPcopy Create free account
hub / github.com/nodejs/node / Name

Method Name

deps/v8/tools/stats-viewer.py:405–414  ·  view source on GitHub ↗

Return the ascii name of this counter.

(self)

Source from the content-addressed store, hash-verified

403 return self.data.IntAt(self.value_offset)
404
405 def Name(self):
406 """Return the ascii name of this counter."""
407 result = ""
408 index = self.name_offset
409 current = self.data.ByteAt(index)
410 while current:
411 result += chr(current)
412 index += 1
413 current = self.data.ByteAt(index)
414 return result
415
416
417class ChromeCounterCollection(object):

Callers

nothing calls this directly

Calls 1

ByteAtMethod · 0.80

Tested by

no test coverage detected