HomeSort by relevance Sort by last modified time
    Searched full:children (Results 76 - 100 of 2686) sorted by null

1 2 34 5 6 7 8 91011>>

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/
LayoutContentAssist.java 46 // Custom view with unknown children; just use the root descriptor
48 ElementDescriptor[] children = getRootDescriptor().getChildren(); local
49 for (ElementDescriptor e : children) {
51 return sort(children);
  /external/elfutils/tests/
run-show-abbrev.sh 32 abbrev[0]: code = 1, tag = 17, children = 1
40 abbrev[19]: code = 2, tag = 46, children = 1
51 abbrev[44]: code = 3, tag = 46, children = 1
59 abbrev[63]: code = 4, tag = 24, children = 0
60 abbrev[68]: code = 5, tag = 46, children = 1
67 abbrev[85]: code = 6, tag = 36, children = 0
71 abbrev[96]: code = 7, tag = 52, children = 0
78 abbrev[0]: code = 1, tag = 17, children = 1
86 abbrev[19]: code = 2, tag = 46, children = 0
96 abbrev[42]: code = 3, tag = 36, children =
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRBaseTree.h 42 - (AMutableArray *)children;
48 // is nil, add all children of t to this' children.
58 // Indicates the node is a nil node but may still have children, meaning
79 - (id) copyWithZone:(NSZone *)aZone; // the children themselves are not copied here!
98 @property (retain) AMutableArray *children; variable
105 __strong AMutableArray *children; variable
117 - (AMutableArray *)children;
125 // is nil, add all children of t to this' children
173 @property (retain) AMutableArray *children; variable
    [all...]
  /external/chromium/chrome/browser/ui/gtk/
gtk_chrome_shrinkable_hbox.cc 71 // All children are right aligned, so make sure the child won't overflow
80 // All children are left aligned, so make sure the child won't overflow
128 "Whether the children should be hid directly, "
180 // If we are allocated to more width or some children are removed or shrunk,
181 // then we need to show all invisible children before calling parent class's
183 // hidden children.
189 // If there were any invisible children, showing them will trigger another
192 // children may be redrawn on the screen with incorrect size allocation.
195 // Let the parent class do size allocation first. After that all children will
220 // Shrink or hide children if necessary
    [all...]
  /external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/collision/shapes/
CompoundCollisionShape.java 55 protected ArrayList<ChildCollisionShape> children = new ArrayList<ChildCollisionShape>(); field in class:CompoundCollisionShape
70 // children.add(new ChildCollisionShape(location.clone(), new Matrix3f(), shape));
82 throw new IllegalStateException("CompoundCollisionShapes cannot have CompoundCollisionShapes as children!");
87 children.add(new ChildCollisionShape(location.clone(), rotation.clone(), shape));
94 throw new IllegalStateException("CompoundCollisionShapes cannot have CompoundCollisionShapes as children!");
110 for (Iterator<ChildCollisionShape> it = children.iterator(); it.hasNext();) {
119 return children;
139 capsule.writeSavableArrayList(children, "children", new ArrayList<ChildCollisionShape>());
145 children = capsule.readSavableArrayList("children", new ArrayList<ChildCollisionShape>())
    [all...]
  /external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/collision/shapes/
CompoundCollisionShape.java 58 protected ArrayList<ChildCollisionShape> children = new ArrayList<ChildCollisionShape>(); field in class:CompoundCollisionShape
72 children.add(new ChildCollisionShape(location.clone(), new Matrix3f(), shape));
83 throw new IllegalStateException("CompoundCollisionShapes cannot have CompoundCollisionShapes as children!");
88 children.add(new ChildCollisionShape(location.clone(), rotation.clone(), shape));
94 throw new IllegalStateException("CompoundCollisionShapes cannot have CompoundCollisionShapes as children!");
108 for (Iterator<ChildCollisionShape> it = children.iterator(); it.hasNext();) {
117 return children;
131 capsule.writeSavableArrayList(children, "children", new ArrayList<ChildCollisionShape>());
137 children = capsule.readSavableArrayList("children", new ArrayList<ChildCollisionShape>())
    [all...]
  /external/webkit/Source/WebCore/accessibility/
AccessibilityARIAGrid.cpp 72 unsigned rowCellCount = row->children().size();
80 // otherwise add its children (the cells) as the grid's children.
84 m_children.append(row->children());
112 // in case the render tree doesn't match the expected ARIA hierarchy, look at the children
116 // Do not navigate children through the Accessibility
117 // children vector to let addChild() check the result
119 // decision (add the objects or their children).
164 AccessibilityChildrenVector children = tableRow->children(); local
    [all...]
  /packages/apps/Email/src/org/apache/james/mime4j/field/address/parser/
Node.java 25 list of children. */
28 /** This method returns a child node. The children are numbered
32 /** Return the number of children the node has. */
  /development/samples/ApiDemos/src/com/example/android/apis/accessibility/
AccessibilityNodeProviderActivity.java 66 * This class presents a View that is composed of three virtual children
84 /** The virtual children of this View. */
119 // This implementation assumes that the virtual children
124 List<VirtualView> children = mChildren; local
125 final int childCount = children.size();
127 VirtualView child = children.get(i);
180 // The virtual children are ordered horizontally next to
183 List<VirtualView> children = mChildren; local
184 final int childCount = children.size();
186 VirtualView child = children.get(i)
202 List<VirtualView> children = mChildren; local
220 List<VirtualView> children = mChildren; local
312 List<VirtualView> children = mChildren; local
368 List<VirtualView> children = mChildren; local
410 List<VirtualView> children = mChildren; local
    [all...]
  /external/webkit/Source/WebCore/inspector/front-end/
DOMAgent.js 47 this.children = null;
55 if (payload.children)
56 this._setChildrenPayload(payload.children);
174 if (this.children) {
176 callback(this.children);
182 callback(this.children);
258 if (!this.children) {
260 this.children = [ node ];
262 this.children.unshift(node);
264 this.children.splice(this.children.indexOf(prev) + 1, 0, node)
    [all...]
treeoutline.js 31 this.children = [];
55 var lastChild = this.children[this.children.length - 1];
64 this.children.push(child);
70 var current = child.children[0];
83 this._childrenListNode.addStyleClass("children");
96 var previousChild = (index > 0 ? this.children[index - 1] : null);
104 var nextChild = this.children[index];
112 this.children.splice(index, 0, child);
118 var current = child.children[0]
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
ITreeVisitorAction.cs 37 * pre() before visiting children and execute post() after visiting children.
43 * Execute an action before visiting children of t. Return t or
45 * with the return value. Children of returned value will be
52 * Execute an action after visiting children of t. Return t or
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
ITreeVisitorAction.cs 39 * pre() before visiting children and execute post() after visiting children.
45 * Execute an action before visiting children of t. Return t or
47 * with the return value. Children of returned value will be
54 * Execute an action after visiting children of t. Return t or
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
TreeVisitorAction.java 32 * pre() before visiting children and execute post() after visiting children.
35 /** Execute an action before visiting children of t. Return t or
37 * with the return value. Children of returned value will be
42 /** Execute an action after visiting children of t. Return t or
  /external/chromium/chrome/browser/resources/bookmark_manager/js/
bmm_test.html 22 children: [
25 children: [
27 {id: 3, children: []}
106 assertEquals(tree.children[0], node);
111 chrome.experimental.bookmarkManager.getSubtree.load(tree.children[0]);
  /external/jmonkeyengine/engine/src/tools/jme3tools/optimize/
Octnode.java 67 final Octnode[] children = new Octnode[8]; field in class:Octnode
122 // create boxes for children
163 children[i] = new Octnode(boxForChild[i], trisForChild[i]);
164 children[i].subdivide(depth + 1, minTrisPerNode);
191 if (children[i] != null){
192 children[i].createFastOctnode(globalGeomList);
204 if (children[i] != null){
205 children[i].generateFastOctnodeLinks(this, prev, i);
206 prev = children[i];
217 if (children[i] != null)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/values/descriptors/
ItemElementDescriptor.java 32 * tooltip, SDK url, attributes list, children list and mandatory.
39 * @param children The list of allowed children. Can be null or empty.
47 ElementDescriptor[] children, boolean mandatory) {
48 super(xml_name, ui_name, tooltip, sdk_url, attributes, children, mandatory);
  /external/chromium/chrome/browser/resources/
cookies_tree.js 52 * Clears all children.
55 // We might leave some garbage in treeLookup for removed children.
192 * Sets the immediate children of given parent node.
194 * @param {Array} children The immediate children of parent node.
196 doSetChildren: function(parentId, children) {
200 this.addByParent(parent, 0, children);
209 CookiesTree.onTreeItemAdded = function(treeId, parentId, start, children) {
210 $(treeId).addByParentId(parentId, start, children);
217 CookiesTree.setChildren = function(treeId, parentId, children) {
    [all...]
  /external/chromium/chrome/browser/accessibility/
browser_accessibility_manager_unittest.cc 77 root.children.push_back(button);
78 root.children.push_back(checkbox);
161 tree1_root.children.push_back(tree1_child1);
162 tree1_root.children.push_back(tree1_child2);
163 tree1_root.children.push_back(tree1_child3);
196 tree2_root.children.push_back(tree2_child0);
197 tree2_root.children.push_back(tree2_child1);
198 tree2_root.children.push_back(tree2_child2);
292 tree1_child1.children.push_back(tree1_grandchild1);
305 tree1_child2.children.push_back(tree1_grandchild2)
    [all...]
  /packages/apps/Email/src/com/android/email/view/
NonLockingScrollView.java 35 * we want to delegate those touches to children as normal, even in the middle of a drag. This is
53 * Whether or not the contents of this view is being dragged by one of the children in
59 * The list of children who should always receive touch events, and not have them intercepted.
87 // Don't intercept events - pass them on to children as normal.
102 // If additional types of children should be excluded (e.g. horizontal scrolling banners),
117 private static boolean isEventOverChild(MotionEvent ev, ArrayList<View> children) {
122 for (View child : children) {
  /external/webkit/Source/JavaScriptCore/parser/
Nodes.cpp 99 ScopeNode::ScopeNode(JSGlobalData* globalData, const SourceCode& source, SourceElements* children, VarStack* varStack, FunctionStack* funcStack, IdentifierSet& capturedVariables, CodeFeatures features, int numConstants)
102 , m_data(adoptPtr(new ScopeNodeData(globalData->parser->arena(), children, varStack, funcStack, capturedVariables, numConstants)))
115 inline ProgramNode::ProgramNode(JSGlobalData* globalData, SourceElements* children, VarStack* varStack, FunctionStack* funcStack, IdentifierSet& capturedVariables, const SourceCode& source, CodeFeatures features, int numConstants)
116 : ScopeNode(globalData, source, children, varStack, funcStack, capturedVariables, features, numConstants)
120 PassRefPtr<ProgramNode> ProgramNode::create(JSGlobalData* globalData, SourceElements* children, VarStack* varStack, FunctionStack* funcStack, IdentifierSet& capturedVariables, const SourceCode& source, CodeFeatures features, int numConstants)
122 RefPtr<ProgramNode> node = new ProgramNode(globalData, children, varStack, funcStack, capturedVariables, source, features, numConstants);
133 inline EvalNode::EvalNode(JSGlobalData* globalData, SourceElements* children, VarStack* varStack, FunctionStack* funcStack, IdentifierSet& capturedVariables, const SourceCode& source, CodeFeatures features, int numConstants)
134 : ScopeNode(globalData, source, children, varStack, funcStack, capturedVariables, features, numConstants)
138 PassRefPtr<EvalNode> EvalNode::create(JSGlobalData* globalData, SourceElements* children, VarStack* varStack, FunctionStack* funcStack, IdentifierSet& capturedVariables, const SourceCode& source, CodeFeatures features, int numConstants)
140 RefPtr<EvalNode> node = new EvalNode(globalData, children, varStack, funcStack, capturedVariables, source, features, numConstants)
    [all...]
  /frameworks/base/core/java/android/widget/
ExpandableListAdapter.java 26 * to the data of the children (categorized by groups), and also instantiate
27 * {@link View}s for children and groups.
48 * Gets the number of children in a specified group.
50 * @param groupPosition the position of the group for which the children
52 * @return the children count in the specified group
69 * children in the group
78 * (groups and all children).
87 * unique across all children within the group. The combined ID (see
89 * (groups and all children).
109 * group--the Views for the group's children will be fetched usin
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
TableLayoutRule.java 42 // The fill of all children should be wrap_content
89 final List<? extends INode> children) {
90 super.addLayoutActions(actions, parentNode, children);
91 addTableLayoutActions(mRulesEngine, actions, parentNode, children);
99 final List<? extends INode> children) {
113 if (children != null) {
115 for (INode child : children) {
139 // Find the direct children of the TableLayout to delete;
142 // TableLayout but the children might be grand children
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/data/
NestedMapData.java 39 * Number of children a node can have before we bother allocating a HashMap. We currently allocate
49 private Map<String, NestedMapData> children = null; field in class:NestedMapData
50 // Number of children
52 // First child (first sibling of children)
54 // Last child (last sibling of children)
98 // children Hashmap, initialize it now.
99 if (sym.children == null && sym.childCount >= CHILD_MAP_THRESHOLD) {
100 sym.children = new HashMap<String, NestedMapData>();
101 // Copy in existing children.
104 sym.children.put(curr.getName(), curr)
    [all...]
  /external/oprofile/daemon/
opd_perfmon.c 98 static struct child * children; variable in typeref:struct:child
121 if (children[i].pid == getpid()) {
122 children[i].sigusr1 = 1;
134 if (children[i].pid == getpid()) {
135 children[i].sigusr2 = 1;
319 struct child * self = &children[cpu];
433 children = xmalloc(sizeof(struct child) * nr_cpus);
434 bzero(children, sizeof(struct child) * nr_cpus);
439 if (pipe(children[i].up_pipe)) {
449 close(children[i].up_pipe[0])
    [all...]

Completed in 6295 milliseconds

1 2 34 5 6 7 8 91011>>