Home
last modified time | relevance | path

Searched refs:myIndex (Results 1 – 3 of 3) sorted by relevance

/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/
DBeautifulSoup.py131 myIndex = self.parent.index(self)
136 if index and index < myIndex:
140 myIndex = myIndex - 1
142 oldParent.insert(myIndex, replaceWith)
146 myIndex = self.parent.index(self)
151 myParent.insert(myIndex, child)
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
DDataGrid.js1490 _recalculateSiblings: function(myIndex) argument
1495 var previousChild = (myIndex > 0 ? this.parent.children[myIndex - 1] : null);
1503 var nextChild = this.parent.children[myIndex + 1];
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/cm/
Dcodemirror.js4705 var myIndex = indexOf(me.parent.children, me);
4706 me.parent.children.splice(myIndex + 1, 0, sibling);