Lines Matching refs:n

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()
76 int beforeParse(TypedXmlPullParser in, String n) throws Exception { in beforeParse() argument
77 return Integer.parseInt(in.getAttributeValue(null, n)); in beforeParse()
81 int beforeUtils(TypedXmlPullParser in, String n) throws Exception { in beforeUtils() argument
82 return XmlUtils.readIntAttribute(in, n); in beforeUtils()
86 int beforeRadix(TypedXmlPullParser in, String n) throws Exception { in beforeRadix() argument
87 return Integer.parseInt(in.getAttributeValue(null, n), 10); in beforeRadix()
91 int after(TypedXmlPullParser in, String n) throws Exception { in after() argument
92 return in.getAttributeInt(null, n); in after()
98 int before(TypedXmlPullParser in, String n, int d) throws Exception { in before() argument
99 return XmlUtils.readIntAttribute(in, n, d); in before()
103 int after(TypedXmlPullParser in, String n, int d) throws Exception { in after() argument
104 return in.getAttributeInt(null, n, d); in after()
110 int beforeParse(TypedXmlPullParser in, String n) throws Exception { in beforeParse() argument
111 return Integer.parseInt(in.getAttributeValue(null, n), 16); in beforeParse()
115 int after(TypedXmlPullParser in, String n) throws Exception { in after() argument
116 return in.getAttributeIntHex(null, n); 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()
166 long beforeParse(TypedXmlPullParser in, String n) throws Exception { in beforeParse() argument
167 return Long.parseLong(in.getAttributeValue(null, n)); in beforeParse()
171 long beforeUtils(TypedXmlPullParser in, String n) throws Exception { in beforeUtils() argument
172 return XmlUtils.readLongAttribute(in, n); in beforeUtils()
176 long beforeRadix(TypedXmlPullParser in, String n) throws Exception { in beforeRadix() argument
177 return Long.parseLong(in.getAttributeValue(null, n), 10); in beforeRadix()
181 long after(TypedXmlPullParser in, String n) throws Exception { in after() argument
182 return in.getAttributeLong(null, n); in after()
188 long before(TypedXmlPullParser in, String n, long d) throws Exception { in before() argument
189 return XmlUtils.readLongAttribute(in, n, d); in before()
193 long after(TypedXmlPullParser in, String n, long d) throws Exception { in after() argument
194 return in.getAttributeLong(null, n, d); in after()
200 long beforeParse(TypedXmlPullParser in, String n) throws Exception { in beforeParse() argument
201 return Long.parseLong(in.getAttributeValue(null, n), 16); in beforeParse()
205 long after(TypedXmlPullParser in, String n) throws Exception { in after() argument
206 return in.getAttributeLongHex(null, n); 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()
234 float beforeParse(TypedXmlPullParser in, String n) throws Exception { in beforeParse() argument
235 return Float.parseFloat(in.getAttributeValue(null, n)); in beforeParse()
239 float beforeUtils(TypedXmlPullParser in, String n) throws Exception { in beforeUtils() argument
240 return XmlUtils.readFloatAttribute(in, n); in beforeUtils()
244 float after(TypedXmlPullParser in, String n) throws Exception { in after() argument
245 return in.getAttributeFloat(null, n); 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()
268 double beforeParse(TypedXmlPullParser in, String n) throws Exception { in beforeParse() argument
269 return Double.parseDouble(in.getAttributeValue(null, n)); in beforeParse()
273 double after(TypedXmlPullParser in, String n) throws Exception { in after() argument
274 return in.getAttributeDouble(null, n); 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()
297 void before(TypedXmlSerializer out, String n) throws Exception { in before() argument
298 out.attribute(null, n, "true"); in before()
302 void after(TypedXmlSerializer out, String n) throws Exception { in after() argument
303 out.attributeBoolean(null, n, true); in after()
309 void before(TypedXmlSerializer out, String n) throws Exception { in before() argument
310 out.attribute(null, n, "false"); in before()
314 void after(TypedXmlSerializer out, String n) throws Exception { in after() argument
315 out.attributeBoolean(null, n, false); in after()
321 boolean beforeParse(TypedXmlPullParser in, String n) throws Exception { in beforeParse() argument
322 return Boolean.parseBoolean(in.getAttributeValue(null, n)); in beforeParse()
326 boolean beforeUtils(TypedXmlPullParser in, String n) throws Exception { in beforeUtils() argument
327 return XmlUtils.readBooleanAttribute(in, n); in beforeUtils()
331 boolean after(TypedXmlPullParser in, String n) throws Exception { in after() argument
332 return in.getAttributeBoolean(null, n, false); in after()
338 boolean before(TypedXmlPullParser in, String n, boolean d) throws Exception { in before() argument
339 return XmlUtils.readBooleanAttribute(in, n, d); in before()
343 boolean after(TypedXmlPullParser in, String n, boolean d) throws Exception { in after() argument
344 return in.getAttributeBoolean(null, n, d); in after()