Home
last modified time | relevance | path

Searched refs:toJSONObject (Results 1 – 9 of 9) sorted by relevance

/external/google-tv-pairing-protocol/java/src/com/google/polo/json/
DTest.java76 …j = XML.toJSONObject("<![CDATA[This is a collection of test patterns and examples for org.json.]]>… in main()
85 j = XML.toJSONObject(s); in main()
89 j = JSONML.toJSONObject(s); in main()
100 j = JSONML.toJSONObject(s); in main()
111 j = XML.toJSONObject(s); in main()
246 j = XML.toJSONObject(s); in main()
263 j = XML.toJSONObject(s); in main()
273 …j = XML.toJSONObject("<?xml version=\"1.0\" ?><Book Author=\"Anonymous\"><Title>Sample Book</Title… in main()
278 …j = XML.toJSONObject("<!DOCTYPE bCard 'http://www.cs.caltech.edu/~adam/schemas/bCard'><bCard><?xml… in main()
283 …j = XML.toJSONObject("<?xml version=\"1.0\"?><customer> <firstName> <text>Fred</text> … in main()
[all …]
DJSONML.java277 public static JSONObject toJSONObject(XMLTokener x) throws JSONException { in toJSONObject() method in JSONML
293 public static JSONObject toJSONObject(String string) throws JSONException { in toJSONObject() method in JSONML
294 return toJSONObject(new XMLTokener(string)); in toJSONObject()
DCookieList.java49 public static JSONObject toJSONObject(String string) throws JSONException { in toJSONObject() method in CookieList
DHTTP.java71 public static JSONObject toJSONObject(String string) throws JSONException { in toJSONObject() method in HTTP
DCookie.java81 public static JSONObject toJSONObject(String string) throws JSONException { in toJSONObject() method in Cookie
DCDL.java118 return ja != null ? ja.toJSONObject(names) : null; in rowToJSONObject()
DXML.java298 public static JSONObject toJSONObject(String string) throws JSONException { in toJSONObject() method in XML
DJSONArray.java833 public JSONObject toJSONObject(JSONArray names) throws JSONException { in toJSONObject() method in JSONArray
/external/google-tv-pairing-protocol/java/src/com/google/polo/wire/xml/
DXmlMessageBuilder.java131 outerMessage = XML.toJSONObject(outerXml); in outerXMLToPoloMessage()