/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
RenderRuby.cpp | 75 RenderObject* child = ruby->firstChild(); local 76 return isRubyBeforeBlock(child) ? toRenderBlock(child) : 0; 81 RenderObject* child = ruby->lastChild(); local 82 return isRubyAfterBlock(child) ? toRenderBlock(child) : 0; 95 RenderObject* child = ruby->lastChild(); local 96 if (child && !child->isRubyRun()) 97 child = child->previousSibling() [all...] |
RenderDeprecatedFlexibleBox.cpp | 52 RenderBox* child = m_box->firstChildBox(); local 53 while (child) { 54 if (child->style()->boxOrdinalGroup() > m_largestOrdinal) 55 m_largestOrdinal = child->style()->boxOrdinalGroup(); 56 child = child->nextSiblingBox(); 150 static LayoutUnit marginWidthForChild(RenderBox* child) 155 Length marginLeft = child->style()->marginLeft(); 156 Length marginRight = child->style()->marginRight(); 165 static bool childDoesNotAffectWidthOrFlexing(RenderObject* child) [all...] |
RenderFlexibleBox.cpp | 58 Violation(RenderBox* child, LayoutUnit childSize) 59 : child(child) 64 RenderBox* child; member in struct:WebCore::RenderFlexibleBox::Violation 98 for (RenderBox* child = firstChildBox(); child; child = child->nextSiblingBox()) { 99 if (child->isOutOfFlowPositioned()) 102 LayoutUnit margin = marginIntrinsicLogicalWidthForChild(child); 701 RenderBox* child = children[i]; local 908 RenderBox* child = violations[i].child; local 927 RenderBox* child = children[i]; local 1040 RenderBox* child = children[i]; local 1079 RenderBox* child = children[i]; local 1159 RenderBox* child = children[i]; local 1211 RenderBox* child = m_orderIterator.first(); local 1245 RenderBox* child = m_orderIterator.first(); local 1363 RenderBox* child = m_orderIterator.first(); local [all...] |
/external/chromium_org/third_party/WebKit/Source/core/html/ |
HTMLTableRowsCollection.cpp | 57 Node* child = 0; local 62 for (child = previous->nextSibling(); child; child = child->nextSibling()) { 63 if (isHTMLTableRowElement(child)) 64 return toHTMLTableRowElement(child); 70 child = table->firstChild(); 72 child = previous->parentNode()->nextSibling(); 73 for (; child; child = child->nextSibling()) [all...] |
HTMLImport.cpp | 53 void HTMLImport::appendChild(HTMLImport* child) 56 child->blockScript(); 58 child->blockDocument(); 59 TreeNode<HTMLImport>::appendChild(child); 60 blockAfter(child); 65 for (HTMLImport* child = firstChild(); child; child = child->next()) { 66 if (!child->isLoaded() [all...] |
/external/apache-xml/src/main/java/org/apache/xalan/templates/ |
ElemUnknown.java | 58 for (ElemTemplateElement child = m_firstChild; child != null; 59 child = child.m_nextSibling) 61 if (child.getXSLToken() == Constants.ELEMNAME_FALLBACK) 65 transformer.pushElemTemplateElement(child); 66 ((ElemFallback) child).executeFallback(transformer); 78 * Return true if this extension element has a <xsl:fallback> child element. 80 * @return true if this extension element has a <xsl:fallback> child element. 84 for (ElemTemplateElement child = m_firstChild; child != null [all...] |
/external/valgrind/main/none/tests/ |
allexec32.stdout.exp | 3 child exited 5 child exited 7 child exited 10 child exited 12 child exited 14 child exited
|
allexec64.stdout.exp | 3 child exited 5 child exited 7 child exited 10 child exited 12 child exited 14 child exited
|
/external/chromium_org/ui/aura/ |
layout_manager.h | 18 // An interface implemented by an object that places child windows. 27 // Invoked when the window |child| has been added. 28 virtual void OnWindowAddedToLayout(Window* child) = 0; 31 virtual void OnWillRemoveWindowFromLayout(Window* child) = 0; 34 virtual void OnWindowRemovedFromLayout(Window* child) = 0; 36 // Invoked when the |SetVisible()| is invoked on the window |child|. 40 virtual void OnChildWindowVisibilityChanged(Window* child, bool visible) = 0; 42 // Invoked when |Window::SetBounds| is called on |child|. 44 // |child|'s bounds. LayoutManager may modify |requested_bounds| 46 virtual void SetChildBounds(Window* child, [all...] |
layout_manager.cc | 17 void LayoutManager::SetChildBoundsDirect(aura::Window* child, 19 child->SetBoundsInternal(bounds);
|
/external/chromium_org/third_party/WebKit/Source/web/tests/ |
ImageFilterBuilderTest.cpp | 97 SkImageFilter* child = filter->getInput(0); // Should be Merge local 98 EXPECT_EQ(child->asColorFilter(0), false); 99 EXPECT_EQ(child->countInputs(), 2); 100 child = child->getInput(1); // Should be CS (D->L) 101 EXPECT_EQ(child->asColorFilter(0), true); 102 EXPECT_EQ(child->countInputs(), 1); 103 child = child->getInput(0); // Should be Blend 104 EXPECT_EQ(child->asColorFilter(0), false) [all...] |
/external/chromium_org/ui/v2/src/ |
layout.cc | 17 void Layout::SetChildBounds(View* child, 19 SetChildBoundsDirect(child, requested_bounds); 25 void Layout::SetChildBoundsDirect(View* child, const gfx::Rect& bounds) { 26 ViewPrivate(child).set_bounds(bounds);
|
/external/jmonkeyengine/engine/src/core/com/jme3/scene/ |
Node.java | 103 for (Spatial child : children.getArray()){ 104 if ((child.refreshFlags & RF_TRANSFORM) != 0) 107 child.setTransformRefresh(); 114 for (Spatial child : children.getArray()){ 115 if ((child.refreshFlags & RF_LIGHTLIST) != 0) 118 child.setLightListRefresh(); 129 for (Spatial child : children.getArray()) { 130 // child bound is assumed to be updated 131 assert (child.refreshFlags & RF_BOUND) == 0; 133 // merge current world bound with child world boun 332 Spatial child = children.get(x); local 351 Spatial child = children.remove(index); local [all...] |
/external/chromium_org/ash/wm/ |
status_area_layout_manager.cc | 35 void StatusAreaLayoutManager::OnWindowAddedToLayout(aura::Window* child) { 39 aura::Window* child) { 42 void StatusAreaLayoutManager::OnWindowRemovedFromLayout(aura::Window* child) { 46 aura::Window* child, bool visible) { 50 aura::Window* child, 52 // Only need to have the shelf do a layout if the child changing is the status 54 if (child != shelf_->status_area_widget()->GetNativeView() || in_layout_) { 55 SetChildBoundsDirect(child, requested_bounds); 61 if (requested_bounds == child->bounds()) 64 SetChildBoundsDirect(child, requested_bounds) [all...] |
/external/chromium_org/third_party/WebKit/Source/core/svg/ |
SVGAltGlyphItemElement.cpp | 51 for (Node* child = firstChild(); child; child = child->nextSibling()) { 52 if (child->hasTagName(SVGNames::glyphRefTag)) { 54 if (toSVGGlyphRefElement(child)->hasValidGlyphElement(referredGlyphName))
|
SVGAltGlyphDefElement.cpp | 91 for (Node* child = firstChild(); child; child = child->nextSibling()) { 92 if (!foundFirstAltGlyphItem && child->hasTagName(SVGNames::glyphRefTag)) { 96 if (toSVGGlyphRefElement(child)->hasValidGlyphElement(referredGlyphName)) 106 } else if (!fountFirstGlyphRef && child->hasTagName(SVGNames::altGlyphItemTag)) { 112 if (static_cast<SVGAltGlyphItemElement*>(child)->hasValidGlyphElements(glyphNames) && !glyphNames.isEmpty())
|
/external/droiddriver/src/com/google/android/droiddriver/finders/ |
ChainFinder.java | 24 * for the child Finder. 28 private final Finder child; field in class:ChainFinder 30 protected ChainFinder(Finder parent, Finder child) { 32 this.child = Preconditions.checkNotNull(child); 37 return String.format("ChainFinder{%s, %s}", parent, child); 42 return child.find(parent.find(context));
|
/external/chromium_org/third_party/WebKit/Source/core/editing/ |
RemoveNodePreservingChildrenCommand.cpp | 45 for (Node* child = m_node->firstChild(); child; child = child->nextSibling()) 46 children.append(child); 50 RefPtr<Node> child = children[i].release(); local 51 removeNode(child, m_shouldAssumeContentIsAlwaysEditable); 52 insertNodeBefore(child.release(), m_node, m_shouldAssumeContentIsAlwaysEditable);
|
/external/chromium_org/ui/v2/public/ |
layout.h | 19 virtual void SetChildBounds(View* child, 23 // Sets the specified |bounds| on |child| without consulting layout. 24 void SetChildBoundsDirect(View* child, const gfx::Rect& bounds);
|
/external/chromium_org/base/process/ |
kill_mac.cc | 22 // Reap |child| process. This call blocks until completion. 23 void BlockingReap(pid_t child) { 24 const pid_t result = HANDLE_EINTR(waitpid(child, NULL, 0)); 26 DPLOG(ERROR) << "waitpid(" << child << ", NULL, 0)"; 30 // Waits for |timeout| seconds for the given |child| to exit and reap it. If 31 // the child doesn't exit within the time specified, kills it. 37 // the exited child. If the kqueue doesn't provide an exit event notification, 41 // A child process passed to this function may be in one of several states: 51 // collects the known-dying child, preventing zombies from congregating. 55 // function will forcibly kill and reap the child without delay. Thi [all...] |
/external/chromium_org/sandbox/win/src/ |
policy_broker.h | 19 bool SetupNtdllImports(TargetProcess *child);
|
/external/valgrind/main/memcheck/tests/ |
noisy_child.c | 22 pid_t child; local 29 child = fork(); 30 assert(child != -1); /* assert fork did not fail */ 32 if (child == 0) { 33 /* I am the child */
|
/external/chromium_org/ash/system/chromeos/ |
label_tray_view.cc | 46 HoverHighlightView* child = new HoverHighlightView(click_listener_); local 50 child->AddIconAndLabel(*icon, message, gfx::Font::NORMAL); 51 child->set_border( 54 child->text_label()->SetMultiLine(true); 55 child->text_label()->SizeToFit(kTrayNotificationContentsWidth); 57 child->AddLabel(message, gfx::Font::NORMAL); 58 child->text_label()->SetMultiLine(true); 59 child->text_label()->SizeToFit(kTrayNotificationContentsWidth + 62 child->text_label()->SetAllowCharacterBreak(true); 63 child->SetExpandable(true) [all...] |
/external/valgrind/main/helgrind/tests/ |
tc01_simple_race.c | 6 /* Simple test program, has a race. Parent and child both modify x 21 pthread_t child; local 22 if (pthread_create(&child, NULL, child_fn, NULL)) { 27 /* Unprotected relative to child */ 30 if (pthread_join(child, NULL)) {
|
tc02_simple_tls.c | 6 /* Simple test program, no race: parent only modified x after child 14 /* Unprotected relative to parent, but in child's segment only */ 21 pthread_t child; local 25 if (pthread_create(&child, NULL, child_fn, NULL)) { 30 if (pthread_join(child, NULL)) {
|