Searched defs:writeAttr (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/services/core/java/com/android/server/pm/
H A DShortcutService.java799 static void writeAttr(XmlSerializer out, String name, CharSequence value) throws IOException { method in class:ShortcutService
805 static void writeAttr(XmlSerializer out, String name, long value) throws IOException { method in class:ShortcutService
806 writeAttr(out, name, String.valueOf(value));
809 static void writeAttr(XmlSerializer out, String name, boolean value) throws IOException { method in class:ShortcutService
811 writeAttr(out, name, "1");
815 static void writeAttr(XmlSerializer out, String name, ComponentName comp) throws IOException { method in class:ShortcutService
817 writeAttr(out, name, comp.flattenToString());
820 static void writeAttr(XmlSerializer out, String name, Intent intent) throws IOException { method in class:ShortcutService
823 writeAttr(out, name, intent.toUri(/* flags =*/ 0));

Completed in 274 milliseconds