Home
last modified time | relevance | path

Searched refs:xmlOpen (Results 1 – 3 of 3) sorted by relevance

/external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/bmfont/
DBitmapFontWriter.java169 String xmlOpen = xml ? "\t<" : ""; in writeFont() local
179 …buf.append(xmlOpen).append("info face=\"").append(info.face == null ? "" : info.face.replaceAll("\… in writeFont()
190 …buf.append(xmlOpen).append("common lineHeight=").append(quote(lineHeight)).append(" base=").append… in writeFont()
198 …buf.append(xmlTab).append(xmlOpen).append("page id=").append(quote(i)).append(" file=\"").append(p… in writeFont()
216 …buf.append(xmlOpen).append("chars count=").append(quote(glyphs.size)).append(xmlClose).append("\n"… in writeFont()
231 …buf.append(xmlTab).append(xmlOpen).append("char id=").append(quote(String.format("%-6s", g.id), tr… in writeFont()
256 …kernBuf.append(xmlTab).append(xmlOpen).append("kerning first=").append(quote(first.id)).append(" s… in writeFont()
263 …buf.append(xmlOpen).append("kernings count=").append(quote(kernCount)).append(xmlClose).append("\n… in writeFont()
/external/testng/src/main/java/org/testng/reporters/
DXMLUtils.java37 xmlOpen(result, indent, name, attributes, true /* no newline */); in xml()
79 public static void xmlOpen(IBuffer result, String indent, String tag, in xmlOpen() method in XMLUtils
81 xmlOpen(result, indent, tag, attributes, false /* no newline */); in xmlOpen()
104 public static void xmlOpen(IBuffer result, String indent, String tag, in xmlOpen() method in XMLUtils
DXMLStringBuffer.java103 XMLUtils.xmlOpen(m_buffer, m_currentIndent, tagName + schema, attributes); in push()