Searched defs:parent (Results 176 - 200 of 1053) sorted by relevance

1234567891011>>

/external/webkit/Source/WebCore/rendering/
H A DEllipsisBox.h32 EllipsisBox(RenderObject* obj, const AtomicString& ellipsisStr, InlineFlowBox* parent, argument
34 : InlineBox(obj, 0, y, width, firstLine, true, false, false, isVertical, 0, 0, parent)
/external/webkit/Source/WebCore/rendering/svg/
H A DSVGResourcesCycleSolver.cpp111 // Add all parent resource containers to the HashSet.
113 RenderObject* parent = m_renderer->parent(); local
114 while (parent) {
115 if (parent->isSVGResourceContainer())
116 parentResources.add(parent->toRenderSVGResourceContainer());
117 parent = parent->parent();
135 // Build combined set of local and parent resource
[all...]
/external/webkit/Source/WebCore/wml/
H A DWMLOnEventElement.cpp68 static inline WMLEventHandlingElement* eventHandlingParent(Node* parent) argument
70 if (!parent || !parent->isWMLElement())
73 return toWMLEventHandlingElement(static_cast<WMLElement*>(parent));
H A DWMLSetvarElement.cpp63 ContainerNode* parent = parentNode(); local
64 if (!parent || !parent->isWMLElement())
67 if (static_cast<WMLElement*>(parent)->isWMLTaskElement())
68 static_cast<WMLTaskElement*>(parent)->registerVariableSetter(this);
73 ContainerNode* parent = parentNode(); local
74 if (parent && parent->isWMLElement()) {
75 if (static_cast<WMLElement*>(parent)->isWMLTaskElement())
76 static_cast<WMLTaskElement*>(parent)
[all...]
H A DWMLTaskElement.cpp50 ContainerNode* parent = parentNode(); local
51 if (!parent || !parent->isWMLElement())
54 if (parent->hasTagName(anchorTag))
55 static_cast<WMLAnchorElement*>(parent)->registerTask(this);
56 else if (parent->hasTagName(doTag))
57 static_cast<WMLDoElement*>(parent)->registerTask(this);
58 else if (parent->hasTagName(oneventTag))
59 static_cast<WMLOnEventElement*>(parent)->registerTask(this);
64 ContainerNode* parent local
[all...]
/external/webkit/Source/WebCore/xml/
H A DXSLImportRule.cpp33 XSLImportRule::XSLImportRule(XSLStyleSheet* parent, const String& href) argument
34 : StyleBase(parent)
52 return (parent() && parent()->isXSLStyleSheet()) ? static_cast<XSLStyleSheet*>(parent()) : 0;
62 XSLStyleSheet* parent = parentStyleSheet(); local
63 if (parent)
64 m_styleSheet->setParentStyleSheet(parent);
69 if (parent)
70 parent
82 StyleBase* parent; local
[all...]
/external/webkit/Source/WebKit/android/jni/
H A DWebHistory.h56 WebHistoryItem(WebHistoryItem* parent) argument
61 , m_parent(parent)
72 void setParent(WebHistoryItem* parent) { m_parent = parent; } argument
73 WebHistoryItem* parent() const { return m_parent.get(); } function in class:android::WebHistoryItem
/external/webkit/Tools/DumpRenderTree/qt/
H A DTextInputControllerQt.cpp37 TextInputController::TextInputController(QWebPage* parent) argument
38 : QObject(parent)
128 QApplication::sendEvent(parent(), &event);
130 QApplication::sendEvent(parent(), &event2);
139 QApplication::sendEvent(parent(), &event);
147 QApplication::sendEvent(parent(), &event);
152 return DumpRenderTreeSupportQt::selectedRange(qobject_cast<QWebPage*>(parent()));
157 return DumpRenderTreeSupportQt::firstRectForCharacterRange(qobject_cast<QWebPage*>(parent()), location, length);
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
H A Deventhistory.cpp76 EventHistory::EventHistory(QWidget *parent, const char *, bool, Qt::WFlags) argument
77 : QDialog(parent)
85 elm = new EventListModel(parent);
/external/antlr/antlr-3.4/runtime/C/include/
H A Dantlr3commontree.h69 pANTLR3_COMMON_TREE parent; member in struct:ANTLR3_COMMON_TREE_struct
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
H A DCommonTree.cs40 * parent and child index is very difficult and cumbersome. Better to
59 /** <summary>Who is the parent node of this node; if null, implies node is root</summary> */
60 CommonTree parent; field in class:Antlr.Runtime.Tree.CommonTree
126 return parent;
129 parent = (CommonTree)value;
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
H A DCommonTree.cs40 * parent and child index is very difficult and cumbersome. Better to
59 /** <summary>Who is the parent node of this node; if null, implies node is root</summary> */
60 CommonTree parent; field in class:Antlr.Runtime.Tree.CommonTree
153 return parent;
158 parent = (CommonTree)value;
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
H A DTreeNodeStream.java95 /** Replace from start to stop child index of parent with t, which might
102 * If parent is null, don't do anything; must be at root of overall tree.
103 * Can't replace whatever points to the parent externally. Do nothing.
105 public void replaceChildren(Object parent, int startChildIndex, int stopChildIndex, Object t); argument
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
H A DCompositeGrammarTree.java38 /** Who is the parent node of this node; if null, implies node is root */
39 public CompositeGrammarTree parent; field in class:CompositeGrammarTree
54 t.parent = this;
79 if ( parent!=null ) {
80 return parent.getOption(key);
148 if ( p.grammar.type == Grammar.LEXER && p.parent!=null &&
149 p.parent.grammar.type == Grammar.COMBINED )
151 //System.out.println("wacking "+p.grammar.name+" from "+p.parent.grammar.name);
152 p.parent.children.remove(this);
/external/apache-xml/src/main/java/org/apache/xalan/templates/
H A DStylesheetComposed.java52 * @param parent The including or importing stylesheet.
54 public StylesheetComposed(Stylesheet parent) argument
56 super(parent);
/external/blktrace/
H A Drbtree.c28 struct rb_node *parent = rb_parent(node); local
34 rb_set_parent(right, parent);
36 if (parent)
38 if (node == parent->rb_left)
39 parent->rb_left = right;
41 parent->rb_right = right;
51 struct rb_node *parent = rb_parent(node); local
57 rb_set_parent(left, parent);
59 if (parent)
61 if (node == parent
73 struct rb_node *parent, *gparent; local
136 __rb_erase_color(struct rb_node *node, struct rb_node *parent, struct rb_root *root) argument
224 struct rb_node *child, *parent; local
318 struct rb_node *parent; local
346 struct rb_node *parent; local
371 struct rb_node *parent = rb_parent(victim); local
[all...]
H A Drbtree.h59 struct rb_node * parent = NULL;
64 parent = *p;
65 page = rb_entry(parent, struct page, rb_page_cache);
75 rb_link_node(node, parent, p);
156 static inline void rb_link_node(struct rb_node * node, struct rb_node * parent, argument
159 node->rb_parent_color = (unsigned long )parent;
/external/chromium/chrome/browser/chromeos/frame/
H A Ddom_browser_view_layout.cc62 views::View* parent = browser_view_->parent(); local
65 parent, browser_view_, &point_in_browser_view_coords);
/external/chromium/chrome/browser/chromeos/login/
H A Dmessage_bubble.cc24 views::Widget* parent,
31 parent_(parent),
107 MessageBubble* MessageBubble::Show(views::Widget* parent, argument
116 views::WidgetGtk::TYPE_WINDOW, parent, image, text, help, true, delegate);
117 bubble->InitBubble(parent, position_relative_to, arrow_location,
118 bubble->text_->parent(), delegate);
124 views::Widget* parent,
133 views::WidgetGtk::TYPE_CHILD, parent, image, text, help, false, delegate);
134 bubble->InitBubble(parent, position_relative_to, arrow_location,
135 bubble->text_->parent(), delegat
23 MessageBubble(views::WidgetGtk::Type type, views::Widget* parent, SkBitmap* image, const std::wstring& text, const std::wstring& help, bool grab_enabled, MessageBubbleDelegate* delegate) argument
123 ShowNoGrab( views::Widget* parent, const gfx::Rect& position_relative_to, BubbleBorder::ArrowLocation arrow_location, SkBitmap* image, const std::wstring& text, const std::wstring& help, MessageBubbleDelegate* delegate) argument
[all...]
H A Dpassword_changed_view.cc76 views::View* parent,
75 ViewHierarchyChanged(bool is_add, views::View* parent, views::View* child) argument
/external/chromium/chrome/browser/chromeos/options/
H A Dnetwork_config_view.cc118 bool is_add, views::View* parent, views::View* child) {
120 // a HWND to parent native child controls to.
117 ViewHierarchyChanged( bool is_add, views::View* parent, views::View* child) argument
/external/chromium/chrome/browser/
H A Dfile_select_helper.h50 DirectoryListerDispatchDelegate(FileSelectHelper* parent, int id) argument
51 : parent_(parent),
H A Dfullscreen_linux.cc28 XID root, parent, *children; local
30 int status = XQueryTree(ui::GetXDisplay(), window, &root, &parent,
H A Dplatform_util_common_linux.cc83 void SimpleErrorBox(gfx::NativeWindow parent, argument
86 GtkWidget* dialog = gtk_message_dialog_new(parent, GTK_DIALOG_MODAL,
95 bool SimpleYesNoBox(gfx::NativeWindow parent, argument
98 GtkWidget* dialog = gtk_message_dialog_new(parent, GTK_DIALOG_MODAL,
/external/chromium/chrome/browser/ui/gtk/extensions/
H A Dextension_uninstall_dialog_gtk.cc39 void ShowUninstallDialogGtk(GtkWindow* parent, argument
46 parent,

Completed in 798 milliseconds

1234567891011>>