Home
last modified time | relevance | path

Searched refs:start_a (Results 1 – 2 of 2) sorted by relevance

/external/v8/test/mjsunit/
Ddebug-sourceinfo.js76 var start_a = 9 + comment_line_length; variable
88 assertEquals(start_a, Debug.sourcePosition(a));
152 assertEquals(start_a, script.locationFromPosition(start_a).position);
153 assertEquals(0, script.locationFromPosition(start_a).line - comment_lines);
154 assertEquals(10, script.locationFromPosition(start_a).column);
190 assertEquals(start_a, script.locationFromLine(void 0, void 0, start_a).position);
191 assertEquals(0, script.locationFromLine(void 0, void 0, start_a).line - comment_lines);
192 assertEquals(10, script.locationFromLine(void 0, void 0, start_a).column);
193 assertEquals(start_a, script.locationFromLine(0, void 0, start_a).position);
194 assertEquals(0, script.locationFromLine(0, void 0, start_a).line - comment_lines);
[all …]
/external/libvpx/libvpx/tools/
Ddiff.py44 def __init__(self, header, file_a, file_b, start_a, len_a, start_b, len_b): argument
46 self.left = DiffLines(file_a, start_a, len_a)
104 start_a = int(diffrange.group(1))
107 start_a = 1
118 hunk = DiffHunk(header, a, b, start_a, len_a, start_b, len_b)