HomeSort by relevance Sort by last modified time
    Searched refs:child (Results 226 - 250 of 2913) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/core/html/imports/
HTMLImportChild.cpp 158 for (HTMLImport* child = firstChild(); child; child = child->next())
159 toHTMLImportChild(child)->createCustomElementMicrotaskStepIfNeeded();
210 for (HTMLImport* child = firstChild(); child; child = child->next())
211 toHTMLImportChild(child)->normalize()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/compositing/
CompositingInputsUpdater.cpp 73 for (RenderLayer* child = layer->firstChild(); child; child = child->nextSibling())
74 update(child, updateType, info);
88 for (RenderLayer* child = layer->firstChild(); child; child = child->nextSibling())
89 assertNeedsCompositingInputsUpdateBitsCleared(child);
    [all...]
  /external/chromium_org/ash/wm/workspace/
workspace_layout_manager.cc 75 void WorkspaceLayoutManager::OnWindowAddedToLayout(Window* child) {
76 wm::WindowState* window_state = wm::GetWindowState(child);
79 windows_.insert(child);
80 child->AddObserver(this);
85 backdrop_delegate_->OnWindowAddedToLayout(child);
86 WindowPositioner::RearrangeVisibleWindowOnShow(child);
89 void WorkspaceLayoutManager::OnWillRemoveWindowFromLayout(Window* child) {
90 windows_.erase(child);
91 child->RemoveObserver(this);
92 wm::GetWindowState(child)->RemoveObserver(this)
    [all...]
  /frameworks/base/packages/PrintSpooler/src/com/android/printspooler/widget/
PrintOptionsLayout.java 78 View child = getChildAt(childIndex); local
80 if (child.getVisibility() == GONE) {
84 MarginLayoutParams childParams = (MarginLayoutParams) child.getLayoutParams();
99 child.measure(childWidthMeasureSpec, childHeightMeasureSpec);
101 childState = combineMeasuredStates(childState, child.getMeasuredState());
103 rowWidth += child.getMeasuredWidth() + childParams.getMarginStart()
106 rowHeight = Math.max(rowHeight, child.getMeasuredHeight() + childParams.topMargin
143 View child = getChildAt(childIndex); local
145 if (child.getVisibility() == GONE) {
149 MarginLayoutParams childParams = (MarginLayoutParams) child.getLayoutParams()
    [all...]
  /cts/hostsidetests/theme/app/src/android/theme/app/
ReferenceViewGroup.java 55 View child = getChildAt(i); local
56 LayoutParams params = child.getLayoutParams();
59 child.measure(width, height);
81 View child = getChildAt(i); local
82 child.layout(0, 0, child.getMeasuredWidth(), child.getMeasuredHeight());
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AXMenuListPopup.cpp 119 AXObject* child = m_children[i - 1].get(); local
122 if (child->actionElement()) {
123 child->detachFromParent();
124 cache->remove(child->axObjectID());
143 RefPtr<AXObject> child = m_children[optionIndex].get(); local
145 cache->postNotification(child.get(), document(), AXObjectCache::AXFocusedUIElementChanged, true, PostSynchronously);
146 cache->postNotification(child.get(), document(), AXObjectCache::AXMenuListItemSelected, true, PostSynchronously);
  /frameworks/opt/datetimepicker/src/com/android/datetimepicker/date/
DayPickerView.java 189 View child; local
192 // Find a child that's completely in the view
194 child = getChildAt(i++);
195 if (child == null) {
198 top = child.getTop();
200 Log.d(TAG, "child at " + (i - 1) + " has top " + top);
206 if (child != null) {
207 selectedPosition = getPositionForView(child);
256 MonthView child = (MonthView) view.getChildAt(0); local
257 if (child == null)
314 View child = getChildAt(i); local
353 View child = getChildAt(i); local
382 final View child = getChildAt(i); local
412 final View child = getChildAt(i); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
ContainerNode.cpp 89 while (RefPtrWillBeRawPtr<Node> child = oldParent.firstChild()) {
90 oldParent.parserRemoveChild(*child);
91 treeScope().adoptIfNeeded(*child);
92 parserAppendChild(child.get());
105 bool ContainerNode::isChildTypeAllowed(const Node& child) const
107 if (!child.isDocumentFragment())
108 return childTypeAllowed(child.nodeType());
110 for (Node* node = toDocumentFragment(child).firstChild(); node; node = node->nextSibling()) {
128 exceptionState.throwDOMException(NotFoundError, "The new child element is null.");
136 exceptionState.throwDOMException(HierarchyRequestError, "The new child element contains the parent.")
226 Node& child = **it; local
371 Node& child = **it; local
417 Node& child = **it; local
457 RefPtrWillBeRawPtr<Node> child = oldChild; local
631 Node& child = **it; local
    [all...]
  /external/chromium_org/ui/views/animation/
bounds_animator_unittest.cc 99 TestView* child() { return child_; } function in class:views::BoundsAnimatorTest
114 child()->SetBoundsRect(initial_bounds);
116 animator()->AnimateViewTo(child(), target_bounds);
118 child(), scoped_ptr<gfx::AnimationDelegate>(new TestAnimationDelegate()));
128 EXPECT_EQ(target_bounds, child()->bounds());
138 animator()->AnimateViewTo(child(), gfx::Rect(0, 0, 10, 10));
140 child(), scoped_ptr<gfx::AnimationDelegate>(new OwnedDelegate()));
155 animator()->AnimateViewTo(child(), gfx::Rect(0, 0, 10, 10));
157 child(), scoped_ptr<gfx::AnimationDelegate>(new OwnedDelegate()));
159 animator()->AnimateViewTo(child(), gfx::Rect(0, 0, 10, 10))
    [all...]
  /cts/suite/audio_quality/lib/src/task/
TaskGeneric.cpp 29 bool deleteChildInstance(TaskGeneric* child, void* /*data*/)
31 delete child;
41 bool TaskGeneric::addChild(TaskGeneric* child)
43 mChildren.push_back(child);
44 child->setParent(this);
48 bool TaskGeneric::forEachChild(bool (*runForEachChild)(TaskGeneric* child, void* data), void* data)
86 bool runChild(TaskGeneric* child, void* data)
89 *result = child->run();
91 LOGE("child type %d returned %d", child->getType(), *result)
    [all...]
  /cts/tests/tests/uirendering/src/android/uirendering/cts/testclasses/
ViewClippingTests.java 38 ViewGroup child = (ViewGroup) rootView.findViewById(R.id.child);
39 child.setClipToPadding(true);
40 child.setWillNotDraw(true);
41 child.addView(new UnclippedBlueView(rootView.getContext()));
47 View child = rootView.findViewById(R.id.child);
48 child.setOutlineProvider(new ViewOutlineProvider() {
54 child.setClipToOutline(true);
  /development/testrunner/
make_tree.py 48 child = self._children_map.get(current_seg)
49 if not child:
50 child = MakeNode(current_seg, self)
51 self._children_map[current_seg] = child
52 return child._AddPath(path_segs)
76 for child in self._children_map.itervalues():
77 child._BuildPrunedMakeList(make_list)
103 child = self._AddPath(path_segs)
104 child._SetLeaf(True)
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/common/
Progress.js 119 var child = new WebInspector.SubProgress(this, weight);
120 this._children.push(child);
121 return child;
130 var child = this._children[i];
131 if (child._totalWork)
132 done += child._weight * child._worked / child._totalWork;
133 totalWeights += child._weight;
  /external/chromium_org/ui/views/test/
widget_test.cc 64 Widget* child = new Widget; local
67 child_params.native_widget = CreatePlatformNativeWidget(child);
69 child->Init(child_params);
70 child->SetContentsView(new View);
71 return child;
82 Widget* child = new Widget; local
85 child->Init(params);
86 child->SetContentsView(new View);
87 return child;
  /external/tcpdump/
makemib 52 * struct mib somename = { desc, oid-octet, type, child-pointer, next-pointer
206 if (child[parent] != "") {
207 for (sib = child[parent]; sib != ""; sib = sibling[sib])
220 if (child[parent] == "") {
221 child[parent] = new
223 sibling[new] = child[parent]
224 child[parent] = new
234 # printf "/* %s c=%s s=%s */\n", newitem, child[item], sibling[item]
236 if (child[item] != "") {
237 dump(child[item]
    [all...]
  /external/chromium_org/ash/wm/
always_on_top_controller.cc 43 void AlwaysOnTopController::OnWindowAdded(aura::Window* child) {
44 // Observe direct child of the containers.
45 if (child->parent() == always_on_top_container_)
46 child->AddObserver(this);
49 void AlwaysOnTopController::OnWillRemoveWindow(aura::Window* child) {
50 child->RemoveObserver(this);
lock_layout_manager.h 57 virtual void OnWindowAddedToLayout(aura::Window* child) OVERRIDE;
58 virtual void OnWillRemoveWindowFromLayout(aura::Window* child) OVERRIDE;
59 virtual void OnWindowRemovedFromLayout(aura::Window* child) OVERRIDE;
60 virtual void OnChildWindowVisibilityChanged(aura::Window* child,
62 virtual void SetChildBounds(aura::Window* child,
  /external/chromium_org/mojo/services/public/cpp/view_manager/
node.h 53 void AddChild(Node* child);
54 void RemoveChild(Node* child);
60 bool Contains(Node* child) const;
85 void LocalAddChild(Node* child);
86 void LocalRemoveChild(Node* child);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGTransformableContainer.cpp 50 bool RenderSVGTransformableContainer::isChildAllowed(RenderObject* child, RenderStyle* style) const
54 Node* node = child->node();
58 // Reject this child if it isn't the first valid node.
64 if (isSVGAElement(*child->node()))
67 return parent()->isChildAllowed(child, style);
69 return RenderSVGContainer::isChildAllowed(child, style);
  /external/chromium_org/third_party/libjingle/source/talk/base/
taskparent.cc 59 void TaskParent::AddChild(Task *child) {
60 children_->insert(child);
106 void TaskParent::OnChildStopped(Task *child) {
107 if (child->HasError())
109 children_->erase(child);
  /external/chromium_org/third_party/libjingle/source/talk/xmpp/
discoitemsquerytask.cc 53 for (const buzz::XmlChild* child = query->FirstChild(); child;
54 child = child->NextChild()) {
56 const buzz::XmlElement* child_element = child->AsElement();
  /external/chromium_org/third_party/webrtc/base/
taskparent.cc 42 void TaskParent::AddChild(Task *child) {
43 children_->insert(child);
89 void TaskParent::OnChildStopped(Task *child) {
90 if (child->HasError())
92 children_->erase(child);
  /external/qemu/distrib/ext4_utils/src/
setup_fs.c 15 pid_t child; local
46 child = fork();
47 if (child < 0) {
51 if (child == 0) {
56 while ((pid=waitpid(-1, &status, 0)) != child) {
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
characterdatadeletedatagetlengthanddata.java 35 * Retrieve the character data from the last child of the
74 CharacterData child; local
82 child = (CharacterData) nameNode.getFirstChild();
83 child.deleteData(30, 5);
84 childData = child.getData();
86 childLength = (int) child.getLength();
commentgetcomment.java 66 Node child; local
74 child = (Node) elementList.item(indexN10057);
75 childType = (int) child.getNodeType();
78 childName = child.getNodeName();
80 childValue = child.getNodeValue();

Completed in 918 milliseconds

1 2 3 4 5 6 7 8 91011>>