Lines Matching refs:xml
4 …xml-tags-and-tag-values), [XML attributes and attribute values](#parsing-xml-attributes-and-attrib…
7 The **xml** module provides the **XmlPullParser** class to parse XML files. The input is an object …
33 …import { xml, util } from '@kit.ArkTS'; // Use the API provided by the util module to encode the f…
42 '<?xml version="1.0" encoding="utf-8"?>' +
50 …let that: xml.XmlPullParser = new xml.XmlPullParser(arrBuffer.buffer as object as ArrayBuffer, 'UT…
54 // let that: xml.XmlPullParser = new xml.XmlPullParser(dataView, 'UTF-8');
71 …let options: xml.ParseOptions = {supportDoctype:true, ignoreNameSpace:true, tagValueCallbackFuncti…
96 …import { xml, util } from '@kit.ArkTS'; // Use the API provided by the util module to encode the f…
103 '<?xml version="1.0" encoding="utf-8"?>' +
111 …let that: xml.XmlPullParser = new xml.XmlPullParser(arrBuffer.buffer as object as ArrayBuffer, 'UT…
127 …let options: xml.ParseOptions = {supportDoctype:true, ignoreNameSpace:true, attributeValueCallback…
143 …import { xml, util } from '@kit.ArkTS'; // Use the API provided by the util module to encode the f…
150 '<?xml version="1.0" encoding="utf-8"?>' +
156 …let that: xml.XmlPullParser = new xml.XmlPullParser(arrBuffer.buffer as object as ArrayBuffer, 'UT…
163 function func(name: xml.EventType, value: xml.ParseInfo): boolean {
173 …let options: xml.ParseOptions = {supportDoctype:true, ignoreNameSpace:true, tokenValueCallbackFunc…
180 …0 0 // 0: <?xml version="1.0" encoding="utf-8"?>. The event type value of START_DOCUMENT is 0. 0: …
198 import { xml, util } from '@kit.ArkTS';
201 '<?xml version="1.0" encoding="UTF-8"?>' +
208 let that: xml.XmlPullParser = new xml.XmlPullParser(arrBuffer.buffer as object as ArrayBuffer, 'UTF…
223 function tokenFunc(name: xml.EventType, value: xml.ParseInfo): boolean {
229 let options: xml.ParseOptions = {