MCPcopy Index your code
hub / github.com/nodejs/node / Name

Method Name

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

Return the ascii name of this counter.

(self)

Source from the content-addressed store, hash-verified

345 return self.data.IntAt(self.offset)
346
347 def Name(self):
348 """Return the ascii name of this counter."""
349 result = ""
350 index = self.offset + 4
351 current = self.data.ByteAt(index)
352 while current:
353 result += chr(current)
354 index += 1
355 current = self.data.ByteAt(index)
356 return result
357
358
359class CounterCollection(object):

Callers 9

UpdateCountersMethod · 0.95
ComputeCountersMethod · 0.95
_make_x509_nameMethod · 0.45
RebuildMainWindowMethod · 0.45
parseMethod · 0.45
_make_nodeMethod · 0.45
compile_expressionMethod · 0.45
parse_assign_targetMethod · 0.45
parse_primaryMethod · 0.45

Calls 1

ByteAtMethod · 0.80

Tested by

no test coverage detected