Home
last modified time | relevance | path

Searched refs:top_line (Results 1 – 3 of 3) sorted by relevance

/external/rust/crates/grpcio-sys/grpc/tools/profiling/latency_profile/
Dprofile_analyzer.py59 self.top_line = LineItem(line, self.indent)
60 call_stack_builder.lines.append(self.top_line)
69 assert line['tag'] == self.top_line.tag, (
71 (self.top_line.tag, line['tag'], line['thd'],
72 self.top_line.start_time, line['t']))
74 assert self.top_line.end_time is None
75 self.top_line.end_time = final_time_stamp
76 self.top_line.important = self.top_line.important or line['imp']
77 assert SELF_TIME not in self.top_line.times
78 self.top_line.times[
[all …]
/external/grpc-grpc/tools/profiling/latency_profile/
Dprofile_analyzer.py59 self.top_line = LineItem(line, self.indent)
60 call_stack_builder.lines.append(self.top_line)
69 assert line['tag'] == self.top_line.tag, (
71 (self.top_line.tag, line['tag'], line['thd'],
72 self.top_line.start_time, line['t']))
74 assert self.top_line.end_time is None
75 self.top_line.end_time = final_time_stamp
76 self.top_line.important = self.top_line.important or line['imp']
77 assert SELF_TIME not in self.top_line.times
78 self.top_line.times[
[all …]
/external/pdfium/core/fpdfapi/render/
Dcpdf_type3cache.cpp136 int top_line = DetectFirstLastScan(pBitmap, true); in RenderGlyph() local
138 if (top_line == 0 && bottom_line == pBitmap->GetHeight() - 1) { in RenderGlyph()
144 std::tie(top_line, bottom_line) = pSize->AdjustBlue(top_y, bottom_y); in RenderGlyph()
145 FX_SAFE_INT32 safe_height = bFlipped ? top_line : bottom_line; in RenderGlyph()
146 safe_height -= bFlipped ? bottom_line : top_line; in RenderGlyph()
153 top = top_line; in RenderGlyph()