Searched defs:normalize (Results 1 - 25 of 34) sorted by relevance

12

/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/ffmpeg/libavcodec/
H A Dlpc.h61 compute_lpc_coefs(const LPC_TYPE *autoc, int max_order, LPC_TYPE *lpc, int lpc_stride, int fail, int normalize) argument
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/ffmpeg/libavcodec/
H A Dlpc.h61 compute_lpc_coefs(const LPC_TYPE *autoc, int max_order, LPC_TYPE *lpc, int lpc_stride, int fail, int normalize) argument
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/ffmpeg/libavcodec/
H A Dlpc.h61 compute_lpc_coefs(const LPC_TYPE *autoc, int max_order, LPC_TYPE *lpc, int lpc_stride, int fail, int normalize) argument
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/busybox/util-linux/
H A Dgetopt.c80 static const char *normalize(const char *arg) function
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/busybox/util-linux/
H A Dgetopt.c80 static const char *normalize(const char *arg) function
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/xz/src/liblzma/lz/
H A Dlz_encoder_mf.c109 normalize(lzma_mf *mf) function
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/busybox/util-linux/
H A Dgetopt.c80 static const char *normalize(const char *arg) function
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/lighttpd-1.4.39/external_file/js/davclient.js/dommer/
H A Ddommer.js228 Node.prototype.normalize = thrownotsupported; method in class:Node
H A Ddommer.min.js3 for(var attr in DOMException){if(DOMException[attr]==errorcode){this.error=attr;break;};};this.code=errorcode;if(!this.error){this.error='Unknown';};this.stack=stack=createStack();this.lineNumber=getLineNo(stack);this.fileName=getFileName(stack);};this.DOMException=DOMException;DOMException.INDEX_SIZE_ERR=1,DOMException.DOMSTRING_SIZE_ERR=2;DOMException.HIERARCHY_REQUEST_ERR=3;DOMException.WRONG_DOCUMENT_ERR=4;DOMException.INVALID_CHARACTER_ERR=5;DOMException.NO_DATA_ALLOWED_ERR=6;DOMException.NO_MODIFICATION_ALLOWED_ERR=7;DOMException.NOT_FOUND_ERR=8;DOMException.NOT_SUPPORTED_ERR=9;DOMException.INUSE_ATTRIBUTE_ERR=10;DOMException.INVALID_STATE_ERR=11;DOMException.SYNTAX_ERR=12;DOMException.INVALID_MODIFICATION_ERR=13;DOMException.NAMESPACE_ERR=14;DOMException.INVALID_ACCESS_ERR=15;DOMException.prototype.toString=function(){var ret='DOMException: '+this.error+' ('+this.code+')';if(this.message){ret+=' - '+this.message;};return ret;};function Node(){this.ELEMENT_NODE=1;this.ATTRIBUTE_NODE=2;this.TEXT_NODE=3;this.CDATA_SECTION_NODE=4;this.ENTITY_REFERENCE_NODE=5;this.ENTITY_NODE=6;this.PROCESSING_INSTRUCTION_NODE=7;this.COMMENT_NODE=8;this.DOCUMENT_NODE=9;this.DOCUMENT_TYPE_NODE=10;this.DOCUMENT_FRAGMENT_NODE=11;this.NOTATION_NODE=12;this._protectAttribute=function(attr){this.__defineSetter__(attr,function(value){throw((new DOMException(DOMException.NO_MODIFICATION_ALLOWED_ERR,attr)));});this.__defineGetter__(attr,function(){return this['_'+attr];});};this._setProtected=function(name,value){this['_'+name]=value;if(!this.__defineSetter__){this[name]=value;};};this.nodeValue=null;if(this.__defineSetter__){this.__defineSetter__('nodeValue',function(nodeValue){if(this.nodeType!=this.TEXT_NODE&&this.nodeType!=this.ATTRIBUTE_NODE&&this.nodeType!=this.COMMENT_NODE){throw((new DOMException(DOMException.NO_DATA_ALLOWED_ERR,'nodeValue')));};this._nodeValue=nodeValue;});this.__defineGetter__('nodeValue',function(){if(this.nodeType!=this.TEXT_NODE&&this.nodeType!=this.ATTRIBUTE_NODE&&this.nodeType!=this.COMMENT_NODE){throw((new DOMException(DOMException.NO_DATA_ALLOWED_ERR,'nodeValue')));};return this._nodeValue;});var toprotect=['nodeType','nodeName','parentNode','childNodes','firstChild','lastChild','previousSibling','nextSibling','attributes','ownerDocument','namespaceURI','localName'];for(var i=0;i<toprotect.length;i++){this._protectAttribute(toprotect[i]);};};this._setProtected('namespaceURI',null);this._setProtected('prefix',null);this._setProtected('nodeName',null);this._setProtected('localName',null);this._setProtected('parentNode',null);this._setProtected('childNodes',[]);this._setProtected('firstChild',null);this._setProtected('lastChild',null);this._setProtected('previousSibling',null);this._setProtected('nextSibling',null);this._setProtected('ownerDocument',null);};this.Node=Node;var thrownotsupported=function(){throw('not supported');};Node.prototype.normalize=thrownotsupported;Node.prototype.isSupported=thrownotsupported;Node.prototype.setPrefix=function(prefix){if(this.__defineSetter__){this._prefix=prefix;this._nodeName=prefix+':'+this.localName;}else{this.prefix=prefix;this.nodeName=prefix+':'+this.localName;};};Node.prototype.cloneNode=function(){throw((new DOMException(DOMException.NOT_SUPPORTED_ERR)));};Node.prototype.hasChildNodes=function(){return(this.childNodes&&this.childNodes.length>0);};Node.prototype.hasAttributes=function(){return(this.attributes!==undefined&&this.attributes.length);};Node.prototype.appendChild=function(newChild){this._checkModificationAllowed();this._attach(newChild);};Node.prototype.removeChild=function(oldChild){this._checkModificationAllowed();this._checkIsChild(oldChild);var newChildren=new NodeList();var found=false;for(var i=0;i<this.childNodes.length;i++){if(this.childNodes[i]===oldChild){oldChild._setProtected('parentNode',null);var previous=oldChild.previousSibling;if(previous){oldChild._setProtected('previousSibling',null);previous._setProtected('nextSibling',oldChild.nextSibling);};var next=oldChild.nextSibling;if(next){next._setProtected('previousSibling',previous);oldChild._setProtected('nextSibling',null);};continue;};newChildren.push(this.childNodes[i]);};this._setProtected('childNodes',newChildren);this._setProtected('firstChild',(this.childNodes.length>0?this.childNodes[0]:null));this._setProtected('lastChild',(this.childNodes.length>0?this.childNodes[this.childNodes.length-1]:null));};Node.prototype.replaceChild=function(newChild,refChild){this._checkModificationAllowed();this._checkIsChild(refChild);this._attach(newChild,refChild,true);};Node.prototype.insertBefore=function(newChild,refChild){this._checkModificationAllowed();this._checkIsChild(refChild);this._attach(newChild,refChild);};Node.prototype._attach=function(newChild,refChild,replace){if(newChild.ownerDocument!=this.ownerDocument){throw((new DOMException(DOMException.WRONG_DOCUMENT_ERR)));};if(newChild.nodeType!=newChild.ELEMENT_NODE&&newChild.nodeType!=newChild.TEXT_NODE&&newChild.nodeType!=newChild.CDATA_SECTION_NODE&&newChild.nodeType!=newChild.COMMENT_NODE){throw((new DOMException(DOMException.HIERARCHY_REQUEST_ERR)));};var currparent=this;while(currparent&&currparent.nodeType!=newChild.DOCUMENT_NODE){if(currparent===newChild){throw((new DOMException(DOMException.HIERARCHY_REQUEST_ERR)));};currparent=currparent.parentNode;};newChild._setProtected('parentNode',this);if(!refChild){if(this.childNodes.length){this.childNodes[this.childNodes.length-1]._setProtected('nextSibling',newChild);newChild._setProtected('previousSibling',this.childNodes[this.childNodes.length-1]);};this.childNodes.push(newChild);}else{var newchildren=[];var found=false;for(var i=0;i<this.childNodes.length;i++){var currChild=this.childNodes[i];if(currChild===refChild){newchildren.push(newChild);var previous=this.childNodes[i-1];if(previous){newChild._setProtected('previousSibling',previous);previous._setProtected('nextSibling',newChild);};if(!replace){newchildren.push(currChild);currChild._setProtected('previousSibling',newChild);newChild._setProtected('nextSibling',currChild);}else{currChild._setProtected('parentNode',null);currChild._setProtected('previousSibling',null);currChild._setProtected('nextSibling',null);var next=this.childNodes[i+1];newChild._setProtected('nextSibling',next);next._setProtected('previousSibling',newChild);};found=true;}else{newchildren.push(currChild);};};if(!found){throw((new DOMException(DOMException.NOT_FOUND_ERR)));};this._setProtected('childNodes',newchildren);};this._setProtected('firstChild',this.childNodes[0]);this._setProtected('lastChild',this.childNodes[this.childNodes.length-1]);};Node.prototype._checkModificationAllowed=function(){if(this.nodeType!=this.ELEMENT_NODE&&this.nodeType!=this.DOCUMENT_NODE&&this.nodeType!=this.DOCUMENT_FRAGMENT_NODE){throw((new DOMException(DOMException.NO_MODIFICATION_ALLOWED_ERR)));};};Node.prototype._checkIsChild=function(refChild){if(refChild.parentNode!==this){throw((new DOMException(DOMException.NOT_FOUND_ERR)));};};function DocumentFragment(){this._setProtected('nodeType',11);};DocumentFragment.prototype=new Node;this.DocumentFragment=DocumentFragment;function Element(){this._setProtected('nodeType',1);};Element.prototype=new Node;this.Element=Element;Element.prototype.initialize=function(namespaceURI,qname,ownerDocument){this.id='';this._setProtected('attributes',[]);this._setProtected('childNodes',[]);this._setProtected('ownerDocument',ownerDocument);if(this.__defineSetter__){this._nodeName=this.nodeName;this.__defineSetter__('nodeName',function(){throw((new DOMException(DOMException.NO_MODIFICATION_ALLOWED_ERR)))});this.__defineGetter__('nodeName',function(){return this._nodeName});this.__defineSetter__('prefix',function(value){if(WARN_ON_PREFIX){throw('Setting prefix directly '+'breaks integrity of the '+'XML DOM in Internet '+'Explorer browsers!');};this._prefix=value;this._nodeName=this._prefix+ method in class:Node
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/APP-IPK/AiCloud-ipk/opt/etc/aicloud_UI/js/davclient.js/dommer/
H A Ddommer.js228 Node.prototype.normalize = thrownotsupported; method in class:Node
H A Ddommer.min.js3 for(var attr in DOMException){if(DOMException[attr]==errorcode){this.error=attr;break;};};this.code=errorcode;if(!this.error){this.error='Unknown';};this.stack=stack=createStack();this.lineNumber=getLineNo(stack);this.fileName=getFileName(stack);};this.DOMException=DOMException;DOMException.INDEX_SIZE_ERR=1,DOMException.DOMSTRING_SIZE_ERR=2;DOMException.HIERARCHY_REQUEST_ERR=3;DOMException.WRONG_DOCUMENT_ERR=4;DOMException.INVALID_CHARACTER_ERR=5;DOMException.NO_DATA_ALLOWED_ERR=6;DOMException.NO_MODIFICATION_ALLOWED_ERR=7;DOMException.NOT_FOUND_ERR=8;DOMException.NOT_SUPPORTED_ERR=9;DOMException.INUSE_ATTRIBUTE_ERR=10;DOMException.INVALID_STATE_ERR=11;DOMException.SYNTAX_ERR=12;DOMException.INVALID_MODIFICATION_ERR=13;DOMException.NAMESPACE_ERR=14;DOMException.INVALID_ACCESS_ERR=15;DOMException.prototype.toString=function(){var ret='DOMException: '+this.error+' ('+this.code+')';if(this.message){ret+=' - '+this.message;};return ret;};function Node(){this.ELEMENT_NODE=1;this.ATTRIBUTE_NODE=2;this.TEXT_NODE=3;this.CDATA_SECTION_NODE=4;this.ENTITY_REFERENCE_NODE=5;this.ENTITY_NODE=6;this.PROCESSING_INSTRUCTION_NODE=7;this.COMMENT_NODE=8;this.DOCUMENT_NODE=9;this.DOCUMENT_TYPE_NODE=10;this.DOCUMENT_FRAGMENT_NODE=11;this.NOTATION_NODE=12;this._protectAttribute=function(attr){this.__defineSetter__(attr,function(value){throw((new DOMException(DOMException.NO_MODIFICATION_ALLOWED_ERR,attr)));});this.__defineGetter__(attr,function(){return this['_'+attr];});};this._setProtected=function(name,value){this['_'+name]=value;if(!this.__defineSetter__){this[name]=value;};};this.nodeValue=null;if(this.__defineSetter__){this.__defineSetter__('nodeValue',function(nodeValue){if(this.nodeType!=this.TEXT_NODE&&this.nodeType!=this.ATTRIBUTE_NODE&&this.nodeType!=this.COMMENT_NODE){throw((new DOMException(DOMException.NO_DATA_ALLOWED_ERR,'nodeValue')));};this._nodeValue=nodeValue;});this.__defineGetter__('nodeValue',function(){if(this.nodeType!=this.TEXT_NODE&&this.nodeType!=this.ATTRIBUTE_NODE&&this.nodeType!=this.COMMENT_NODE){throw((new DOMException(DOMException.NO_DATA_ALLOWED_ERR,'nodeValue')));};return this._nodeValue;});var toprotect=['nodeType','nodeName','parentNode','childNodes','firstChild','lastChild','previousSibling','nextSibling','attributes','ownerDocument','namespaceURI','localName'];for(var i=0;i<toprotect.length;i++){this._protectAttribute(toprotect[i]);};};this._setProtected('namespaceURI',null);this._setProtected('prefix',null);this._setProtected('nodeName',null);this._setProtected('localName',null);this._setProtected('parentNode',null);this._setProtected('childNodes',[]);this._setProtected('firstChild',null);this._setProtected('lastChild',null);this._setProtected('previousSibling',null);this._setProtected('nextSibling',null);this._setProtected('ownerDocument',null);};this.Node=Node;var thrownotsupported=function(){throw('not supported');};Node.prototype.normalize=thrownotsupported;Node.prototype.isSupported=thrownotsupported;Node.prototype.setPrefix=function(prefix){if(this.__defineSetter__){this._prefix=prefix;this._nodeName=prefix+':'+this.localName;}else{this.prefix=prefix;this.nodeName=prefix+':'+this.localName;};};Node.prototype.cloneNode=function(){throw((new DOMException(DOMException.NOT_SUPPORTED_ERR)));};Node.prototype.hasChildNodes=function(){return(this.childNodes&&this.childNodes.length>0);};Node.prototype.hasAttributes=function(){return(this.attributes!==undefined&&this.attributes.length);};Node.prototype.appendChild=function(newChild){this._checkModificationAllowed();this._attach(newChild);};Node.prototype.removeChild=function(oldChild){this._checkModificationAllowed();this._checkIsChild(oldChild);var newChildren=new NodeList();var found=false;for(var i=0;i<this.childNodes.length;i++){if(this.childNodes[i]===oldChild){oldChild._setProtected('parentNode',null);var previous=oldChild.previousSibling;if(previous){oldChild._setProtected('previousSibling',null);previous._setProtected('nextSibling',oldChild.nextSibling);};var next=oldChild.nextSibling;if(next){next._setProtected('previousSibling',previous);oldChild._setProtected('nextSibling',null);};continue;};newChildren.push(this.childNodes[i]);};this._setProtected('childNodes',newChildren);this._setProtected('firstChild',(this.childNodes.length>0?this.childNodes[0]:null));this._setProtected('lastChild',(this.childNodes.length>0?this.childNodes[this.childNodes.length-1]:null));};Node.prototype.replaceChild=function(newChild,refChild){this._checkModificationAllowed();this._checkIsChild(refChild);this._attach(newChild,refChild,true);};Node.prototype.insertBefore=function(newChild,refChild){this._checkModificationAllowed();this._checkIsChild(refChild);this._attach(newChild,refChild);};Node.prototype._attach=function(newChild,refChild,replace){if(newChild.ownerDocument!=this.ownerDocument){throw((new DOMException(DOMException.WRONG_DOCUMENT_ERR)));};if(newChild.nodeType!=newChild.ELEMENT_NODE&&newChild.nodeType!=newChild.TEXT_NODE&&newChild.nodeType!=newChild.CDATA_SECTION_NODE&&newChild.nodeType!=newChild.COMMENT_NODE){throw((new DOMException(DOMException.HIERARCHY_REQUEST_ERR)));};var currparent=this;while(currparent&&currparent.nodeType!=newChild.DOCUMENT_NODE){if(currparent===newChild){throw((new DOMException(DOMException.HIERARCHY_REQUEST_ERR)));};currparent=currparent.parentNode;};newChild._setProtected('parentNode',this);if(!refChild){if(this.childNodes.length){this.childNodes[this.childNodes.length-1]._setProtected('nextSibling',newChild);newChild._setProtected('previousSibling',this.childNodes[this.childNodes.length-1]);};this.childNodes.push(newChild);}else{var newchildren=[];var found=false;for(var i=0;i<this.childNodes.length;i++){var currChild=this.childNodes[i];if(currChild===refChild){newchildren.push(newChild);var previous=this.childNodes[i-1];if(previous){newChild._setProtected('previousSibling',previous);previous._setProtected('nextSibling',newChild);};if(!replace){newchildren.push(currChild);currChild._setProtected('previousSibling',newChild);newChild._setProtected('nextSibling',currChild);}else{currChild._setProtected('parentNode',null);currChild._setProtected('previousSibling',null);currChild._setProtected('nextSibling',null);var next=this.childNodes[i+1];newChild._setProtected('nextSibling',next);next._setProtected('previousSibling',newChild);};found=true;}else{newchildren.push(currChild);};};if(!found){throw((new DOMException(DOMException.NOT_FOUND_ERR)));};this._setProtected('childNodes',newchildren);};this._setProtected('firstChild',this.childNodes[0]);this._setProtected('lastChild',this.childNodes[this.childNodes.length-1]);};Node.prototype._checkModificationAllowed=function(){if(this.nodeType!=this.ELEMENT_NODE&&this.nodeType!=this.DOCUMENT_NODE&&this.nodeType!=this.DOCUMENT_FRAGMENT_NODE){throw((new DOMException(DOMException.NO_MODIFICATION_ALLOWED_ERR)));};};Node.prototype._checkIsChild=function(refChild){if(refChild.parentNode!==this){throw((new DOMException(DOMException.NOT_FOUND_ERR)));};};function DocumentFragment(){this._setProtected('nodeType',11);};DocumentFragment.prototype=new Node;this.DocumentFragment=DocumentFragment;function Element(){this._setProtected('nodeType',1);};Element.prototype=new Node;this.Element=Element;Element.prototype.initialize=function(namespaceURI,qname,ownerDocument){this.id='';this._setProtected('attributes',[]);this._setProtected('childNodes',[]);this._setProtected('ownerDocument',ownerDocument);if(this.__defineSetter__){this._nodeName=this.nodeName;this.__defineSetter__('nodeName',function(){throw((new DOMException(DOMException.NO_MODIFICATION_ALLOWED_ERR)))});this.__defineGetter__('nodeName',function(){return this._nodeName});this.__defineSetter__('prefix',function(value){if(WARN_ON_PREFIX){throw('Setting prefix directly '+'breaks integrity of the '+'XML DOM in Internet '+'Explorer browsers!');};this._prefix=value;this._nodeName=this._prefix+ method in class:Node
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/libgcrypt-1.5.1/src/
H A Dsexp.c174 normalize ( gcry_sexp_t list ) function
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/libgcrypt-1.5.1/src/
H A Dsexp.c174 normalize ( gcry_sexp_t list ) function
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/libgcrypt-1.5.1/src/
H A Dsexp.c174 normalize ( gcry_sexp_t list ) function
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/lighttpd-1.4.39/external_file/js/davclient.js/dommer/
H A Ddommer.js
H A Ddommer.min.js
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/APP-IPK/AiCloud-ipk/opt/etc/aicloud_UI/js/davclient.js/dommer/
H A Ddommer.js
H A Ddommer.min.js
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/APP-IPK/AiCloud-ipk/opt/etc/aicloud_UI/js/davclient.js/dommer/
H A Ddommer.js
H A Ddommer.min.js
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/gdb/bfd/
H A Darchive.c1138 normalize (bfd *abfd, const char *file) function
1171 normalize (bfd *abfd ATTRIBUTE_UNUSED, const char *file) function
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/gdb/bfd/
H A Darchive.c1138 normalize (bfd *abfd, const char *file) function
1171 normalize (bfd *abfd ATTRIBUTE_UNUSED, const char *file) function
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/gdb/bfd/
H A Darchive.c1138 normalize (bfd *abfd, const char *file) function
1171 normalize (bfd *abfd ATTRIBUTE_UNUSED, const char *file) function
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/lighttpd-1.4.39/external_file/js/davclient.js/dommer/
H A Ddommer.js
H A Ddommer.min.js

Completed in 377 milliseconds

12