Home
last modified time | relevance | path

Searched refs:_lines (Results 1 – 8 of 8) sorted by relevance

/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/spec_tools/
Dfile_process.py17 self._lines = []
76 return self._lines[self.line_number + relative_index - 1]
80 return self._lines[- (num + 1):-1]
95 self._lines.append(processing_line)
/third_party/skia/demos.skia.org/demos/textedit/
Dtextapi_utils.js244 _lines: null, property
255 getLines: function() { return this._lines; },
261 return this._lines[this._lines.length-1].bottom;
276 const l = lines_index_to_line(this._lines, a);
280 this._cursor.setPath(lines_indices_to_path(this._lines, a, b, this._width));
306 const i = lines_index_to_line_index(this._lines, index);
309 } else if (dy > 0 && i == this._lines.length - 1) {
312 const x = runs_index_to_x(this._lines[i].runs, index);
315 index = runs_x_to_index(this._lines[i+dy].runs, x);
348 this._lines = CanvasKit.ParagraphBuilder.ShapeText(this._text, blocks, this._width);
[all …]
/third_party/skia/modules/canvaskit/npm_build/
Dtextapi_utils.js255 _lines: null, property
266 getLines: function() { return this._lines; },
272 return this._lines[this._lines.length-1].bottom;
287 const l = lines_index_to_line(this._lines, a);
291 this._cursor.setPath(lines_indices_to_path(this._lines, a, b, this._width));
317 const i = lines_index_to_line_index(this._lines, index);
320 } else if (dy > 0 && i == this._lines.length - 1) {
323 const x = runs_index_to_x(this._lines[i].runs, index);
326 index = runs_x_to_index(this._lines[i+dy].runs, x);
373 this._lines = CanvasKit.ParagraphBuilder.ShapeText(this._text, blocks, this._width);
[all …]
/third_party/python/Lib/email/
Dheader.py419 self._lines = []
424 return linesep.join(self._lines)
434 if self._current_line.is_onlyws() and self._lines:
435 self._lines[-1] += str(self._current_line)
437 self._lines.append(str(self._current_line))
478 self._lines.append(self._continuation_ws + line)
537 self._lines.append(str(self._current_line))
Dfeedparser.py58 self._lines = deque()
79 if not self._lines:
85 line = self._lines.popleft()
92 self._lines.appendleft(line)
99 self._lines.appendleft(line)
123 self._lines.extend(lines)
/third_party/protobuf/objectivec/DevTools/
Dpddm.py383 self._lines = []
414 self._lines.append(line)
418 return self._lines
422 return len(self._lines)
430 if not self._lines:
432 return self._lines[0]
/third_party/node/deps/v8/tools/system-analyzer/view/
Dcode-panel.mjs143 this._lines = new Map();
155 this._lines.forEach(line => {
173 let lineAddress = -this._lines.size;
192 this._lines.set(lineAddress, newLine);
197 const lines = Array.from(this._lines.values());
215 const outgoing = this._lines.get(address);
/third_party/protobuf/python/google/protobuf/
Dtext_format.py1253 self._lines = iter(lines)
1278 self._current_line = next(self._lines)