Searched refs:childIndex (Results 1 - 18 of 18) sorted by relevance

/macosx-10.9.5/WebCore-7537.78.1/inspector/front-end/
H A DProfileDataGridTree.js164 for (var childIndex = 0; childIndex < childCount; ++childIndex)
165 children[childIndex]._recalculateSiblings(childIndex);
H A DView.js273 var childIndex = this._parentView._children.indexOf(this);
274 WebInspector.View._assert(childIndex >= 0, "Attempt to remove non-child view");
275 this._parentView._children.splice(childIndex, 1);
H A Dtreeoutline.js128 TreeOutline.prototype.removeChildAtIndex = function(childIndex)
130 if (childIndex < 0 || childIndex >= this.children.length)
131 throw("childIndex out of range");
133 var child = this.children[childIndex];
134 this.children.splice(childIndex, 1);
168 var childIndex = this.children.indexOf(child);
169 if (childIndex === -1)
172 this.removeChildAtIndex.call(this, childIndex);
H A DHeapSnapshotGridNodes.js125 var childIndex = indexOfFirsChildInRange + nodePosition - range.from;
126 return this.children[childIndex];
784 var childIndex = indexOfFirsChildInRange + nodePosition - range.from;
785 var instanceNode = this.children[childIndex];
/macosx-10.9.5/WebCore-7537.78.1/rendering/
H A DRenderDeprecatedFlexibleBox.cpp277 size_t childIndex = 0; local
287 child->repaintDuringLayoutIfMoved(oldChildRects[childIndex]);
289 ++childIndex;
291 ASSERT(childIndex == oldChildRects.size());
454 size_t childIndex = 0; local
467 LayoutSize& childLayoutDelta = childLayoutDeltas[childIndex++];
501 ASSERT(childIndex == childLayoutDeltas.size());
516 childIndex = 0;
531 LayoutSize& childLayoutDelta = childLayoutDeltas[childIndex++];
580 ASSERT(childIndex
760 size_t childIndex = 0; local
[all...]
H A DRenderFlexibleBox.cpp401 size_t childIndex = 0; local
410 child->repaintDuringLayoutIfMoved(oldChildRects[childIndex]);
411 ++childIndex;
413 ASSERT(childIndex == oldChildRects.size());
/macosx-10.9.5/WebCore-7537.78.1/platform/
H A DTimer.cpp324 static inline bool childHeapPropertyHolds(const TimerBase* current, const Vector<TimerBase*>& heap, unsigned childIndex)
326 if (childIndex >= heap.size())
329 return compareHeapPosition(heap[childIndex], current);
/macosx-10.9.5/WebCore-7537.78.1/dom/
H A DElementRareData.h93 unsigned childIndex() const { return m_childIndex; } function in class:WebCore::ElementRareData
H A DElement.h463 unsigned childIndex() const { return hasRareData() ? rareDataChildIndex() : 0; } function in class:WebCore::Element
H A DElement.cpp2412 return elementRareData()->childIndex();
/macosx-10.9.5/IOHIDFamily-503.215.2/IOHIDFamily/
H A DIOHIDDevice.h141 UInt32 childIndex );
H A DIOHIDDevice.cpp1438 UInt32 childIndex )
1440 IOHIDElementPrivate * child = (IOHIDElementPrivate *) array->getObject( childIndex );
/macosx-10.9.5/WebKit-7537.78.2/win/
H A DAccessibleBase.cpp1017 size_t childIndex = static_cast<size_t>(vChild.lVal - 1); local
1019 if (childIndex >= m_object->children().size())
1021 childObj = m_object->children().at(childIndex).get();
/macosx-10.9.5/WebCore-7537.78.1/css/
H A DDeprecatedStyleBuilder.cpp1672 size_t childIndex = 0; local
1676 if (childIndex <= list->size())
1678 map(styleResolver, list->animation(childIndex), i.value());
1679 ++childIndex;
1684 map(styleResolver, list->animation(childIndex), value);
1685 childIndex = 1;
1687 for ( ; childIndex < list->size(); ++childIndex) {
1689 clear(list->animation(childIndex));
H A DSelectorChecker.cpp97 unsigned index = sibling->childIndex();
/macosx-10.9.5/configd-596.15/SystemConfiguration.fproj/
H A DSCNetworkInterface.c4115 CFIndex childIndex; local
4134 childIndex = findConfiguration(childPrivate->interface_type);
4150 if (childIndex != kCFNotFound) {
4151 if (configurations[childIndex].ppp_subtype != NULL) {
4152 parentPrivate->entity_subtype = *configurations[childIndex].ppp_subtype;
4170 if ((childIndex == kCFNotFound) ||
4171 ((configurations[childIndex].supported_interfaces & doL2TP) != doL2TP)) {
4179 if ((childIndex == kCFNotFound) ||
4180 ((configurations[childIndex].supported_interfaces & doPPTP) != doPPTP)) {
4188 if ((childIndex
[all...]
/macosx-10.9.5/configd-596.15/scutil.tproj/
H A Dnet_interface.c892 CFIndex childIndex = 0; local
913 if (childIndex == 0) {
922 childIndex,
954 childIndex++;
/macosx-10.9.5/CF-855.17/
H A DCFStorage.c260 static inline void __CFStorageSetChild(CFStorageNode *parentNode, CFIndex childIndex, CFStorageNode *newChild) { argument
262 ASSERT(childIndex < 3);
263 __CFAssignWithWriteBarrier((void **)&parentNode->info.notLeaf.child[childIndex], newChild);

Completed in 257 milliseconds