Searched refs:child (Results 276 - 300 of 1690) sorted by relevance

<<11121314151617181920>>

/external/lldb/test/pexpect-2.4/examples/
H A Dchess2.py15 self.child = pexpect.spawn (engine)
18 #self.child.expect ('Chess')
19 #if self.child.after != 'Chess':
21 #self.term.process_list (self.child.before)
22 #self.term.process_list (self.child.after)
33 k = self.child.read(1, 10)
58 c = self.child.read(1,10)
68 self.child.sendline (move)
92 self.child.sendline ('switch')
95 self.child
[all...]
/external/sfntly/cpp/src/test/tinyxml/
H A Dtinyxml.cpp305 // A document can never be a child. Thanks to Noam.
819 // 2) An element with only a text child is printed as <foo> text </foo>
902 const TiXmlNode* child = this->FirstChild(); local
903 if ( child ) {
904 const TiXmlText* childText = child->ToText();
1636 TiXmlNode* child = node->FirstChild();
1637 if ( child )
1638 return TiXmlHandle( child );
1648 TiXmlNode* child = node->FirstChild( value );
1649 if ( child )
[all...]
/external/skia/src/views/
H A DSkViewInflate.cpp26 const SkDOM::Node* child = dom.getFirstChild(node); local
27 while (child)
29 SkView* view = this->createView(dom, child);
32 this->rInflate(dom, child, view);
37 const char* name = dom.getName(child);
40 if (!strcmp(name, "listenTo") && (target = dom.findAttr(child, "target")) != NULL)
43 if (!strcmp(name, "broadcastTo") && (target = dom.findAttr(child, "target")) != NULL)
46 child = dom.getNextSibling(child);
/external/tinyxml/
H A Dtinyxml.cpp785 // 2) An element with only a text child is printed as <foo> text </foo>
884 const TiXmlNode* child = this->FirstChild(); local
885 if ( child ) {
886 const TiXmlText* childText = child->ToText();
1621 TiXmlNode* child = node->FirstChild(); local
1622 if ( child )
1623 return TiXmlHandle( child );
1633 TiXmlNode* child = node->FirstChild( value ); local
1634 if ( child )
1635 return TiXmlHandle( child );
1645 TiXmlElement* child = node->FirstChildElement(); local
1657 TiXmlElement* child = node->FirstChildElement( value ); local
1670 TiXmlNode* child = node->FirstChild(); local
1689 TiXmlNode* child = node->FirstChild( value ); local
1708 TiXmlElement* child = node->FirstChildElement(); local
1727 TiXmlElement* child = node->FirstChildElement( value ); local
[all...]
/external/chromium_org/ash/wm/
H A Dsystem_modal_container_layout_manager.cc70 aura::Window* child) {
71 DCHECK((modal_background_ && child == modal_background_->GetNativeView()) ||
72 child->type() == ui::wm::WINDOW_TYPE_NORMAL ||
73 child->type() == ui::wm::WINDOW_TYPE_POPUP);
78 child->AddObserver(this);
79 if (child->GetProperty(aura::client::kModalKey) != ui::MODAL_TYPE_NONE)
80 AddModalWindow(child);
84 aura::Window* child) {
85 child->RemoveObserver(this);
86 if (child
69 OnWindowAddedToLayout( aura::Window* child) argument
83 OnWillRemoveWindowFromLayout( aura::Window* child) argument
90 SetChildBounds( aura::Window* child, const gfx::Rect& requested_bounds) argument
[all...]
/external/chromium_org/media/formats/mp4/
H A Dbox_reader.cc175 BoxReader child(&buf_[pos_], size_ - pos_, log_cb_);
176 if (!child.ReadHeader(&err)) break;
178 children_.insert(std::pair<FourCC, BoxReader>(child.type(), child));
179 pos_ += child.size();
186 bool BoxReader::HasChild(Box* child) { argument
188 DCHECK(child);
189 return children_.count(child->BoxType()) > 0;
192 bool BoxReader::ReadChild(Box* child) { argument
194 FourCC child_type = child
204 MaybeReadChild(Box* child) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/compositing/
H A DCompositingInputsUpdater.cpp173 for (RenderLayer* child = layer->firstChild(); child; child = child->nextSibling()) {
174 updateRecursive(child, updateType, info);
176 descendantProperties.hasDescendantWithClipPath |= child->hasDescendantWithClipPath() || child->renderer()->hasClipPath();
177 descendantProperties.hasDescendantWithBlendMode |= child->hasDescendantWithBlendMode() || child->renderer()->hasBlendMode();
193 for (RenderLayer* child
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
H A DViewportDataGrid.js261 * @param {!WebInspector.DataGridNode} child
264 insertChild: function(child, index)
266 child.parent = this;
267 child.dataGrid = this.dataGrid;
268 this.children.splice(index, 0, child);
269 child.recalculateSiblings(index);
275 * @param {!WebInspector.DataGridNode} child
277 removeChild: function(child)
279 child.deselect();
280 this.children.remove(child, tru
[all...]
/external/chromium_org/ui/webui/resources/js/cr/ui/
H A Dtabs.js56 for (var i = 0; child = children[i]; i++) {
57 cr.ui.decorate(child, constr);
68 var child, tabChild, element;
71 for (var i = 0; child = element.children[i]; i++) {
72 child.selected = i == selectedIndex;
78 for (var i = 0; child = element.children[i]; i++) {
79 child.selected = i == selectedIndex;
/external/fio/lib/
H A Drbtree.c224 struct rb_node *child, *parent; local
228 child = node->rb_right;
230 child = node->rb_left;
238 child = node->rb_right;
242 if (child)
243 rb_set_parent(child, parent);
245 parent->rb_right = child;
248 parent->rb_left = child;
272 if (child)
273 rb_set_parent(child, paren
[all...]
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
H A DGrammarAST.java77 * purposes (Nullable tree child list needs special code gen when matching).
290 Tree child = getChild(0);
291 if ( child!=null ) {
292 line = child.getLine();
305 Tree child = getChild(0);
306 if ( child!=null ) {
307 col = child.getCharPositionInLine();
368 Tree child = root.getChild(i);
369 for (Tree subchild : descendants(child, true))
377 Tree child
[all...]
/external/chromium_org/ash/wm/workspace/
H A Dworkspace_layout_manager.h63 virtual void OnWindowAddedToLayout(aura::Window* child) OVERRIDE;
64 virtual void OnWillRemoveWindowFromLayout(aura::Window* child) OVERRIDE;
65 virtual void OnWindowRemovedFromLayout(aura::Window* child) OVERRIDE;
66 virtual void OnChildWindowVisibilityChanged(aura::Window* child,
68 virtual void SetChildBounds(aura::Window* child,
127 void SetChildBoundsAnimated(aura::Window* child, const gfx::Rect& bounds);
/external/chromium_org/chrome/browser/resources/signin_internals/
H A Dsignin_index.css42 tr:nth-child(odd) {
46 table.signin-details tr:nth-child(odd).ok {
74 tr[highlighted]:nth-child(odd) {
/external/chromium_org/tools/android/md5sum/
H A Dmd5sum.cc59 for (base::FilePath child, empty;
60 (child = file_enumerator.Next()) != empty; ) {
62 if (child.value().find(svn_dir_component) == std::string::npos) {
63 child = base::MakeAbsoluteFilePath(child);
64 file_set.insert(child.value());
/external/chromium_org/ui/views/widget/
H A Dnative_widget_aura_unittest.cc110 virtual void OnWindowAddedToLayout(aura::Window* child) OVERRIDE {}
111 virtual void OnWillRemoveWindowFromLayout(aura::Window* child) OVERRIDE {}
112 virtual void OnWindowRemovedFromLayout(aura::Window* child) OVERRIDE {}
113 virtual void OnChildWindowVisibilityChanged(aura::Window* child,
115 virtual void SetChildBounds(aura::Window* child,
130 virtual void OnWindowAddedToLayout(aura::Window* child) OVERRIDE {
132 SetChildBoundsDirect(child, gfx::Rect(0, 0, 300, 300));
194 virtual void OnWindowAddedToLayout(aura::Window* child) OVERRIDE {
195 EXPECT_TRUE(child->GetProperty(aura::client::kCanMaximizeKey));
196 EXPECT_TRUE(child
310 GestureTrackingView* child = new GestureTrackingView(); local
[all...]
/external/chromium_org/ui/wm/core/
H A Dtransient_window_stacking_client.cc94 Window** child,
98 TransientWindowManager::Get(static_cast<const Window*>(*child));
105 FindCommonTransientAncestor(child, target);
109 !HasTransientAncestor(*child, *target)) {
110 const Window::Windows& siblings((*child)->parent()->children());
128 return *child != *target;
93 AdjustStacking( Window** child, Window** target, Window::StackDirection* direction) argument
/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3basetreeadaptor.c49 static void addChild (pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_TREE t, pANTLR3_BASE_TREE child);
50 static void dbgAddChild (pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_TREE t, pANTLR3_BASE_TREE child);
54 static void addChildToken (pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_TREE t, pANTLR3_COMMON_TOKEN child);
55 static void dbgAddChildToken (pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_TREE t, pANTLR3_COMMON_TOKEN child);
166 pANTLR3_BASE_TREE child; local
181 // This will already have been included as a child of another node
187 // For each child of the current tree, define a node using the
193 // Pick up a pointer for the child
195 child = adaptor->getChild(adaptor, t, i);
199 sprintf(buff, "\tn%p[label=\"", child);
271 pANTLR3_BASE_TREE child; local
470 pANTLR3_BASE_TREE child; local
504 pANTLR3_BASE_TREE child; local
548 addChild(pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_TREE t, pANTLR3_BASE_TREE child) argument
556 dbgAddChild(pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_TREE t, pANTLR3_BASE_TREE child) argument
567 addChildToken(pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_TREE t, pANTLR3_COMMON_TOKEN child) argument
575 dbgAddChildToken(pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_TREE t, pANTLR3_COMMON_TOKEN child) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLObjectElement.cpp216 for (Node* child = firstChild(); child; child = child->nextSibling()) {
218 if (child->isTextNode()) {
219 if (!toText(child)->containsOnlyWhitespace())
221 } else if (!isHTMLParamElement(*child)) {
416 for (HTMLElement* child = Traversal<HTMLElement>::firstChild(*this); child; child
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DRenderSVGRoot.cpp286 bool RenderSVGRoot::isChildAllowed(RenderObject* child, RenderStyle*) const argument
288 return child->isSVG() && !(child->isSVGInline() || child->isSVGInlineText());
291 void RenderSVGRoot::addChild(RenderObject* child, RenderObject* beforeChild) argument
293 RenderReplaced::addChild(child, beforeChild);
294 SVGResourcesCache::clientWasAddedToTree(child, child->style());
297 void RenderSVGRoot::removeChild(RenderObject* child) argument
299 SVGResourcesCache::clientWillBeRemovedFromTree(child);
[all...]
/external/chromium_org/ui/views/controls/native/
H A Dnative_view_host_aura_unittest.cc21 // used to verify that the child and clipping window operations are done in the
86 Widget* child() { function in class:views::NativeViewHostAuraTest
110 aura::Window* child_win = child()->GetNativeView();
122 aura::Window* child_win = child()->GetNativeView();
149 child()->SetCursor(ui::kCursorWait);
252 aura::Window* child_win = child()->GetNativeView();
272 child()->GetNativeView()->AddObserver(&test_observer);
282 EXPECT_EQ(child()->GetNativeView(), test_observer.events()[1].window);
285 EXPECT_EQ(child()->GetNativeView(), test_observer.events()[2].window);
288 child()
[all...]
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
H A DBaseTree.java35 * instead of the child-sibling approach in v2. A flat tree (a list) is
83 /** Add t as child of this node.
85 * Warning: if t has no children, but child does
86 * and child isNil then this routine moves children to t via
87 * t.children = child.children; i.e., without copying the array.
90 //System.out.println("add child "+t.toStringTree()+" "+this.toStringTree());
98 throw new RuntimeException("attempt to add child list to itself");
107 // handle double-link stuff for each child of nil root
120 else { // child is not nil (don't care about children)
144 throw new IllegalArgumentException("Can't set single child t
[all...]
/external/chromium_org/chrome/browser/
H A Dchrome_plugin_interactive_test.cc44 HWND* child = reinterpret_cast<HWND*>(l_param); local
45 *child = hwnd;
46 // The first child window is the plugin, then its children. So stop
94 HWND child = NULL; local
96 EnumChildWindows(hwnd, EnumerateChildren,reinterpret_cast<LPARAM>(&child));
99 int result = GetWindowRgnBox(child, &region);
128 HWND child = NULL; local
129 EnumChildWindows(hwnd, EnumerateChildren,reinterpret_cast<LPARAM>(&child));
132 int result = GetWindowRgnBox(child, &region_before);
142 result = GetWindowRgnBox(child,
197 HWND child = NULL; local
[all...]
/external/chromium_org/third_party/skia/samplecode/
H A DSampleSkLayer.cpp177 SkLayer* child = new TestLayer(gData[i].fColor); local
178 child->setSize(gData[i].fWidth, gData[i].fHeight);
179 child->setPosition(gData[i].fPosX, gData[i].fPosY);
180 fRootLayer->addChild(child)->unref();
183 SkLayer* child = new TestLayer(0xFFDD8844); local
184 child->setSize(120, 80);
185 child->setPosition(fRootLayer->getWidth()/2 - child->getWidth()/2,
186 fRootLayer->getHeight()/2 - child->getHeight()/2);
187 child
[all...]
/external/skia/samplecode/
H A DSampleSkLayer.cpp177 SkLayer* child = new TestLayer(gData[i].fColor); local
178 child->setSize(gData[i].fWidth, gData[i].fHeight);
179 child->setPosition(gData[i].fPosX, gData[i].fPosY);
180 fRootLayer->addChild(child)->unref();
183 SkLayer* child = new TestLayer(0xFFDD8844); local
184 child->setSize(120, 80);
185 child->setPosition(fRootLayer->getWidth()/2 - child->getWidth()/2,
186 fRootLayer->getHeight()/2 - child->getHeight()/2);
187 child
[all...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
H A DTreeVisitor.cs54 * the child list of this node (their parent). Return result of
68 object child = adaptor.GetChild(t, i);
69 Visit(child, action);

Completed in 3148 milliseconds

<<11121314151617181920>>