Searched defs:child (Results 276 - 300 of 543) sorted by relevance

<<11121314151617181920>>

/external/webkit/Source/WebCore/bindings/v8/
H A DV8DOMWrapper.cpp190 void V8DOMWrapper::setNamedHiddenReference(v8::Handle<v8::Object> parent, const char* name, v8::Handle<v8::Value> child) argument
192 parent->SetHiddenValue(V8HiddenPropertyName::hiddenReferenceName(name), child); local
/external/webkit/Source/WebCore/bridge/qt/
H A Dqt_runtime.h59 QtField(QObject *child) argument
60 : m_type(ChildObject), m_childObject(child)
/external/webkit/Source/WebCore/html/
H A DHTMLOptionElement.cpp118 // Handle the common special case where there's exactly 1 child node, and it's a text node.
119 Node* child = firstChild(); local
120 if (child && child->isTextNode() && !child->nextSibling()) {
121 static_cast<Text *>(child)->setData(text, ec);
/external/webkit/Source/WebCore/platform/graphics/
H A DGlyphPageTreeNode.cpp353 GlyphPageTreeNode* child = fontData ? m_children.get(fontData) : m_systemFallbackChild; local
354 if (!child) {
355 child = new GlyphPageTreeNode;
356 child->m_parent = this;
357 child->m_level = m_level + 1;
364 child->m_pageNumber = m_pageNumber;
367 m_children.set(fontData, child);
368 fontData->setMaxGlyphPageTreeLevel(max(fontData->maxGlyphPageTreeLevel(), child->m_level));
370 m_systemFallbackChild = child;
371 child
[all...]
/external/webkit/Source/WebCore/rendering/
H A DFixedTableLayout.cpp85 RenderObject* child = m_table->firstChild(); local
92 while (child && child->isTableCol()) {
93 RenderTableCol* col = toRenderTableCol(child);
131 RenderObject* next = child->firstChild();
133 next = child->nextSibling();
134 if (!next && child->parent()->isTableCol()) {
135 next = child->parent()->nextSibling();
138 child = next;
152 child
[all...]
H A DRenderLineBoxList.cpp315 void RenderLineBoxList::dirtyLinesFromChangedChild(RenderObject* container, RenderObject* child) argument
337 for (curr = child->previousSibling(); curr; curr = curr->previousSibling()) {
377 if (adjacentBox && (adjacentBox->lineBreakObj() == child || child->isBR() || (curr && curr->isBR())))
388 for (const InlineFlowBox* child = m_firstLineBox; child != 0; child = child->nextLineBox()) {
389 ASSERT(child->prevLineBox() == prev);
390 prev = child;
[all...]
H A DRenderRubyRun.cpp75 RenderObject* child = firstChild(); local
76 return child && child->isRubyText() ? static_cast<RenderRubyText*>(child) : 0;
81 RenderObject* child = lastChild(); local
82 return child && child->isRubyBase() ? static_cast<RenderRubyBase*>(child) : 0;
104 bool RenderRubyRun::isChildAllowed(RenderObject* child, RenderStyle*) const argument
106 return child
109 addChild(RenderObject* child, RenderObject* beforeChild) argument
153 removeChild(RenderObject* child) argument
[all...]
/external/webkit/Source/WebCore/rendering/mathml/
H A DRenderMathMLRoot.cpp72 void RenderMathMLRoot::addChild(RenderObject* child, RenderObject* ) argument
90 block->addChild(child);
93 firstChild()->addChild(child);
/external/webkit/Source/WebCore/rendering/svg/
H A DRenderSVGText.cpp60 bool RenderSVGText::isChildAllowed(RenderObject* child, RenderStyle*) const argument
62 return child->isInline();
102 for (RenderObject* child = start->firstChild(); child; child = child->nextSibling()) {
103 if (child->isSVGInlineText()) {
104 toRenderSVGInlineText(child)->updateScaledFont();
108 recursiveUpdateScaledFont(child);
155 // FIXME: We need to find a way to only layout the child boxe
[all...]
/external/webkit/Source/WebCore/svg/
H A DSVGElement.cpp287 Node* child = firstChild(); local
288 while (child) {
289 if (child->isSVGElement() && !static_cast<SVGElement*>(child)->haveLoadedRequiredResources())
291 child = child->nextSibling();
334 bool SVGElement::childShouldCreateRenderer(Node* child) const
336 if (child->isSVGElement())
337 return static_cast<SVGElement*>(child)->isValid();
/external/webkit/Source/WebCore/wml/
H A DWMLTableElement.cpp130 Node* child = children->item(i); local
131 if (child->hasTagName(tagName))
132 childElements.append(static_cast<WMLElement*>(child));
/external/webkit/Source/WebCore/xml/
H A DXSLStyleSheetLibxslt.cpp163 // ensure that all child stylesheets use the same dictionaries as their
279 XSLStyleSheet* child = import->styleSheet(); local
280 if (!child)
283 if (child->processed())
286 // Check the URI of the child stylesheet against the doc URI.
297 child->markAsProcessed();
298 return child->document();
/external/webkit/Source/WebKit/gtk/tests/
H A Dtestatkroles.c92 AtkObject* child; local
95 child = atk_object_ref_accessible_child(obj, pos);
96 g_assert(child);
97 child_role = atk_object_get_role(child);
100 g_object_unref(child);
/external/webkit/Source/WebKit2/UIProcess/
H A DWebFrameProxy.cpp189 void WebFrameProxy::appendChild(WebFrameProxy* child) argument
191 ASSERT(child->page() == page());
192 ASSERT(!child->m_parentFrame);
193 ASSERT(!child->m_nextSibling);
194 ASSERT(!child->m_previousSibling);
196 child->m_parentFrame = this;
199 m_lastChild = child;
203 child->m_previousSibling = oldLast;
204 oldLast->m_nextSibling = child;
206 m_firstChild = child;
209 removeChild(WebFrameProxy* child) argument
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/84/1/.cp/ant_tasks/
H A DmetadataRepository-ant.jar ... .net.URI location java.net.URI child public void " href="/4.2_r1/s?defs= ...
/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3commontreenodestream.c868 pANTLR3_BASE_TREE child; local
870 child = p->getChild(p, c);
871 tns->toStringWork(tns, child, stop, buf);
917 /// Replace from start to stop child index of parent with t, which might
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
H A DDebugEventSocketProxy.cs342 public override void AddChild(object root, object child) { argument
344 int childID = adaptor.GetUniqueID(child);
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
H A DDebugEventSocketProxy.java308 public void addChild(Object root, Object child) { argument
310 int childID = adaptor.getUniqueID(child);
/external/chromium/base/
H A Dfile_util.cc249 bool ContainsPath(const FilePath &parent, const FilePath& child) { argument
251 FilePath abs_child = FilePath(child);
/external/chromium/chrome/browser/accessibility/
H A Daccessibility_win_browsertest.cc57 // a child IAccessible. Order is important.
137 // Sets result to true if the child is located in the parent's tree. An
139 // IAccessible2::get_unique_id which is only supported by the child node.
141 IAccessible* parent, IAccessible2* child, bool* result) {
146 HRESULT hr = child->get_uniqueID(&unique_id);
315 VARIANT* child = child_array.get(); local
318 ++child_checker, ++child) {
320 child_accessible.Attach(GetAccessibleFromResultVariant(parent, child));
140 AccessibleContainsAccessible( IAccessible* parent, IAccessible2* child, bool* result) argument
/external/chromium/chrome/browser/chromeos/frame/
H A Dbrowser_view.cc244 // not to a NonClientFrameView because a TabStrip is not a child of
300 void BrowserView::ChildPreferredSizeChanged(View* child) { argument
/external/chromium/chrome/browser/chromeos/notifications/
H A Dballoon_view.cc268 bool is_add, View* parent, View* child) {
280 if (!is_add && this == child && control_view_host_.get() && controls_) {
267 ViewHierarchyChanged( bool is_add, View* parent, View* child) argument
/external/chromium/chrome/browser/extensions/
H A Dextension_menu_manager.cc44 ExtensionMenuItem* child = NULL; local
46 child = *i;
48 return child;
50 child = (*i)->ReleaseChild(child_id, recursive);
51 if (child)
52 return child;
61 ExtensionMenuItem* child = *i; local
62 result.insert(child->id());
63 std::set<Id> removed = child->RemoveAllDescendants();
152 ExtensionMenuItem* child) {
151 AddChildItem(const ExtensionMenuItem::Id& parent_id, ExtensionMenuItem* child) argument
185 ExtensionMenuItem* child = GetItemById(child_id); local
260 ExtensionMenuItem* child = (*j)->ReleaseChild(id, true /* recursive */); local
[all...]
/external/chromium/chrome/browser/ui/gtk/
H A Dgtk_tree.cc58 GtkTreeIter child; local
59 if (gtk_tree_model_iter_children(GTK_TREE_MODEL(tree_store), &child, iter)) {
61 if (!RemoveRecursively(tree_store, &child))
/external/chromium/chrome/browser/ui/touch/tabs/
H A Dtouch_tab_strip.cc359 View* child) {
360 if (!is_add && last_tapped_view_ == child)
357 ViewHierarchyChanged(bool is_add, View* parent, View* child) argument

Completed in 476 milliseconds

<<11121314151617181920>>