Lines Matching refs:v
32 void beforeToString(TypedXmlSerializer out, String n, int v) throws Exception { in beforeToString() argument
33 out.attribute(null, n, Integer.toString(v)); in beforeToString()
37 void beforeValueOf(TypedXmlSerializer out, String n, int v) throws Exception { in beforeValueOf() argument
38 out.attribute(null, n, String.valueOf(v)); in beforeValueOf()
42 void beforeUtils(TypedXmlSerializer out, String n, int v) throws Exception { in beforeUtils() argument
43 XmlUtils.writeIntAttribute(out, n, v); in beforeUtils()
47 void beforeRadix(TypedXmlSerializer out, String n, int v) throws Exception { in beforeRadix() argument
48 out.attribute(null, n, Integer.toString(v, 10)); in beforeRadix()
52 void after(TypedXmlSerializer out, String n, int v) throws Exception { in after() argument
53 out.attributeInt(null, n, v); in after()
59 void beforeToHexString(TypedXmlSerializer out, String n, int v) throws Exception { in beforeToHexString() argument
60 out.attribute(null, n, Integer.toHexString(v)); in beforeToHexString()
64 void beforeRadix(TypedXmlSerializer out, String n, int v) throws Exception { in beforeRadix() argument
65 out.attribute(null, n, Integer.toString(v, 16)); in beforeRadix()
69 void after(TypedXmlSerializer out, String n, int v) throws Exception { in after() argument
70 out.attributeIntHex(null, n, v); in after()
122 void beforeToString(TypedXmlSerializer out, String n, long v) throws Exception { in beforeToString() argument
123 out.attribute(null, n, Long.toString(v)); in beforeToString()
127 void beforeValueOf(TypedXmlSerializer out, String n, long v) throws Exception { in beforeValueOf() argument
128 out.attribute(null, n, String.valueOf(v)); in beforeValueOf()
132 void beforeUtils(TypedXmlSerializer out, String n, long v) throws Exception { in beforeUtils() argument
133 XmlUtils.writeLongAttribute(out, n, v); in beforeUtils()
137 void beforeRadix(TypedXmlSerializer out, String n, long v) throws Exception { in beforeRadix() argument
138 out.attribute(null, n, Long.toString(v, 10)); in beforeRadix()
142 void after(TypedXmlSerializer out, String n, long v) throws Exception { in after() argument
143 out.attributeLong(null, n, v); in after()
149 void beforeToHexString(TypedXmlSerializer out, String n, long v) throws Exception { in beforeToHexString() argument
150 out.attribute(null, n, Long.toHexString(v)); in beforeToHexString()
154 void beforeRadix(TypedXmlSerializer out, String n, long v) throws Exception { in beforeRadix() argument
155 out.attribute(null, n, Long.toString(v, 16)); in beforeRadix()
159 void after(TypedXmlSerializer out, String n, long v) throws Exception { in after() argument
160 out.attributeLongHex(null, n, v); in after()
212 void beforeToString(TypedXmlSerializer out, String n, float v) throws Exception { in beforeToString() argument
213 out.attribute(null, n, Float.toString(v)); in beforeToString()
217 void beforeValueOf(TypedXmlSerializer out, String n, float v) throws Exception { in beforeValueOf() argument
218 out.attribute(null, n, String.valueOf(v)); in beforeValueOf()
222 void beforeUtils(TypedXmlSerializer out, String n, float v) throws Exception { in beforeUtils() argument
223 XmlUtils.writeFloatAttribute(out, n, v); in beforeUtils()
227 void after(TypedXmlSerializer out, String n, float v) throws Exception { in after() argument
228 out.attributeFloat(null, n, v); in after()
251 void beforeToString(TypedXmlSerializer out, String n, double v) throws Exception { in beforeToString() argument
252 out.attribute(null, n, Double.toString(v)); in beforeToString()
256 void beforeValueOf(TypedXmlSerializer out, String n, double v) throws Exception { in beforeValueOf() argument
257 out.attribute(null, n, String.valueOf(v)); in beforeValueOf()
261 void after(TypedXmlSerializer out, String n, double v) throws Exception { in after() argument
262 out.attributeDouble(null, n, v); in after()
280 void beforeToString(TypedXmlSerializer out, String n, boolean v) throws Exception { in beforeToString() argument
281 out.attribute(null, n, Boolean.toString(v)); in beforeToString()
285 void beforeValueOf(TypedXmlSerializer out, String n, boolean v) throws Exception { in beforeValueOf() argument
286 out.attribute(null, n, String.valueOf(v)); in beforeValueOf()
290 void after(TypedXmlSerializer out, String n, boolean v) throws Exception { in after() argument
291 out.attributeBoolean(null, n, v); in after()