Searched refs:lineOffset (Results 1 - 14 of 14) sorted by relevance
/third_party/node/lib/internal/source_map/ |
H A D | source_map.js | 172 * @param {number} lineOffset 0-indexed line offset in compiled resource 176 findEntry(lineOffset, columnOffset) { 183 if (lineOffset < mapping[0] || 184 (lineOffset === mapping[0] && columnOffset < mapping[1])) { 192 if (!first && entry && (lineOffset < entry[0] || 193 (lineOffset === entry[0] && columnOffset < entry[1]))) { 224 const lineOffset = lineNumber - range.generatedLine; 229 lineNumber: range.originalLine + lineOffset,
|
/third_party/node/lib/internal/ |
H A D | vm.js | 73 code, filename, lineOffset, columnOffset, 79 lineOffset, 110 lineOffset, 124 lineOffset,
|
/third_party/skia/third_party/externals/spirv-tools/utils/vscode/src/lsp/span/ |
H A D | utf16.go | 46 lineOffset := offset - colZero 47 if lineOffset < 0 || offset > len(content) { 48 return -1, fmt.Errorf("ToUTF16Column: offsets %v-%v outside file contents (%v)", lineOffset, offset, len(content)) 51 // This cannot panic: offset > len(content) and lineOffset < offset. 52 start := content[lineOffset:]
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/utils/vscode/src/lsp/span/ |
H A D | utf16.go | 46 lineOffset := offset - colZero 47 if lineOffset < 0 || offset > len(content) { 48 return -1, fmt.Errorf("ToUTF16Column: offsets %v-%v outside file contents (%v)", lineOffset, offset, len(content)) 51 // This cannot panic: offset > len(content) and lineOffset < offset. 52 start := content[lineOffset:]
|
/third_party/spirv-tools/utils/vscode/src/lsp/span/ |
H A D | utf16.go | 46 lineOffset := offset - colZero 47 if lineOffset < 0 || offset > len(content) { 48 return -1, fmt.Errorf("ToUTF16Column: offsets %v-%v outside file contents (%v)", lineOffset, offset, len(content)) 51 // This cannot panic: offset > len(content) and lineOffset < offset. 52 start := content[lineOffset:]
|
/third_party/node/test/parallel/ |
H A D | test-vm-options-validation.js | 23 new vm.Script('void 0', { lineOffset: value }); 33 new vm.Script('void 0', { lineOffset: value }); 42 new vm.Script('void 0', { lineOffset: Number.MAX_SAFE_INTEGER });
|
H A D | test-vm-context.js | 110 lineOffset: 32,
|
H A D | test-vm-basic.js | 180 'lineOffset': 'number', 268 { lineOffset: 3 }
|
/third_party/node/lib/ |
H A D | vm.js | 77 lineOffset = 0, 86 validateInt32(lineOffset, 'options.lineOffset'); 101 lineOffset, 308 lineOffset = 0, 318 validateInt32(lineOffset, 'options.lineOffset'); 345 code, filename, lineOffset, columnOffset,
|
/third_party/node/lib/internal/vm/ |
H A D | module.js | 125 options.lineOffset, options.columnOffset, 270 lineOffset = 0, 279 validateInt32(lineOffset, 'options.lineOffset'); 298 lineOffset,
|
/third_party/backends/backend/ |
H A D | coolscan.c | 2543 unsigned int bpl, linesPerBuf, lineOffset; in reader_process() local 2618 for (line = 0, lineOffset = 0; line < linesPerBuf; in reader_process() 2619 line++, lineOffset += bpl ) { in reader_process() 2623 r_data=scanner->buffer[lineOffset + j]; in reader_process() 2624 g_data=scanner->buffer[lineOffset + j + 1]; in reader_process() 2625 b_data=scanner->buffer[lineOffset + j + 2]; in reader_process() 2627 scanner->buffer[lineOffset + j] = in reader_process() 2628 scanner->buffer[lineOffset + bpl -1 - j - 2 ]; in reader_process() 2629 scanner->buffer[lineOffset + j + 1] = in reader_process() 2630 scanner->buffer[lineOffset in reader_process() [all...] |
/third_party/vk-gl-cts/framework/common/ |
H A D | tcuRasterizationVerifier.cpp | 966 float lineOffset = 0.0f; 968 while (lineOffset < lineLength) 970 float d0 = (float)lineOffset; 1007 lineOffset = d1;
|
/third_party/typescript/lib/ |
H A D | tsserverlibrary.js | [all...] |
H A D | tsserver.js | [all...] |
Completed in 71 milliseconds