Home
last modified time | relevance | path

Searched refs:lineOffset (Results 1 – 17 of 17) sorted by relevance

/third_party/skia/third_party/externals/spirv-tools/utils/vscode/src/lsp/span/
Dutf16.go46 lineOffset := offset - colZero
47 if lineOffset < 0 || offset > len(content) {
48 …return -1, fmt.Errorf("ToUTF16Column: offsets %v-%v outside file contents (%v)", lineOffset, offse…
52 start := content[lineOffset:]
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/utils/vscode/src/lsp/span/
Dutf16.go46 lineOffset := offset - colZero
47 if lineOffset < 0 || offset > len(content) {
48 …return -1, fmt.Errorf("ToUTF16Column: offsets %v-%v outside file contents (%v)", lineOffset, offse…
52 start := content[lineOffset:]
/third_party/spirv-tools/utils/vscode/src/lsp/span/
Dutf16.go46 lineOffset := offset - colZero
47 if lineOffset < 0 || offset > len(content) {
48 …return -1, fmt.Errorf("ToUTF16Column: offsets %v-%v outside file contents (%v)", lineOffset, offse…
52 start := content[lineOffset:]
/third_party/node/lib/
Dvm.js75 lineOffset = 0,
84 validateInt32(lineOffset, 'options.lineOffset');
104 lineOffset,
324 lineOffset = 0,
333 validateUint32(lineOffset, 'options.lineOffset');
359 lineOffset,
/third_party/node/test/parallel/
Dtest-vm-options-validation.js23 new vm.Script('void 0', { lineOffset: value }); property
33 new vm.Script('void 0', { lineOffset: value }); property
42 new vm.Script('void 0', { lineOffset: Number.MAX_SAFE_INTEGER }); property
Dtest-vm-context.js112 lineOffset: 32, property
Dtest-vm-basic.js268 { lineOffset: 3 } property
/third_party/node/lib/internal/vm/
Dmodule.js123 options.lineOffset, options.columnOffset,
273 lineOffset = 0,
282 validateInt32(lineOffset, 'options.lineOffset');
310 lineOffset, property
/third_party/typescript/src/harness/
Dclient.ts62 …private lineOffsetToPosition(fileName: string, lineOffset: protocol.Location, lineMap?: number[]):…
64 … return computePositionOfLineAndCharacter(lineMap, lineOffset.line - 1, lineOffset.offset - 1);
68 … const lineOffset = computeLineAndCharacterOfPosition(this.getLineMap(fileName), position); constant
70 line: lineOffset.line + 1,
71 offset: lineOffset.character + 1
/third_party/node/doc/api/
Dvm.md71 * `lineOffset` {number} Specifies the line number offset that is displayed
647 * `lineOffset` {integer} Specifies the line number offset that is displayed
860 * `lineOffset` {number} Specifies the line number offset that is displayed
1057 * `lineOffset` {number} Specifies the line number offset that is displayed
1140 * `lineOffset` {number} Specifies the line number offset that is displayed
1234 * `lineOffset` {number} Specifies the line number offset that is displayed
/third_party/vk-gl-cts/framework/common/
DtcuRasterizationVerifier.cpp966 float lineOffset = 0.0f; in verifyMultisampleLineGroupRasterization() local
968 while (lineOffset < lineLength) in verifyMultisampleLineGroupRasterization()
970 float d0 = (float)lineOffset; in verifyMultisampleLineGroupRasterization()
1007 lineOffset = d1; in verifyMultisampleLineGroupRasterization()
/third_party/node/lib/internal/modules/cjs/
Dloader.js991 lineOffset: 0, property
/third_party/typescript/src/server/
DeditorServices.ts2811 const lineOffset = info.positionToLineOffset(pos); constant
2812 return { line: lineOffset.line - 1, character: lineOffset.offset - 1 };
/third_party/node/doc/changelogs/
DCHANGELOG_V5.md1229 …node/commit/2a60e2ad71)] - **module,src**: do not wrap modules with -1 lineOffset (cjihrig) [#4298…
DCHANGELOG_V4.md2480 …node/commit/1408f7abb1)] - **module,src**: do not wrap modules with -1 lineOffset (cjihrig) [#4298…
/third_party/typescript/lib/
Dtsserverlibrary.js158057 var lineOffset = info.positionToLineOffset(pos);
158058 return { line: lineOffset.line - 1, character: lineOffset.offset - 1 };
Dtsserver.js157863 var lineOffset = info.positionToLineOffset(pos);
157864 return { line: lineOffset.line - 1, character: lineOffset.offset - 1 };