/external/webkit/Source/WebKit/chromium/src/ |
WebNode.cpp | 123 WebNode WebNode::nextSibling() const 125 return WebNode(m_private->nextSibling());
|
/external/webkit/Tools/Scripts/webkitpy/tool/commands/data/rebaselineserver/ |
queue.js | 117 queueOption = queueOption.nextSibling; 134 queueOption = queueOption.nextSibling) {
|
/external/webkit/Source/WebCore/xml/ |
XPathStep.cpp | 244 for (Node* n = context->firstChild(); n; n = n->nextSibling()) 285 for (Node* n = context->nextSibling(); n; n = n->nextSibling()) 308 for (Node* n = p->nextSibling(); n; n = n->nextSibling()) {
|
/build/tools/droiddoc/templates-sdk/assets/js/ |
prettify.js | 6 {b:8,t:9,n:10,v:11,f:12,r:13},n=[],p=0,d=a.length;p<d;++p){g=a[p];if(g.global||g.multiline)throw Error(""+g);n.push("(?:"+y(g)+")")}return RegExp(n.join("|"),l?"gi":"g")}function M(a){function m(a){switch(a.nodeType){case 1:if(e.test(a.className))break;for(var g=a.firstChild;g;g=g.nextSibling)m(g);g=a.nodeName;if("BR"===g||"LI"===g)h[s]="\n",t[s<<1]=y++,t[s++<<1|1]=a;break;case 3:case 4:g=a.nodeValue,g.length&&(g=p?g.replace(/\r\n?/g,"\n"):g.replace(/[\t\n\r ]+/g," "),h[s]=g,t[s<<1]=y,y+=g.length, 13 a.parentNode&&a.parentNode.removeChild(a);else for(a=a.firstChild;a;a=a.nextSibling)e(a);break;case 3:case 4:if(p){var b=a.nodeValue,d=b.match(t);if(d){var c=b.substring(0,d.index);a.nodeValue=c;(b=b.substring(d.index+d[0].length))&&a.parentNode.insertBefore(s.createTextNode(b),a.nextSibling);h(a);c||a.parentNode.removeChild(a)}}}}function h(a){function b(a,d){var e=d?a.cloneNode(!1):a,f=a.parentNode;if(f){var f=b(f,1),g=a.nextSibling;f.appendChild(e);for(var h=g;h;h=g)g=h.nextSibling,f.appendChild(h)}return e} 14 for(;!a.nextSibling;)if(a=a.parentNode,!a)return;for(var a=b(a.nextSibling,0),e;(e=a.parentNode)&&e.nodeType===1;)a=e;d.push(a)}var k=/(?:^|\s)nocode(?:\s|$)/,t=/\r\n?|\n/,s=a.ownerDocument,l;a.currentStyle?l=a.currentStyle.whiteSpace:window.getComputedStyle&&(l=s.defaultView.getComputedStyle(a,q).getPropertyValue("white-space"));var p=l&&"pre"===l.substring(0,3);for(l=s.createElement("LI");a.firstChild;)l.appendChild(a.firstChild);for(var d=[l],g=0;g<d.length;++g)e(d[g]);m===(m|0)&&d[0].setAttribute("value", 17 j;var u=i.ownerDocument,v=u.createElement("SPAN");v.className=d[a+1];var x=i.parentNode;x.replaceChild(v,i);v.appendChild(i);e<o&&(l[h+1]=i=u.createTextNode(t.substring(b,o)),x.insertBefore(i,v.nextSibling))}e=b;e>=o&&(h+=2);e>=c&&(a+=2)}}catch(w){"console"in window&&console.log(w&&w.stack?w.stack:w)}}var v=["break,continue,do,else,for,if,return,while"],w=[[v,"auto,case,char,const,default,double,enum,extern,float,goto,int,long,register,short,signed,sizeof,static,struct,switch,typedef,union,unsigned,void,volatile"], 26 !k){b=n;for(var o=void 0,c=b.firstChild;c;c=c.nextSibling)var i=c.nodeType,o=i===1?o?b:c:i===3?N.test(c.nodeValue)?b:o:o;b=(f=o===b?void 0:o)&&"CODE"===f.tagName}b&&(k=f.className.match(g));k&&(k=k[1]);b=!1;for(o=n.parentNode;o;o=o.parentNode)if((o.tagName==="pre"||o.tagName==="code"||o.tagName==="xmp")&&o.className&&o.className.indexOf("prettyprint")>=0){b=!0;break}b||((b=(b=n.className.match(/\blinenums\b(?::(\d+))?/))?b[1]&&b[1].length?+b[1]:!0:!1)&&D(n,b),d={g:k,h:n,i:b},E(d))}}p<h.length?setTimeout(m,
|
/external/jmonkeyengine/engine/src/tools/jme3tools/optimize/ |
Octnode.java | 197 public void generateFastOctnodeLinks(Octnode parent, Octnode nextSibling, int side){ 199 fastNode.next = nextSibling != null ? nextSibling.fastNode : null;
|
/external/webkit/Source/WebCore/dom/ |
Node.cpp | 713 while (Node* nextSibling = node->nextSibling()) { 714 if (nextSibling->nodeType() != TEXT_NODE) 716 RefPtr<Text> nextText = static_cast<Text*>(nextSibling); 1122 if (nextSibling()) 1123 return nextSibling(); 1125 while (n && !n->nextSibling() && (!stayWithin || n->parentNode() != stayWithin)) 1128 return n->nextSibling(); [all...] |
/external/webkit/Source/WebCore/rendering/ |
FixedTableLayout.cpp | 133 next = child->nextSibling(); 135 next = child->parent()->nextSibling(); 180 child = child->nextSibling();
|
RenderInline.cpp | 294 o = tmp->nextSibling(); 338 o = currChild->nextSibling(); 341 o = tmp->nextSibling(); 358 o = currChild->nextSibling(); 361 o = tmp->nextSibling(); 389 RenderObject* boxFirst = madeNewBeforeBlock ? block->firstChild() : pre->nextSibling(); 400 o = no->nextSibling(); 492 for (RenderObject* curr = firstChild(); curr; curr = curr->nextSibling()) { 576 for (RenderObject* curr = firstChild(); curr; curr = curr->nextSibling()) { [all...] |
/external/webkit/Source/WebCore/rendering/svg/ |
SVGRenderSupport.cpp | 165 for (RenderObject* current = container->firstChild(); current; current = current->nextSibling()) { 206 for (RenderObject* child = start->firstChild(); child; child = child->nextSibling()) 215 for (RenderObject* child = start->firstChild(); child; child = child->nextSibling()) {
|
/external/webkit/LayoutTests/dom/html/level1/core/ |
hc_attrfirstchild.js | 113 otherChild = textNode.nextSibling;
|
hc_attrlastchild.js | 113 otherChild = textNode.nextSibling;
|
hc_attrnormalize.js | 122 secondChild = firstChild.nextSibling;
|
hc_attrsetvalue1.js | 124 otherChild = firstChild.nextSibling;
|
hc_attrsetvalue2.js | 127 otherChild = firstChild.nextSibling;
|
hc_elementgetelementsbytagnameaccessnodelist.js | 122 firstC = firstC.nextSibling;
|
hc_elementnormalize2.js | 118 secondChild = firstChild.nextSibling;
|
/external/webkit/LayoutTests/dom/xhtml/level1/core/ |
hc_attrfirstchild.js | 113 otherChild = textNode.nextSibling;
|
hc_attrlastchild.js | 113 otherChild = textNode.nextSibling;
|
hc_attrnormalize.js | 122 secondChild = firstChild.nextSibling;
|
hc_attrsetvalue1.js | 124 otherChild = firstChild.nextSibling;
|
hc_attrsetvalue2.js | 127 otherChild = firstChild.nextSibling;
|
hc_elementgetelementsbytagnameaccessnodelist.js | 122 firstC = firstC.nextSibling;
|
hc_elementnormalize2.js | 118 secondChild = firstChild.nextSibling;
|
/external/webkit/LayoutTests/dom/xhtml/level3/core/ |
canonicalform07.js | 139 child = child.nextSibling;
|
documentadoptnode01.js | 139 secondChild = firstChild.nextSibling;
|