/external/eigen/unsupported/Eigen/src/BVH/ |
KdBVH.h | 98 children.clear(); 114 children.reserve(2 * n - 2); 130 /** Given an \a index of a node, on exit, \a outVBegin and \a outVEnd range over the indices of the volume children of the node 131 * and \a outOBegin and \a outOEnd range over the object children of the node */ 146 if(children[idx + 1] < numBoxes) { //second index is always bigger 147 outVBegin = &(children[idx]); 151 else if(children[idx] >= numBoxes) { //if both children are objects 153 outOBegin = &(objects[children[idx] - numBoxes]); 156 outVBegin = &(children[idx]) 215 std::vector<int> children; \/\/children of x are children[2x] and children[2x+1], indices bigger than boxes.size() index into objects. member in class:Eigen::KdBVH [all...] |
/external/webkit/Source/WebCore/inspector/front-end/ |
BottomUpProfileDataGridTree.js | 65 var children = this.children; 66 var index = this.children.length; 69 children[index]._exclude(aCallUID); 81 if (!this.children.length) 140 // In bottom up mode, our parents are our children since we display an inverted tree. 195 var children = profileNode.children; 196 if (children.length) { 198 profileNodeGroups.push(children); [all...] |
/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...] |
/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...] |
/cts/tools/vm-tests-tf/src/util/build/ |
BuildStep.java | 76 private Set<BuildStep> children; field in class:BuildStep 79 if (children != null) { 80 for (BuildStep child : children) { 100 if (children == null) { 101 children = new HashSet<BuildStep>(); 103 children.add(child);
|
/external/chromium/chrome/browser/ui/webui/ |
cookies_tree_model_adapter.cc | 74 ListValue children; local 76 &children); 78 tree_id, *parend_id.get(), start_value, children); 122 ListValue children; local 124 &children); 126 tree_id, *parend_id.get(), children);
|
/external/chromium/chrome/browser/ui/gtk/ |
gtk_floating_container.cc | 142 GList* children = floating->floating_children; local 144 while (children) { 146 reinterpret_cast<GtkFloatingContainerChild*>(children->data); 155 g_list_remove_link(floating->floating_children, children); 156 g_list_free(children); 164 children = children->next; 183 GList* children = floating->floating_children; local 184 while (children) { 186 reinterpret_cast<GtkFloatingContainerChild*>(children->data) 231 GList* children = container->floating_children; local [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/jsilver/src/com/google/clearsilver/jsilver/data/ |
ChainedData.java | 31 * second Data object, then fetching children of foo will return only foo.1 foo.2 foo.3 from first 93 ArrayList<Data> children = null; local 107 } else if (children == null) { 109 children = new ArrayList<Data>(dataList.length); 110 children.add(first); 111 children.add(child); 114 children.add(child); 118 if (children == null) { 124 logger.info("Found " + children.size() + " matches for path " + path);
|
/external/webkit/Source/WebCore/bindings/js/ |
JSHTMLFrameSetElementCustom.cpp | 46 Node* frame = frameSet->children()->namedItem(identifierToAtomicString(propertyName)); 55 Node* frame = element->children()->namedItem(identifierToAtomicString(propertyName));
|
ScriptProfile.cpp | 85 const ProfileNodesList& children = node->children(); local 86 ProfileNodesList::const_iterator end = children.end(); 87 for (ProfileNodesList::const_iterator iter = children.begin(); iter != end; ++iter) 89 result->setArray("children", childrenArray);
|
/external/webkit/Source/WebCore/html/ |
HTMLTableRowElement.cpp | 123 RefPtr<HTMLCollection> children = cells(); local 124 int numCells = children ? children->length() : 0; 138 n = children->item(index); 146 RefPtr<HTMLCollection> children = cells(); local 147 int numCells = children ? children->length() : 0; 151 RefPtr<Node> cell = children->item(index);
|
/frameworks/base/services/java/com/android/server/firewall/ |
AndFilter.java | 30 for (int i=0; i<children.size(); i++) { 31 if (!children.get(i).matches(ifw, intent, callerApp, callerUid, callerPid, resolvedType,
|
FilterList.java | 27 protected final ArrayList<Filter> children = new ArrayList<Filter>(); field in class:FilterList 39 children.add(filter);
|
OrFilter.java | 30 for (int i=0; i<children.size(); i++) { 31 if (children.get(i).matches(ifw, intent, callerApp, callerUid, callerPid, resolvedType,
|
/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);
|
/cts/tests/tests/graphics/src/android/graphics/drawable/cts/ |
DrawableContainerStateTest.java | 61 Drawable[] children = mDrawableContainerState.getChildren(); local 62 assertNotNull(children); 63 assertTrue(children.length >= 1); 64 assertSame(dr0, children[0]); 65 assertNull(children[1]); 73 children = mDrawableContainerState.getChildren(); 74 assertNotNull(children); 75 assertTrue(children.length >= 2); 76 assertSame(dr0, children[0]); 77 assertSame(dr1, children[1]) [all...] |
/external/chromium/chrome/browser/ui/cocoa/content_settings/ |
cookie_tree_node.h | 30 // operate on the children. Note that this lazily creates children. 32 - (NSArray*)children;
|
/external/chromium/chrome/common/safe_browsing/ |
safebrowsing_messages.h | 25 // children of this node. Can be emtpy. 26 IPC_STRUCT_MEMBER(std::vector<GURL>, children)
|
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
CheckerHelpers.h | 31 for (Stmt::const_child_range I = S->children(); I; ++I)
|
/external/smack/src/org/jivesoftware/smackx/pubsub/ |
ConfigureNodeFields.java | 96 children,
enum constant in enum:ConfigureNodeFields
|
/external/webkit/Source/WebCore/accessibility/ |
AccessibilityTableHeaderContainer.h | 51 virtual const AccessibilityChildrenVector& children();
|
/external/webkit/Source/WebCore/rendering/svg/ |
RenderSVGRoot.h | 42 const RenderObjectChildList* children() const { return &m_children; } function in class:WebCore::RenderSVGRoot 43 RenderObjectChildList* children() { return &m_children; } function in class:WebCore::RenderSVGRoot 50 virtual RenderObjectChildList* virtualChildren() { return children(); } 51 virtual const RenderObjectChildList* virtualChildren() const { return children(); }
|
/frameworks/base/sax/java/android/sax/ |
Children.java | 20 * Contains element children. Using this class instead of HashMap results in 23 class Children { 25 Child[] children = new Child[16]; field in class:Children 34 Child current = children[index]; 36 // We have no children in this bucket yet. 38 children[index] = current; 69 Child current = children[index];
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/ |
TableRowRule.java | 57 final @NonNull List<? extends INode> children) { 58 super.addLayoutActions(actions, parentNode, children); 63 if (children != null) { 67 children);
|