/third_party/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/ |
D | CheckAPI.java | 247 w.newLine(); in write() 534 w.newLine(); in write() 636 bw.newLine(); in run() 673 bw.newLine(); in run() 675 bw.newLine(); in run() 677 bw.newLine(); in run() 679 bw.newLine(); in run() 683 bw.newLine(); in run() 685 bw.newLine(); in run() 690 bw.newLine(); in run() [all …]
|
/third_party/typescript/src/executeCommandLine/ |
D | executeCommandLine.ts | 87 sys.write(getDiagnosticText(Diagnostics.Version_0, version) + sys.newLine); 176 … description, rightAlignOfLeft, leftAlignOfRight, terminalWidth, /*colorLeft*/ true), sys.newLine); 179 …sibleValues, rightAlignOfLeft, leftAlignOfRight, terminalWidth, /*colorLeft*/ false), sys.newLine); 182 …Description, rightAlignOfLeft, leftAlignOfRight, terminalWidth, /*colorLeft*/ false), sys.newLine); 185 text.push(sys.newLine); 188 text.push(colors.blue(name), sys.newLine); 193 text.push(sys.newLine); 199 if (valueCandidates) text.push(sys.newLine); 204 text.push(sys.newLine); 206 text.push(sys.newLine); [all …]
|
/third_party/typescript/src/testRunner/unittests/services/ |
D | hostNewLineSupport.ts | 38 …assert(result.outputFiles[0].text.match(options.newLine === NewLineKind.CarriageReturnLineFeed ? /… 39 …assert(!result.outputFiles[0].text.match(options.newLine === NewLineKind.CarriageReturnLineFeed ? … 43 verifyNewLines(content, { newLine: NewLineKind.CarriageReturnLineFeed }); 44 verifyNewLines(content, { newLine: NewLineKind.LineFeed }); 55 …assert(textAfterSpanCollapse.match(options.newLine === NewLineKind.CarriageReturnLineFeed ? /\r\n/… 56 …assert(!textAfterSpanCollapse.match(options.newLine === NewLineKind.CarriageReturnLineFeed ? /[^\r… 69 { newLine: NewLineKind.CarriageReturnLineFeed }); 74 { newLine: NewLineKind.LineFeed });
|
D | transpile.ts | 23 if (transpileOptions.compilerOptions.newLine === undefined) { 25 transpileOptions.compilerOptions.newLine = NewLineKind.CarriageReturnLineFeed; 114 … options: { compilerOptions: { module: ModuleKind.CommonJS, newLine: NewLineKind.LineFeed } } 118 …options: { compilerOptions: { module: ModuleKind.System, newLine: NewLineKind.LineFeed }, moduleNa… 129 …options: { compilerOptions: { module: ModuleKind.System, newLine: NewLineKind.LineFeed }, renamedD… 136 …options: { compilerOptions: { module: ModuleKind.AMD, newLine: NewLineKind.LineFeed }, renamedDepe… 143 …options: { compilerOptions: { module: ModuleKind.UMD, newLine: NewLineKind.LineFeed }, renamedDepe… 163 newLine: NewLineKind.LineFeed, 177 options: { compilerOptions: { jsx: JsxEmit.React, newLine: NewLineKind.LineFeed } } 181 …options: { compilerOptions: { newLine: NewLineKind.LineFeed, module: ModuleKind.CommonJS }, fileNa… [all …]
|
/third_party/typescript/src/testRunner/unittests/ |
D | transform.ts | 65 const printer = createPrinter({ newLine: NewLineKind.CarriageReturnLineFeed }, { 128 newLine: NewLineKind.CarriageReturnLineFeed 140 newLine: NewLineKind.CarriageReturnLineFeed 151 newLine: NewLineKind.CarriageReturnLineFeed, 183 newLine: NewLineKind.CarriageReturnLineFeed, 198 newLine: NewLineKind.CarriageReturnLineFeed, 213 newLine: NewLineKind.CarriageReturnLineFeed, 225 newLine: NewLineKind.CarriageReturnLineFeed, 266 newLine: NewLineKind.CarriageReturnLineFeed, 299 newLine: NewLineKind.CarriageReturnLineFeed, [all …]
|
D | programApi.ts | 40 { newLine: NewLineKind.LineFeed }); 117 getNewLine: () => sys.newLine, 145 …am = createProgram(["/a.ts"], emptyOptions, new fakes.CompilerHost(fs, { newLine: NewLineKind.Line… 153 …am = createProgram(["/a.ts"], emptyOptions, new fakes.CompilerHost(fs, { newLine: NewLineKind.Line… 172 …(["/main.ts"], { resolveJsonModule: true }, new fakes.CompilerHost(fs, { newLine: NewLineKind.Line… 189 …const program = createProgram(["/main.ts"], {}, new fakes.CompilerHost(fs, { newLine: NewLineKind.… 201 …const program = createProgram(["/main.ts"], {}, new fakes.CompilerHost(fs, { newLine: NewLineKind.… 218 }, new fakes.CompilerHost(fs, { newLine: NewLineKind.LineFeed }));
|
D | reuseProgramStructure.ts | 9 const newLine = "\r\n"; constant 43 return new SourceText(references + newLine, importsAndExports + newLine, program || ""); 52 …return new SourceText(newReferences + newLine, this.importsAndExports, this.program, this.changedP… 56 …return new SourceText(this.references, newImportsAndExports + newLine, this.program, this.changedP… 133 getNewLine: () => sys ? sys.newLine : newLine, 646 …`/// <reference path="a1.ts"/>${newLine}/// <reference types="typerefs1"/>${newLine}/// <reference… 647 `import { B } from './b1';${newLine}export let BB = B;`, 653 `/// <reference path="a2.ts"/>${newLine}/// <reference types="typerefs2"/>`, 654 `import { B } from './b2';${newLine}import { BB } from './f1';`, 695 …ext = f[indexOfF1].text.updateReferences(`/// <reference path="a1.ts"/>${newLine}/// <reference ty…
|
D | printer.ts | 7 … printCallback(createPrinter({ newLine: NewLineKind.CarriageReturnLineFeed, ...options }))); 105 const printer = createPrinter({ newLine: NewLineKind.CarriageReturnLineFeed }); 117 const printer = createPrinter({ newLine: NewLineKind.CarriageReturnLineFeed });
|
/third_party/skia/experimental/sktext/tests/ |
D | ShapedText.cpp | 54 auto newLine = utf16.find_first_of(u"\n"); in UNIX_ONLY_TEST() local 57 REPORTER_ASSERT(reporter, logicalRuns[1].getTextRange() == TextRange(newLine, newLine + 1)); in UNIX_ONLY_TEST() 73 auto newLine = utf16.find_first_of(u"\n"); in UNIX_ONLY_TEST() local 76 REPORTER_ASSERT(reporter, logicalRuns[1].getTextRange() == TextRange(newLine, newLine + 1)); in UNIX_ONLY_TEST()
|
/third_party/typescript/src/compiler/ |
D | watch.ts | 5 getNewLine: () => sys.newLine, 15 getNewLine: () => system.newLine, 51 function getPlainDiagnosticFollowingNewLines(diagnostic: Diagnostic, newLine: string): string { 53 ? newLine + newLine 54 : newLine; 76 (diagnostic, newLine, options) => { 79 …t += `${flattenDiagnosticMessageText(diagnostic.messageText, system.newLine)}${newLine + newLine}`; 82 (diagnostic, newLine, options) => { 86 output += newLine; 90 …MessageText(diagnostic.messageText, system.newLine)}${getPlainDiagnosticFollowingNewLines(diagnost… [all …]
|
D | watchPublic.ts | 55 …export type WatchStatusReporter = (diagnostic: Diagnostic, newLine: string, options: CompilerOptio… 62 …onWatchStatusChange?(diagnostic: Diagnostic, newLine: string, options: CompilerOptions, errorCount… 311 let newLine = updateNewLine(); 314 newLine = updateNewLine(); 318 newLine = getNewLineCharacter(optionsToExtendForConfigFile, () => host.getNewLine()); 321 newLine = updateNewLine(); 339 compilerHost.getNewLine = () => newLine; 447 newLine = updateNewLine(); 647 …host.onWatchStatusChange(createCompilerDiagnostic(message), newLine, compilerOptions || optionsToE…
|
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/Retired/ |
D | insertTags.py | 59 newLine = '// refBegin ' + name + ' - ' + refDesc[name] + '\n' 68 file[line] = newLine 72 file.insert(line, newLine) 81 file[line] = newLine
|
/third_party/typescript/src/services/ |
D | jsDoc.ts | 340 …export function getDocCommentTemplateAtPosition(newLine: string, sourceFile: SourceFile, position:… 372 …ameters ? parameterDocComments(parameters || [], isJavaScriptFile, indentationStr, newLine) : "") + 373 (hasReturn ? returnsDocComment(indentationStr, newLine) : ""); 390 const preamble = openComment + newLine + indentationStr + " * "; 391 const endLine = tokenStart === position ? newLine + indentationStr : ""; constant 392 const result = preamble + newLine + tags + indentationStr + closeComment + endLine; 406 …rameterDeclaration[], isJavaScriptFile: boolean, indentationStr: string, newLine: string): string { 410 return `${indentationStr} * @param ${type}${paramName}${newLine}`; 414 function returnsDocComment(indentationStr: string, newLine: string) { 415 return `${indentationStr} * @returns${newLine}`;
|
D | transpile.ts | 49 const newLine = getNewLineCharacter(options); constant 67 getNewLine: () => newLine,
|
/third_party/node/deps/npm/node_modules/diff/lib/patch/ |
D | create.js | 75 newLine = 1; 94 newRangeStart = newLine; 125 newLine += lines.length; 185 newLines: newLine - newRangeStart + contextSize, 214 newLine += lines.length;
|
/third_party/typescript/src/typingsInstaller/ |
D | nodeTypingsInstaller.ts | 23 fs.appendFileSync(this.logFile, `[${nowString()}] ${text}${sys.newLine}`); 208 this.log.writeLine(` Succeeded. stdout:${indent(sys.newLine, stdout)}`); 214 …g.writeLine(` Failed. stdout:${indent(sys.newLine, stdout)}${sys.newLine} stderr:${indent(sy…
|
/third_party/typescript/src/harness/ |
D | harnessIO.ts | 3 newLine(): string; method 140 newLine: () => harnessNewLine, 406 options.newLine = options.newLine || ts.NewLineKind.CarriageReturnLineFeed; 538 …nst host = { getCanonicalFileName, getCurrentDirectory: () => "", getNewLine: () => IO.newLine() }; 550 …ntForSummary(diagnostics), ts.getFilesInErrorForSummary(diagnostics), IO.newLine(), { getCurrentDi… 566 function newLine() { 576 getNewLine: () => IO.newLine(), 581 const message = ts.flattenDiagnosticMessageText(error.messageText, IO.newLine()); 590 …oticHost, ts.identity) : ""}: ${ts.flattenDiagnosticMessageText(info.messageText, IO.newLine())}`); 593 errLines.forEach(e => outputLines += (newLine() + e)); [all …]
|
D | fakesHosts.ts | 9 newLine?: "\r\n" | "\n"; property 20 public readonly newLine: string; 27 …constructor(vfs: vfs.FileSystem, { executingFilePath, newLine = "\r\n", env }: SystemOptions = {})… 30 this.newLine = newLine; 238 this._newLine = ts.getNewLineCharacter(options, () => this.sys.newLine);
|
D | harnessUtils.ts | 163 … messageText: ts.flattenDiagnosticMessageText(diagnostic.messageText, Harness.IO.newLine()), 261 ts.flattenDiagnosticMessageText(d1.messageText, Harness.IO.newLine()), 262 …ts.flattenDiagnosticMessageText(d2.messageText, Harness.IO.newLine()), "d1.messageText !== d2.mess… 357 (error as any).stack = filtered.join(Harness.IO.newLine());
|
/third_party/glslang/glslang/MachineIndependent/ |
D | Scan.h | 164 void setLine(int newLine) in setLine() argument 166 logicalSourceLoc.line = newLine; in setLine() 167 loc[getLastValidSourceIndex()].line = newLine; in setLine()
|
/third_party/typescript/src/testRunner/unittests/tscWatch/ |
D | emit.ts | 351 function verifyNewLine(subScenario: string, newLine: string) { 360 content: ["var x = 1;", "var y = 2;"].join(newLine) 364 { newLine } 369 change: sys => sys.appendFile("/a/app.ts", newLine + "var z = 3;"),
|
/third_party/node/deps/v8/src/inspector/ |
D | search-util.cc | 57 size_t newLine = match.find("\n"); in findMagicComment() local 58 if (newLine != String16::kNotFound) match = match.substring(0, newLine); in findMagicComment()
|
/third_party/typescript/tests/baselines/reference/ |
D | APISample_Watch.js | 25 getNewLine: () => ts.sys.newLine, 98 getNewLine: function () { return ts.sys.newLine; }
|
D | APISample_WatchWithOwnWatchHost.js | 29 getNewLine: () => ts.sys.newLine, 82 getNewLine: function () { return ts.sys.newLine; },
|
/third_party/skia/modules/skplaintexteditor/src/ |
D | editor.cpp | 357 const auto& newLine = fLines[pos.fParagraphIndex]; in move() local 358 size_t r = newLine.fLineEndOffsets.size(); in move() 360 pos.fTextByteIndex = find_closest_x(newLine.fCursorPos, x, in move() 361 newLine.fLineEndOffsets[r - 1], in move() 362 newLine.fCursorPos.size()); in move() 364 pos.fTextByteIndex = find_closest_x(newLine.fCursorPos, x, 0, in move() 365 newLine.fCursorPos.size()); in move()
|