Home
last modified time | relevance | path

Searched refs:IndentSize (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DJSON.cpp811 OS << (IndentSize ? "/* " : "/*"); in flushComment()
823 OS << (IndentSize ? " */" : "*/"); in flushComment()
826 if (IndentSize) in flushComment()
834 if (IndentSize) { in newline()
844 Indent += IndentSize; in arrayBegin()
850 Indent -= IndentSize; in arrayEnd()
863 Indent += IndentSize; in objectBegin()
869 Indent -= IndentSize; in objectEnd()
894 if (IndentSize) in attributeBegin()
/freebsd/contrib/llvm-project/llvm/lib/Target/SPIRV/Analysis/
H A DSPIRVConvergenceRegionAnalysis.cpp156 void ConvergenceRegion::dump(const unsigned IndentSize) const { in dump()
157 const std::string Indent(IndentSize, '\t'); in dump()
192 Child->dump(IndentSize + 2); in dump()
H A DSPIRVConvergenceRegionAnalysis.h87 void dump(const unsigned IndentSize = 0) const;
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DJSON.h983 explicit OStream(llvm::raw_ostream &OS, unsigned IndentSize = 0)
984 : OS(OS), IndentSize(IndentSize) { in OS()
1082 unsigned IndentSize; variable