Lines Matching refs:ElementSerializer

10624 	function ElementSerializer(parent, propertyDescriptor) {  class
10632 ElementSerializer.prototype.build = function(element) {
10670 ElementSerializer.prototype.nsTagName = function(descriptor) {
10675 ElementSerializer.prototype.nsPropertyTagName = function(descriptor) {
10680 ElementSerializer.prototype.isLocalNs = function(ns) {
10692 ElementSerializer.prototype.nsAttributeName = function(element) {
10721 ElementSerializer.prototype.parseGeneric = function(element) {
10737 body.push(new ElementSerializer(self).build(child));
10752 ElementSerializer.prototype.parseNsAttribute = function(element, name, value) {
10796 ElementSerializer.prototype.parseNsAttributes = function(element, attrs) {
10818 ElementSerializer.prototype.parseGenericAttributes = function(element, attributes) {
10841 ElementSerializer.prototype.parseContainments = function(properties) {
10882 serializer = new ElementSerializer(self, p);
10884 serializer = new ElementSerializer(self);
10893 ElementSerializer.prototype.getNamespaces = function(local) {
10912 ElementSerializer.prototype.logNamespace = function(ns, wellknown, local) {
10929 ElementSerializer.prototype.logNamespaceUsed = function(ns, local) {
10979 ElementSerializer.prototype.parseAttributes = function(properties) {
11008 ElementSerializer.prototype.addTagName = function(nsTagName) {
11016 ElementSerializer.prototype.addAttribute = function(name, value) {
11026 ElementSerializer.prototype.serializeAttributes = function(writer) {
11041 ElementSerializer.prototype.serializeTo = function(writer) {
11081 ElementSerializer.call(this, parent, propertyDescriptor);
11084 inherits(TypeSerializer, ElementSerializer);
11089 var attributes = ElementSerializer.prototype.parseNsAttributes.call(this, element);
11181 new ElementSerializer().build(tree).serializeTo(formatingWriter);