Home
last modified time | relevance | path

Searched refs:repeatString (Results 1 – 10 of 10) sorted by relevance

/third_party/node/deps/npm/node_modules/columnify/
Dutils.js12 function repeatString(str, len) { function
31 return str + repeatString(chr || ' ', length)
51 return repeatString(chr || ' ', lengthLeft) + str + repeatString(chr || ' ', lengthRight)
69 return repeatString(chr || ' ', length) + str
/third_party/typescript/tests/baselines/reference/
DcontrolFlowPropertyDeclarations.js27 function repeatString(string, times) { function
174 function repeatString(string, times) {
DcontrolFlowPropertyDeclarations.symbols42 function repeatString(string, times) {
43 >repeatString : Symbol(repeatString, Decl(controlFlowPropertyDeclarations.ts, 14, 1))
DcontrolFlowPropertyDeclarations.types57 function repeatString(string, times) {
58 >repeatString : (string: any, times: any) => any
/third_party/typescript/tests/cases/compiler/
DcontrolFlowPropertyDeclarations.ts26 function repeatString(string, times) { function
/third_party/typescript/src/services/formatting/
Dformatting.ts1425 internedTabsIndentation[tabs] = tabString = repeatString("\t", tabs);
1431 return spaces ? tabString + repeatString(" ", spaces) : tabString;
1442 spacesString = repeatString(" ", options.indentSize! * quotient);
1449 return remainder ? spacesString + repeatString(" ", remainder) : spacesString;
/third_party/node/test/fixtures/snapshot/
Dmarked.js405 repeatString: repeatString$1 property
1400 var repeatString = helpers.repeatString;
1758 …maskedSrc = maskedSrc.slice(0, match.index) + '[' + repeatString('a', match[0].length - 2) + ']' +…
1766 …maskedSrc = maskedSrc.slice(0, match.index) + '[' + repeatString('a', match[0].length - 2) + ']' +…
/third_party/typescript/src/harness/
DfourslashImpl.ts1792 … let thisLineMarker = ts.repeatString(" ", startColumn!) + ts.repeatString("~", length!);
1793 …thisLineMarker += ts.repeatString(" ", this.alignmentForExtraInfo - thisLineMarker.length - prefix…
1808 …currentLine = "\n" + nextLine.toString() + ts.repeatString(" ", 3 - nextLine.toString().length) + …
3311 …Harness.IO.log(`${ts.repeatString(" ", item.indent)}name: ${item.text}, kind: ${item.kind}, childI…
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/spirv_assembly/
DvktSpvAsmInstructionTests.cpp18975 const string repeatString (const string& str, int times) in repeatString() function
19023 …Construct"] = "%instance = OpCompositeConstruct " + composite_type + repeatString(" %filler", wid… in createVectorCompositeCases()
19046 …params["compositeConstruct"] = "%instance = OpCompositeConstruct %composite" + repeatString(" %fi… in createArrayCompositeCases()
19064 …params["compositeDecl"] = "%composite = OpTypeStruct" + repeatString(" ${customType}", width) + "… in createStructCompositeCases()
19067 …params["compositeConstruct"] = "%instance = OpCompositeConstruct %composite" + repeatString(" %fi… in createStructCompositeCases()
19095 + "%fillerVec = OpConstantComposite %vectype" + repeatString(" %filler", width) + "\n"; in createMatrixCompositeCases()
19097 …params["compositeConstruct"] = "%instance = OpCompositeConstruct %composite" + repeatString(" %fi… in createMatrixCompositeCases()
19310 parameters["structType"] = repeatString(" ${compositeType}", structInfo.components); in specializeInBoundsShaderTemplate()
19311 parameters["structConstruct"] = repeatString(" %instance", structInfo.components); in specializeInBoundsShaderTemplate()
/third_party/typescript/src/services/
Dutilities.ts1895 export function repeatString(str: string, count: number): string { function