Home | History | Annotate | Download | only in json

Lines Matching refs:XML

29  * for the parsing of XML texts.
43 entity.put("amp", XML.AMP);
44 entity.put("apos", XML.APOS);
45 entity.put("gt", XML.GT);
46 entity.put("lt", XML.LT);
47 entity.put("quot", XML.QUOT);
84 * Get the next XML outer token, trimming whitespace. There are two kinds
102 return XML.LT;
125 * @throws JSONException If missing ';' in XML entity.
136 throw syntaxError("Missing ';' in XML entity: &" + sb);
146 * Returns the next XML meta token. This is used for skipping over <!...>
151 * @throws JSONException If a string is not properly closed or if the XML
164 return XML.LT;
166 return XML.GT;
168 return XML.SLASH;
170 return XML.EQ;
172 return XML.BANG;
174 return XML.QUEST;
212 * Get the next XML Token. These tokens are found inside of angle
217 * @throws JSONException If the XML is not well formed.
232 return XML.GT;
234 return XML.SLASH;
236 return XML.EQ;
238 return XML.BANG;
240 return XML.QUEST;