HomeSort by relevance Sort by last modified time
    Searched refs:children (Results 151 - 175 of 1052) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/quake/quake/src/QW/client/
r_light.c 84 R_MarkLights (light, bit, node->children[0]);
89 R_MarkLights (light, bit, node->children[1]);
105 R_MarkLights (light, bit, node->children[0]);
106 R_MarkLights (light, bit, node->children[1]);
168 return RecursiveLightPoint (node->children[side], start, end);
176 r = RecursiveLightPoint (node->children[side], start, mid);
235 return RecursiveLightPoint (node->children[!side], mid, end);
r_efrag.c 151 R_SplitEntityOnNode (node->children[0]);
154 R_SplitEntityOnNode (node->children[1]);
191 R_SplitEntityOnNode2 (node->children[0]);
193 R_SplitEntityOnNode2 (node->children[1]);
  /external/quake/quake/src/WinQuake/
r_light.cpp 84 R_MarkLights (light, bit, node->children[0]);
89 R_MarkLights (light, bit, node->children[1]);
105 R_MarkLights (light, bit, node->children[0]);
106 R_MarkLights (light, bit, node->children[1]);
168 return RecursiveLightPoint (node->children[side], start, end);
176 r = RecursiveLightPoint (node->children[side], start, mid);
235 return RecursiveLightPoint (node->children[!side], mid, end);
world.cpp 84 box_clipnodes[i].children[side] = CONTENTS_EMPTY;
86 box_clipnodes[i].children[side^1] = i + 1;
88 box_clipnodes[i].children[side^1] = CONTENTS_SOLID;
185 struct areanode_s *children[2]; member in struct:areanode_s
217 anode->children[0] = anode->children[1] = NULL;
235 anode->children[0] = SV_CreateAreaNode (depth+1, mins2, maxs2);
236 anode->children[1] = SV_CreateAreaNode (depth+1, mins1, maxs1);
316 SV_TouchLinks ( ent, node->children[0] );
318 SV_TouchLinks ( ent, node->children[1] )
    [all...]
r_efrag.cpp 151 R_SplitEntityOnNode (node->children[0]);
154 R_SplitEntityOnNode (node->children[1]);
191 R_SplitEntityOnNode2 (node->children[0]);
193 R_SplitEntityOnNode2 (node->children[1]);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
ClipboardSupport.java 220 List<INode> children = clusters.get(parent);
221 if (children == null) {
222 children = new ArrayList<INode>();
223 clusters.put((NodeProxy) parent, children);
225 children.add(node);
229 // Notify parent views about children getting deleted
233 List<INode> children = entry.getValue();
234 assert children != null && children.size() > 0;
235 rulesEngine.callOnRemovingChildren(parent, children);
    [all...]
  /external/chromium/chrome/browser/extensions/
extension_bookmark_helpers.cc 50 ListValue* children = new ListValue(); local
55 children->Append(dict);
58 dict->Set(keys::kChildrenKey, children);
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/util/
Path.java 91 List<Box> children = new LinkedList<Box>(); local
96 children.addAll(getPaths(box1, later));
101 return children;
  /external/webkit/Source/WebKit/mac/History/
WebHistoryItem.mm 63 static NSString *childrenKey = @"children";
227 if (coreItem->children().size()) {
228 const HistoryItemVector& children = coreItem->children();
230 unsigned size = children.size();
232 WebHistoryItem *child = kit(children[i].get());
493 if (coreItem->children().size()) {
494 const HistoryItemVector& children = coreItem->children();
495 NSMutableArray *childDicts = [NSMutableArray arrayWithCapacity:children.size()]
    [all...]
  /external/chromium/chrome/browser/accessibility/
browser_accessibility_cocoa.h 35 // Invalidate children for a non-ignored ancestor (including self).
38 // Children is an array of BrowserAccessibility objects, representing
39 // the accessibility children of this object.
40 @property(nonatomic, readonly) NSArray* children; variable
  /external/chromium/chrome/browser/ui/gtk/
gtk_expanded_container_unittest.cc 22 GList* children = gtk_container_get_children(GTK_CONTAINER(expanded_)); local
23 for (GList* child = children; child; child = child->next) {
25 g_list_free(children);
29 g_list_free(children);
101 // Test if the size allocation for children still works when using own
102 // GdkWindow. In this case, the children's origin starts from (0, 0) rather
  /external/doclava/res/assets/templates/
diff.cs 69 $(tr).children(".handle").addClass("handle-opened");
70 $(tr).children(".handle").removeClass("handle-closed");
77 $(tr).children(".handle").removeClass("handle-opened");
78 $(tr).children(".handle").addClass("handle-closed");
96 $(tr).children(".handle").addClass("handle-opened");
97 $(tr).children(".handle").removeClass("handle-closed");
104 $(tr).children(".handle").removeClass("handle-opened");
105 $(tr).children(".handle").addClass("handle-closed");
  /external/jmonkeyengine/engine/src/core/com/jme3/scene/
AssetLinkNode.java 51 * The AssetLinkNode does not store its children when exported to file.
123 * Loads the linked children AssetKeys from the AssetManager and attaches them to the Node<br>
167 children.add(child);
178 SafeArrayList<Spatial> childs = children;
179 children = new SafeArrayList<Spatial>(Spatial.class);
183 children = childs;
  /external/markdown/markdown/extensions/
codehilite.py 185 children = block.getchildren()
186 if len(children) == 1 and children[0].tag == 'code':
187 code = CodeHilite(children[0].text,
  /external/quake/quake/src/QW/server/
world.c 84 box_clipnodes[i].children[side] = CONTENTS_EMPTY;
86 box_clipnodes[i].children[side^1] = i + 1;
88 box_clipnodes[i].children[side^1] = CONTENTS_SOLID;
206 anode->children[0] = anode->children[1] = NULL;
224 anode->children[0] = SV_CreateAreaNode (depth+1, mins2, maxs2);
225 anode->children[1] = SV_CreateAreaNode (depth+1, mins1, maxs1);
306 SV_TouchLinks ( ent, node->children[0] );
308 SV_TouchLinks ( ent, node->children[1] );
350 SV_FindTouchedLeafs (ent, node->children[0])
    [all...]
world.h 48 struct areanode_s *children[2]; member in struct:areanode_s
  /external/webkit/Source/WebCore/accessibility/
AccessibilityScrollView.h 55 virtual const AccessibilityChildrenVector& children();
AccessibilitySlider.h 56 virtual const AccessibilityChildrenVector& children();
AccessibilityTableHeaderContainer.cpp 53 const AccessibilityObject::AccessibilityChildrenVector& AccessibilityTableHeaderContainer::children() function in class:WebCore::AccessibilityTableHeaderContainer
  /external/webkit/Source/WebCore/bindings/v8/
ScriptProfileNode.cpp 71 ProfileNodesList ScriptProfileNode::children() const function in class:WebCore::ScriptProfileNode
  /external/webkit/Source/WebCore/inspector/front-end/
HeapSnapshotView.js 160 var children = this.snapshotDataGridList.children;
161 var count = children.length;
163 this.dataGrid.appendChild(children[index]);
255 var current = this.snapshotDataGridList.children[0];
285 var child = this.dataGrid.children[0];
336 profile.children = snapshot.children;
384 var result = {lowlevels: {}, entries: {}, children: {}};
398 result.children[rootEdgesIter.edge.nodeIndex] = entry
    [all...]
  /external/webkit/Source/WebCore/rendering/
RenderInline.h 92 virtual RenderObjectChildList* virtualChildren() { return children(); }
93 virtual const RenderObjectChildList* virtualChildren() const { return children(); }
94 const RenderObjectChildList* children() const { return &m_children; } function in class:WebCore::RenderInline
95 RenderObjectChildList* children() { return &m_children; } function in class:WebCore::RenderInline
  /external/webkit/Source/WebKit/win/Interfaces/
IWebHistoryItemPrivate.idl 57 [local] HRESULT children([out] unsigned* childCount, [out, retval] SAFEARRAY** children);
  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/
WKBundleBackForwardListItem.cpp 72 return toAPI(toImpl(itemRef)->children().leakRef());
  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/
InjectedBundleBackForwardListItem.h 57 PassRefPtr<ImmutableArray> children() const;

Completed in 2662 milliseconds

1 2 3 4 5 67 8 91011>>