/third_party/typescript/src/typingsInstallerCore/ |
D | typingsInstaller.ts | 12 writeLine(text: string): void; method 17 writeLine: noop 27 … log.writeLine(`Failed to resolve ${packageName} in folder '${cachePath}': ${(<Error>e).message}`); 121 …this.log.writeLine(`Global cache location '${globalCachePath}', safe file path '${safeListPath}', … 123 …gingEnabled ? WatchLogLevel.Verbose : WatchLogLevel.None, s => this.log.writeLine(s), getDetailWat… 133 this.log.writeLine(`Closing file watchers for project '${projectName}'`); 138 this.log.writeLine(`No watchers are registered for project '${projectName}'`); 146 this.log.writeLine(`Closing file watchers for project '${projectName}' - done.`); 152 this.log.writeLine(`Got install request ${JSON.stringify(req)}`); 158 …this.log.writeLine(`Request specifies cache path '${req.cachePath}', loading cached information...… [all …]
|
/third_party/typescript/src/typingsInstaller/ |
D | nodeTypingsInstaller.ts | 19 writeLine = (text: string) => { property in ts.server.typingsInstaller.FileLog 52 log.writeLine(`Types registry file '${typesRegistryFilePath}' does not exist`); 62 …log.writeLine(`Error when loading types registry file '${typesRegistryFilePath}': ${(<Error>e).mes… 101 this.log.writeLine(`Process id: ${process.pid}`); 102 …this.log.writeLine(`NPM location: ${this.npmPath} (explicit '${Arguments.NpmLocation}' ${npmLocati… 103 this.log.writeLine(`validateDefaultNpmLocation: ${validateDefaultNpmLocation}`); 111 this.log.writeLine(`Updating ${typesRegistryPackageName} npm package...`); 115 this.log.writeLine(`Updated ${typesRegistryPackageName} npm package`); 120 … this.log.writeLine(`Error updating ${typesRegistryPackageName} package: ${(<Error>e).message}`); 180 this.log.writeLine(`Sending response:\n ${JSON.stringify(response)}`); [all …]
|
/third_party/flutter/skia/src/sksl/ |
D | SkSLGLSLCodeGenerator.cpp | 37 void GLSLCodeGenerator::writeLine(const char* s) { in writeLine() function in SkSL::GLSLCodeGenerator 60 void GLSLCodeGenerator::writeLine(const String& s) { in writeLine() function in SkSL::GLSLCodeGenerator 61 this->writeLine(s.c_str()); in writeLine() 64 void GLSLCodeGenerator::writeLine() { in writeLine() function in SkSL::GLSLCodeGenerator 65 this->writeLine(""); in writeLine() 173 this->writeLine(" {"); in writeType() 182 this->writeLine(";"); in writeType() 1070 this->writeLine(") {"); in writeFunctionCall() 1080 this->writeLine("}"); in writeFunctionCall() 1176 this->writeLine(intf.fTypeName + " {"); in writeFunctionCall() [all …]
|
D | SkSLMetalCodeGenerator.cpp | 50 void MetalCodeGenerator::writeLine(const char* s) { in writeLine() function in SkSL::MetalCodeGenerator 60 void MetalCodeGenerator::writeLine(const String& s) { in writeLine() function in SkSL::MetalCodeGenerator 61 this->writeLine(s.c_str()); in writeLine() 64 void MetalCodeGenerator::writeLine() { in writeLine() function in SkSL::MetalCodeGenerator 65 this->writeLine(""); in writeLine() 69 this->writeLine("#extension " + ext.fName + " : enable"); in writeExtension() 83 this->writeLine("struct " + type.name() + " {"); in writeType() 914 this->writeLine(") {"); in writeFunction() 920 this->writeLine(" Globals globalStruct;"); in writeFunction() 921 this->writeLine(" thread Globals* _globals = &globalStruct;"); in writeFunction() [all …]
|
D | SkSLGLSLCodeGenerator.h | 88 void writeLine(); 90 void writeLine(const char* s); 96 void writeLine(const String& s);
|
D | SkSLMetalCodeGenerator.h | 123 void writeLine(); 125 void writeLine(const char* s); 129 void writeLine(const String& s);
|
D | SkSLPipelineStageCodeGenerator.cpp | 196 this->writeLine(); in writeFunction()
|
D | SkSLCPPCodeGenerator.cpp | 492 this->writeLine(); in writeFunction()
|
/third_party/skia/src/sksl/codegen/ |
D | SkSLGLSLCodeGenerator.cpp | 58 void GLSLCodeGenerator::writeLine(skstd::string_view s) { in writeLine() function in SkSL::GLSLCodeGenerator 66 this->writeLine(); in finishLine() 148 this->writeLine(" {"); in writeStructDefinition() 160 this->writeLine(";"); in writeStructDefinition() 163 this->writeLine("};"); in writeStructDefinition() 1048 this->writeLine(" {"); in writeFunction() 1063 this->writeLine("}"); in writeFunction() 1072 this->writeLine(";"); in writeFunctionPrototype() 1123 this->writeLine(intf.typeName() + " {"); in writeInterfaceBlock() 1133 this->writeLine(" " + f.fName + ";"); in writeInterfaceBlock() [all …]
|
D | SkSLMetalCodeGenerator.cpp | 80 void MetalCodeGenerator::writeLine(skstd::string_view s) { in writeLine() function in SkSL::MetalCodeGenerator 88 this->writeLine(); in finishLine() 93 this->writeLine("#extension " + ext.name() + " : enable"); in writeExtension() 120 this->writeLine("struct " + type.name() + " {"); in writeStructDefinition() 124 this->writeLine("};"); in writeStructDefinition() 207 this->writeLine(";"); in getOutParamHelper() 254 this->writeLine(") {"); in getOutParamHelper() 274 this->writeLine(";"); in getOutParamHelper() 296 this->writeLine(");"); in getOutParamHelper() 308 this->writeLine(";"); in getOutParamHelper() [all …]
|
D | SkSLPipelineStageCodeGenerator.cpp | 65 void writeLine(skstd::string_view s = skstd::string_view()); 142 void PipelineStageCodeGenerator::writeLine(skstd::string_view s) { in writeLine() function in SkSL::PipelineStage::PipelineStageCodeGenerator 287 this->writeLine(") {"); in writeSwitchStatement() 293 this->writeLine(":"); in writeSwitchStatement() 295 this->writeLine("default:"); in writeSwitchStatement() 299 this->writeLine(); in writeSwitchStatement() 302 this->writeLine(); in writeSwitchStatement() 336 this->writeLine(); in writeFunction() 700 this->writeLine("{"); in writeBlock() 705 this->writeLine(); in writeBlock()
|
D | SkSLGLSLCodeGenerator.h | 62 void writeLine(skstd::string_view s = skstd::string_view());
|
D | SkSLMetalCodeGenerator.h | 82 void writeLine(skstd::string_view s = skstd::string_view());
|
/third_party/node/test/common/ |
D | debugger.js | 147 writeLine(input, flush = true) { 159 this.writeLine(input, flush); 164 this.writeLine(input, true);
|
/third_party/typescript/tests/baselines/reference/ |
D | parserRealSource5.js | 45 public writeLine(s) { 108 PrintContext.prototype.writeLine = function (s) { method in PrintContext
|
D | parserRealSource5.symbols | 122 public writeLine(s) { 123 >writeLine : Symbol(PrintContext.writeLine, Decl(parserRealSource5.ts, 41, 9))
|
D | parserRealSource5.types | 145 public writeLine(s) { 146 >writeLine : (s: any) => void
|
D | parserRealSource5.errors.txt | 62 public writeLine(s) {
|
/third_party/typescript/src/compiler/ |
D | emitter.ts | 581 writer.writeLine(); 1067 writeLine(); 1853 writeLine(); 2254 writeLine(); 2289 writeLine(); 3590 writeLine(); 3700 writeLine(); 3748 writeLine(); 3770 writeLine(); 3785 writeLine(); [all …]
|
D | utilities.ts | 82 writeLine: () => str += " ", 4232 function writeLine(force?: boolean) { 4252 writeLine, 4337 writeLine() { 4339 writer.writeLine(); 4683 writer.writeLine(); 4691 writer.writeLine(); 4718 writer.writeLine(); 4871 writer.writeLine();
|
/third_party/typescript/tests/cases/conformance/parser/ecmascript5/ |
D | parserRealSource5.ts | 44 public writeLine(s) { method in PrintContext
|
/third_party/typescript/src/services/ |
D | textChanges.ts | 1126 function writeLine(force?: boolean): void { 1127 writer.writeLine(force); 1183 writeLine,
|
/third_party/typescript/src/testRunner/unittests/tsserver/ |
D | typingsInstaller.ts | 222 …ypesRegistry: createTypesRegistry("jquery") }, { isEnabled: () => true, writeLine: msg => messages… 494 …ypesRegistry: createTypesRegistry("jquery") }, { isEnabled: () => true, writeLine: msg => messages… 1422 …(host, { globalTypingsCacheLocation: "/tmp" }, { isEnabled: () => true, writeLine: msg => messages…
|
/third_party/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/localeconverter/ |
D | XLIFF2ICUConverter.java | 1226 private void writeLine(OutputStream writer, String line) { in writeLine() method in XLIFF2ICUConverter 1250 writeLine(writer, format.format(args)); in writeHeader()
|
/third_party/typescript/lib/ |
D | typingsInstaller.js | 17134 function writeLine(force) { function 17151 writeLine: writeLine, 17232 writeLine: function () { method 17234 writer.writeLine(); 17545 writer.writeLine(); 17553 writer.writeLine(); 17571 writer.writeLine(); 17707 writer.writeLine(); 101193 writer.writeLine(); 101603 writeLine(); [all …]
|