HomeSort by relevance Sort by last modified time
    Searched refs:nodeType (Results 126 - 150 of 180) sorted by null

1 2 3 4 56 7 8

  /external/webkit/WebCore/xml/
XPathPath.cpp 101 if (m_absolute && context->nodeType() != Node::DOCUMENT_NODE)
XPathFunctions.cpp 369 ASSERT(node->nodeType() != Node::XPATH_NAMESPACE_NODE); // Not supported yet.
370 if (node->nodeType() == Node::PROCESSING_INSTRUCTION_NODE)
  /external/webkit/WebCore/bindings/objc/
DOMHTML.mm 94 while (child && child->nodeType() == WebCore::Node::DOCUMENT_TYPE_NODE)
  /external/webkit/WebCore/dom/
Node.idl 36 // NodeType
56 readonly attribute unsigned short nodeType;
ProcessingInstruction.cpp 76 Node::NodeType ProcessingInstruction::nodeType() const
100 bool ProcessingInstruction::childTypeAllowed(NodeType)
Document.cpp 727 switch (importedNode->nodeType()) {
816 switch (source->nodeType()) {
    [all...]
Element.h 287 virtual NodeType nodeType() const;
288 virtual bool childTypeAllowed(NodeType);
  /libcore/luni/src/main/java/org/apache/xpath/patterns/
NodeTest.java 530 short nodeType = dtm.getNodeType(context);
535 int nodeBit = (m_whatToShow & (0x00000001 << (nodeType - 1)));
  /external/webkit/WebCore/inspector/front-end/
DOMAgent.js 40 this.nodeType = payload.nodeType;
67 if (this.nodeType === Node.ELEMENT_NODE) {
75 } else if (this.nodeType === Node.DOCUMENT_TYPE_NODE) {
79 } else if (this.nodeType === Node.DOCUMENT_NODE)
98 if (this.nodeType != Node.TEXT_NODE)
EventListenersSidebarPane.js 208 if (node.nodeType === Node.DOCUMENT_NODE)
MetricsSidebarPane.js 44 if (!node || !node.ownerDocument.defaultView || node.nodeType !== Node.ELEMENT_NODE) {
  /external/webkit/WebKit/win/
DOMCoreClasses.h 137 virtual HRESULT STDMETHODCALLTYPE nodeType(
363 virtual HRESULT STDMETHODCALLTYPE nodeType(
364 /* [retval][out] */ unsigned short *result) { return DOMNode::nodeType(result); }
595 virtual HRESULT STDMETHODCALLTYPE nodeType(
596 /* [retval][out] */ unsigned short *result) { return DOMNode::nodeType(result); }
    [all...]
DOMCoreClasses.cpp 135 HRESULT STDMETHODCALLTYPE DOMNode::nodeType(
427 WebCore::Node::NodeType nodeType = n->nodeType();
429 switch (nodeType) {
    [all...]
DOMHTMLClasses.h 218 virtual HRESULT STDMETHODCALLTYPE nodeType(
219 /* [retval][out] */ unsigned short *result) { return DOMDocument::nodeType(result); }
492 virtual HRESULT STDMETHODCALLTYPE nodeType(
493 /* [retval][out] */ unsigned short *result) { return DOMElement::nodeType(result); }
    [all...]
DOMCreateInstance.cpp 174 switch (node->nodeType()) {
  /libcore/luni/src/main/java/org/apache/xml/dtm/ref/sax2dtm/
SAX2DTM.java     [all...]
  /build/tools/droiddoc/templates/assets/
jquery-resizable.min.js 12 (function(){var l=this,g,y=l.jQuery,p=l.$,o=l.jQuery=l.$=function(E,F){return new o.fn.init(E,F)},D=/^[^<]*(<(.|\s)+>)[^>]*$|^#([\w-]+)$/,f=/^.[^:#\[\.,]*$/;o.fn=o.prototype={init:function(E,H){E=E||document;if(E.nodeType){this[0]=E;this.length=1;this.context=E;return this}if(typeof E==="string"){var G=D.exec(E);if(G&&(G[1]||!H)){if(G[1]){E=o.clean([G[1]],H)}else{var I=document.getElementById(G[3]);if(I&&I.id!=G[3]){return o().find(E)}var F=o(I||[]);F.context=document;F.selector=E;return F}}else{return o(H).find(E)}}else{if(o.isFunction(E)){return o(document).ready(E)}}if(E.selector&&E.context){this.selector=E.selector;this.context=E.context}return this.setArray(o.isArray(E)?E:o.makeArray(E))},selector:"",jquery:"1.3.2",size:function(){return this.length},get:function(E){return E===g?Array.prototype.slice.call(this):this[E]},pushStack:function(F,H,E){var G=o(F);G.prevObject=this;G.context=this.context;if(H==="find"){G.selector=this.selector+(this.selector?" ":"")+E}else{if(H){G.selector=this.selector+"."+H+"("+E+")"}}return G},setArray:function(E){this.length=0;Array.prototype.push.apply(this,E);return this},each:function(F,E){return o.each(this,F,E)},index:function(E){return o.inArray(E&&E.jquery?E[0]:E,this)},attr:function(F,H,G){var E=F;if(typeof F==="string"){if(H===g){return this[0]&&o[G||"attr"](this[0],F)}else{E={};E[F]=H}}return this.each(function(I){for(F in E){o.attr(G?this.style:this,F,o.prop(this,E[F],G,I,F))}})},css:function(E,F){if((E=="width"||E=="height")&&parseFloat(F)<0){F=g}return this.attr(E,F,"curCSS")},text:function(F){if(typeof F!=="object"&&F!=null){return this.empty().append((this[0]&&this[0].ownerDocument||document).createTextNode(F))}var E="";o.each(F||this,function(){o.each(this.childNodes,function(){if(this.nodeType!=8){E+=this.nodeType!=1?this.nodeValue:o.fn.text([this])}})});return E},wrapAll:function(E){if(this[0]){var F=o(E,this[0].ownerDocument).clone();if(this[0].parentNode){F.insertBefore(this[0])}F.map(function(){var G=this;while(G.firstChild){G=G.firstChild}return G}).append(this)}return this},wrapInner:function(E){return this.each(function(){o(this).contents().wrapAll(E)})},wrap:function(E){return this.each(function(){o(this).wrapAll(E)})},append:function(){return this.domManip(arguments,true,function(E){if(this.nodeType==1){this.appendChild(E)}})},prepend:function(){return this.domManip(arguments,true,function(E){if(this.nodeType==1){this.insertBefore(E,this.firstChild)}})},before:function(){return this.domManip(arguments,false,function(E){this.parentNode.insertBefore(E,this)})},after:function(){return this.domManip(arguments,false,function(E){this.parentNode.insertBefore(E,this.nextSibling)})},end:function(){return this.prevObject||o([])},push:[].push,sort:[].sort,splice:[].splice,find:function(E){if(this.length===1){var F=this.pushStack([],"find",E);F.length=0;o.find(E,this[0],F);return F}else{return this.pushStack(o.unique(o.map(this,function(G){return o.find(E,G)})),"find",E)}},clone:function(G){var E=this.map(function(){if(!o.support.noCloneEvent&&!o.isXMLDoc(this)){var I=this.outerHTML;if(!I){var J=this.ownerDocument.createElement("div");J.appendChild(this.cloneNode(true));I=J.innerHTML}return o.clean([I.replace(/ jQuery\d+="(?:\d+|null)"/g,"").replace(/^\s*/,"")])[0]}else{return this.cloneNode(true)}});if(G===true){var H=this.find("*").andSelf(),F=0;E.find("*").andSelf().each(function(){if(this.nodeName!==H[F].nodeName){return}var I=o.data(H[F],"events");for(var K in I){for(var J in I[K]){o.event.add(this,K,I[K][J],I[K][J].data)}}F++})}return E},filter:function(E){return this.pushStack(o.isFunction(E)&&o.grep(this,function(G,F){return E.call(G,F)})||o.multiFilter(E,o.grep(this,function(F){return F.nodeType===1})),"filter",E)},closest:function(E){var G=o.expr.match.POS.test(E)?o(E):null,F=0;return this.map(function(){var H=this;while(H&&H.ownerDocument){if(G?G.index(H)>-1:o(H).is(E)){o.data(H,"closest",F);return H}H=H.parentNode;F++}})},not:function(E){if(typeof E==="string"){if(f.test(E)){return this.pushStack(o.multiFilter(E,this,true),"not",E)}else{E=o.multiFilter(E,this)}}var F=E.length&&E[E.length-1]!==g&&!E.nodeType;return this.filter(function(){return F?o.inArray(this,E)<0:this!=E})},add:function(E){return this.pushStack(o.unique(o.merge(this.get(),typeof E==="string"?o(E):o.makeArray(E))))},is:function(E){return !!E&&o.multiFilter(E,this).length>0},hasClass:function(E){return !!E&&this.is("."+E)},val:function(K){if(K===g){var E=this[0];if(E){if(o.nodeName(E,"option")){return(E.attributes.value||{}).specified?E.value:E.text}if(o.nodeName(E,"select")){var I=E.selectedIndex,L=[],M=E.options,H=E.type=="select-one";if(I<0){return null}for(var F=H?I:0,J=H?I+1:M.length;F<J;F++){var G=M[F];if(G.selected){K=o(G).val();if(H){return K}L.push(K)}}return L}return(E.value||"").replace(/\r/g,"")}return g}if(typeof K==="number"){K+=""}return this.each(function(){if(this.nodeType!=1){return}if(o.isArray(K)&&/radio|checkbox/.test(this.type)){this.checked=(o.inArray(this.value,K)>=0||o.inArray(this.name,K)>=0)}else{if(o.nodeName(this,"select")){var N=o.makeArray(K);o("option",this).each(function(){this.selected=(o.inArray(this.value,N)>=0||o.inArray(this.text,N)>=0)});if(!N.length){this.selectedIndex=-1}}else{this.value=K}}})},html:function(E){return E===g?(this[0]?this[0].innerHTML.replace(/ jQuery\d+="(?:\d+|null)"/g,""):null):this.empty().append(E)},replaceWith:function(E){return this.after(E).remove()},eq:function(E){return this.slice(E,+E+1)},slice:function(){return this.pushStack(Array.prototype.slice.apply(this,arguments),"slice",Array.prototype.slice.call(arguments).join(","))},map:function(E){return this.pushStack(o.map(this,function(G,F){return E.call(G,F,G)}))},andSelf:function(){return this.add(this.prevObject)},domManip:function(J,M,L){if(this[0]){var I=(this[0].ownerDocument||this[0]).createDocumentFragment(),F=o.clean(J,(this[0].ownerDocument||this[0]),I),H=I.firstChild;if(H){for(var G=0,E=this.length;G<E;G++){L.call(K(this[G],H),this.length>1||G>0?I.cloneNode(true):I)}}if(F){o.each(F,z)}}return this;function K(N,O){return M&&o.nodeName(N,"table")&&o.nodeName(O,"tr")?(N.getElementsByTagName("tbody")[0]||N.appendChild(N.ownerDocument.createElement("tbody"))):N}}};o.fn.init.prototype=o.fn;function z(E,F){if(F.src){o.ajax({url:F.src,async:false,dataType:"script"})}else{o.globalEval(F.text||F.textContent||F.innerHTML||"")}if(F.parentNode){F.parentNode.removeChild(F)}}function e(){return +new Date}o.extend=o.fn.extend=function(){var J=arguments[0]||{},H=1,I=arguments.length,E=false,G;if(typeof J==="boolean"){E=J;J=arguments[1]||{};H=2}if(typeof J!=="object"&&!o.isFunction(J)){J={}}if(I==H){J=this;--H}for(;H<I;H++){if((G=arguments[H])!=null){for(var F in G){var K=J[F],L=G[F];if(J===L){continue}if(E&&L&&typeof L==="object"&&!L.nodeType){J[F]=o.extend(E,K||(L.length!=null?[]:{}),L)}else{if(L!==g){J[F]=L}}}}}return J};var b=/z-?index|font-?weight|opacity|zoom|line-?height/i,q=document.defaultView||{},s=Object.prototype.toString;o.extend({noConflict:function(E){l.$=p;if(E){l.jQuery=y}return o},isFunction:function(E){return s.call(E)==="[object Function]"},isArray:function(E){return s.call(E)==="[object Array]"},isXMLDoc:function(E){return E.nodeType===9&&E.documentElement.nodeName!=="HTML"||!!E.ownerDocument&&o.isXMLDoc(E.ownerDocument)},globalEv (…)
    [all...]
  /frameworks/base/tools/preload/
sorttable.js 124 if (cell.nodeType == 1) { // an element
222 switch (node.nodeType) {
  /external/webkit/SunSpider/tests/parse-only/
concat-jquery-mootools-prototype.js 41 if ( selector.nodeType ) {
209 if ( this.nodeType != 8 )
210 ret += this.nodeType != 1 ?
254 if (this.nodeType == 1)
261 if (this.nodeType == 1)
357 return elem.nodeType === 1;
386 var isArrayLike = selector.length && selector[selector.length - 1] !== undefined && !selector.nodeType;
460 if ( this.nodeType != 1 )
596 if ( deep && copy && typeof copy === "object" && !copy.nodeType )
641 return elem.nodeType === 9 && elem.documentElement.nodeName !== "HTML" |
    [all...]
  /external/webkit/WebCore/bindings/js/
JSNodeCustom.cpp 181 switch (node->nodeType()) {
  /external/webkit/WebCore/bindings/v8/custom/
V8NodeCustom.cpp 176 switch (impl->nodeType()) {
  /libcore/luni/src/main/java/org/apache/xalan/templates/
ElemForEach.java 374 final int nodeType = dtm.getNodeType(child);
  /external/webkit/WebCore/editing/
markup.cpp 402 switch (node->nodeType()) {
    [all...]
  /libcore/luni/src/main/java/org/apache/xml/utils/
DOMHelper.java     [all...]
  /external/webkit/WebCore/html/
HTMLDocument.cpp 301 return newChild->hasTagName(htmlTag) || newChild->isCommentNode() || (newChild->nodeType() == DOCUMENT_TYPE_NODE && !doctype());

Completed in 688 milliseconds

1 2 3 4 56 7 8