/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/ |
BaseTree.java | 35 * 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 to a list") 209 BaseTree child = (BaseTree)newChildren.get(j); local 259 Tree child = (Tree)getChild(c); local 272 BaseTree child = (BaseTree)getChild(c); local 292 CommonTree child = (CommonTree)this.getChild(c); local [all...] |
TreeVisitor.java | 45 * If a child visit yields a new child, it can update its 46 * parent's child list or just return the new child. The 47 * child update code works even if the child visit alters its parent 59 Object child = adaptor.getChild(t, i); local 60 Object visitResult = visit(child, action); 62 if ( visitResult != childAfterVisit ) { // result & child differ?
|
/external/chromium_org/third_party/skia/samplecode/ |
SampleSkLayer.cpp | 177 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->setAnchorPoint(SK_ScalarHalf, SK_ScalarHalf) [all...] |
/external/skia/samplecode/ |
SampleSkLayer.cpp | 177 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->setAnchorPoint(SK_ScalarHalf, SK_ScalarHalf) [all...] |
/art/test/063-process-manager/src/ |
Main.java | 7 System.out.println("\nspawning child #" + i); 8 child(); method 15 static private void child() throws Exception { method in class:Main 16 System.out.println("spawning child"); 22 System.out.println("child died");
|
/bionic/libc/arch-mips/bionic/ |
__bionic_clone.S | 39 # set up child stack 57 # Clear return address in child so we don't unwind further.
|
/cts/tests/tests/view/src/android/view/cts/ |
MyScrollView.java | 64 protected void measureChildWithMargins(View child, int parentWidthMeasureSpec, int widthUsed, 66 super.measureChildWithMargins(child, parentWidthMeasureSpec, widthUsed,
|
/cts/tests/tests/widget/src/android/widget/cts/ |
MyScrollView.java | 64 protected void measureChildWithMargins(View child, int parentWidthMeasureSpec, int widthUsed, 66 super.measureChildWithMargins(child, parentWidthMeasureSpec, widthUsed,
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/ |
TreeVisitor.cs | 54 * the child list of this node (their parent). Return result of 68 object child = adaptor.GetChild(t, i); 69 Visit(child, action);
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/ |
TreeVisitor.cs | 56 * the child list of this node (their parent). Return result of 70 object child = adaptor.GetChild( t, i ); 71 Visit( child, action );
|
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/ |
BaseTreeAdaptor.js | 43 // ensure new subtree root has parent/child index set 47 i, child, newSubTree; 49 child = this.getChild(t, i); 50 newSubTree = this.dupTree(child, t); 56 /** Add a child to the tree t. If child is a flat tree (a list), make all 57 * in list children of t. Warning: if t has no children, but child does 58 * and child isNil then you can decide it is ok to move children to t via 59 * t.children = child.children; i.e., without copying the array. Just 63 addChild: function(t, child) { [all...] |
/external/chromium-trace/trace-viewer/src/ui/ |
list_and_associated_view.css | 15 x-list-and-associated-view > :nth-child(2) {
|
/external/chromium_org/ash/system/ |
status_area_widget_delegate.h | 51 virtual void ChildPreferredSizeChanged(views::View* child) OVERRIDE; 52 virtual void ChildVisibilityChanged(views::View* child) OVERRIDE;
|
/external/chromium_org/chrome/browser/resources/ |
identity_internals.css | 15 tr:nth-child(odd) {
|
/external/chromium_org/chrome/browser/resources/options/ |
import_data_overlay.css | 13 #import-checkboxes > div:not(:first-child) {
|
/external/chromium_org/chrome/browser/resources/quota_internals/ |
main.css | 18 tr:nth-child(odd) {
|
/external/chromium_org/chrome/browser/resources/sync_internals/ |
types.css | 20 #type-counters-table tr:nth-child(odd) {
|
/external/chromium_org/chrome/common/extensions/docs/examples/api/processes/show_tabs/ |
popup.css | 15 div:first-child {
|
/external/chromium_org/chrome/common/extensions/docs/server2/ |
manifest_features.py | 21 Features with names of the form 'parent.child' into the 'parent' Feature. 22 Child features are renamed to the 'child' section of their previous name.
|
/external/chromium_org/components/policy/core/browser/ |
managed_bookmarks_tracker.cc | 58 BookmarkNode* child = new BookmarkNode(next_node_id++, url); local 59 child->SetTitle(title); 60 folder->Add(child, folder->child_count()); 62 child->set_type(BookmarkNode::FOLDER); 63 child->set_date_folder_modified(base::Time::Now()); 64 next_node_id = LoadInitial(child, children, next_node_id); 66 child->set_type(BookmarkNode::URL); 67 child->set_date_added(base::Time::Now());
|
/external/chromium_org/ppapi/generators/ |
idl_visitor.py | 14 # passed to all children who's results are aggregated into a list. The child 33 for child in node.GetChildren(): 34 ret = self.Visit(child, newdata)
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
OrderIterator.cpp | 87 void OrderIteratorPopulator::collectChild(const RenderBox* child) 89 m_iterator.m_orderValues.insert(child->style()->order());
|
RenderDeprecatedFlexibleBox.h | 52 void placeChild(RenderBox* child, const LayoutPoint& location); 58 LayoutUnit allowedChildFlex(RenderBox* child, bool expanding, unsigned group);
|
RenderRubyRun.h | 58 virtual void addChild(RenderObject* child, RenderObject* beforeChild = 0) OVERRIDE; 59 virtual void removeChild(RenderObject* child) OVERRIDE;
|
RenderRubyText.cpp | 49 bool RenderRubyText::isChildAllowed(RenderObject* child, RenderStyle*) const 51 return child->isInline();
|