Home
last modified time | relevance | path

Searched refs:patternArgs (Results 1 – 2 of 2) sorted by relevance

/external/cldr/tools/java/org/unicode/cldr/tool/
DTablePrinter.java296 Object[] patternArgs = new Object[columns.size() + 1]; in toTsvInternal() local
302 System.arraycopy(sortedFlat[i], 0, patternArgs, 1, sortedFlat[i].length); in toTsvInternal()
309 patternArgs[0] = sortedFlat[i][j]; in toTsvInternal()
313 patternArgs[0] = sortedFlat[i][j]; in toTsvInternal()
314 System.arraycopy(sortedFlat[i], 0, patternArgs, 1, sortedFlat[i].length); in toTsvInternal()
315 …tsvFile.append(sep).append(format(columnsFlat[j].cellPattern.format(patternArgs)).replace("<br>", … in toTsvInternal()
334 Object[] patternArgs = new Object[columns.size() + 1]; in toTableInternal() local
363 System.arraycopy(sortedFlat[i], 0, patternArgs, 1, sortedFlat[i].length); in toTableInternal()
387 patternArgs[0] = sortedFlat[i][j]; in toTableInternal()
391 … result.append(' ').append(columnsFlat[j].cellAttributes.format(patternArgs)); in toTableInternal()
[all …]
/external/llvm-project/mlir/lib/Rewrite/
DByteCode.h48 PDLByteCodePattern(ByteCodeAddr rewriterAddr, Args &&...patternArgs) in PDLByteCodePattern() argument
49 : Pattern(std::forward<Args>(patternArgs)...), in PDLByteCodePattern()