/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...] |
/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...] |
AuditsPanel.js | 133 if (ruleResult && ruleResult.children) 157 var children = this.auditResultsTreeElement.children; 159 for (var i = 0; i < children.length; ++i) { 160 if (children[i].mainResourceURL === mainResourceURL) 392 if (!this.children) 393 this.children = []; 395 this.children.push(entry);
|
WatchExpressionsSidebarPane.js | 171 var children = this.propertiesTreeOutline.children; 172 for (var i = 0; i < children.length; ++i) 173 if (children[i].property.name === WebInspector.WatchExpressionsSection.NewWatchExpression) 174 return children[i];
|
/external/chromium/chrome/browser/accessibility/ |
browser_accessibility_win_unittest.cc | 91 root.children.push_back(button); 92 root.children.push_back(checkbox); 161 root.children.push_back(text); 240 div.children.push_back(text); 242 div.children.push_back(text); 248 root.children.push_back(div); 263 // Notify the BrowserAccessibilityManager that the div node and its children 265 root.children.clear(); 293 root.children.push_back(text1);
|
/external/chromium/chrome/browser/bookmarks/ |
bookmark_node_data.cc | 37 children.push_back(Element(node->GetChild(i))); 49 pickle->WriteSize(children.size()); 50 for (std::vector<Element>::const_iterator i = children.begin(); 51 i != children.end(); ++i) { 67 children.clear(); 72 children.resize(children_count); 73 for (std::vector<Element>::iterator i = children.begin(); 74 i != children.end(); ++i) {
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/db/ |
ScenarioResults.java | 69 ConfigResults configResults = (ConfigResults) this.children.get(i); 84 ConfigResults configResults = (ConfigResults) this.children.get(i); 104 ConfigResults configResults = (ConfigResults) this.children.get(i); 212 ConfigResults configResults = (ConfigResults) this.children.get(i); 234 int size = this.children.size(); 236 ConfigResults configResults = (ConfigResults) this.children.get(i); 294 ConfigResults configResults = (ConfigResults) this.children.get(i); 390 ConfigResults configResults = (ConfigResults) this.children.get(i); 402 ConfigResults configResults = (ConfigResults) this.children.get(i);
|
/frameworks/base/tests/RenderScriptTests/ModelViewer/src/com/android/modelviewer/ |
SgTransform.java | 79 mTransformData.children = null; 92 mTransformData.children = mChildField.getAllocation();
|
/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/webp/src/utils/ |
huffman.c | 38 HuffmanTreeNode* const children = tree->root_ + tree->num_nodes_; local 39 node->children_ = (int)(children - node); 40 assert(children - node == (int)(children - node)); 42 TreeNodeInit(children + 0); 43 TreeNodeInit(children + 1);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/ |
FrameLayoutRule.java | 169 final @NonNull List<? extends INode> children) { 170 super.addLayoutActions(actions, parentNode, children); 172 actions.add(createMarginAction(parentNode, children)); 173 if (children != null && children.size() > 0) { 174 actions.add(createGravityAction(children, ATTR_LAYOUT_GRAVITY));
|
/external/libxml2/ |
catalog.c | 133 struct _xmlCatalogEntry *children; member in struct:_xmlCatalogEntry 283 ret->children = NULL; 380 xmlCatalogEntryPtr children, next; local 385 children = catal->children; 386 while (children != NULL) { 387 next = children->next; 388 children->dealloc = 0; 389 children->children = NULL [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...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
CanvasViewInfo.java | 60 * Each view also knows its parent and children. 156 * It is null for the root and non-null for children. 166 * Returns the list of children of this {@link CanvasViewInfo}. 170 * @return the children, never null 179 * children of a {@code <merge>} tag included into a separate layout, return the 218 * Returns all the children of the canvas view info where each child corresponds to a 228 * @return list of {@link CanvasViewInfo} objects that are children of this view, 237 // We have secondary children; must create a new collection containing 238 // only non-secondary children 239 List<CanvasViewInfo> children = new ArrayList<CanvasViewInfo>() local 254 List<CanvasViewInfo> children = new ArrayList<CanvasViewInfo>(mChildren.size()); local 860 List<ViewInfo> children = viewInfo.getChildren(); local [all...] |
/external/libxslt/libxslt/ |
templates.c | 204 if (inst->children == NULL) 223 * OPTIMIZE TODO: if inst->children consists only of text-nodes. 225 xsltApplyOneTemplate(ctxt, contextNode, inst->children, NULL, NULL); 487 if (attr->children != NULL) { 488 if ((attr->children->type != XML_TEXT_NODE) || 489 (attr->children->next != NULL)) 492 "Internal error: The children of an attribute node of a " 496 value = attr->children->content; 516 xmlFreeNodeList(ret->children); 517 ret->children = ret->last = NULL [all...] |
attributes.c | 325 child = cur->children; 707 * "Adding an attribute to an element after children have been added 715 if (targetElem->children != NULL) { 722 "element if children have been already added " 922 if (inst->children == NULL) { 928 } else if ((inst->children->next == NULL) && 929 ((inst->children->type == XML_TEXT_NODE) || 930 (inst->children->type == XML_CDATA_SECTION_NODE))) 954 copyTxt->content = inst->children->content; 960 if (inst->children->name == xmlStringTextNoenc [all...] |
/external/clang/include/clang/AST/ |
StmtObjC.h | 68 child_range children() { function in class:clang::ObjCForCollectionStmt 116 child_range children() { return child_range(&Body, &Body + 1); } function in class:clang::ObjCAtCatchStmt 147 child_range children() { function in class:clang::ObjCAtFinallyStmt 248 child_range children() { 307 child_range children() { function in class:clang::ObjCAtTryStmt 340 child_range children() { return child_range(&Throw, &Throw+1); } function in class:clang::ObjCAtThrowStmt 370 child_range children() { return child_range(&SubStmt, &SubStmt + 1); } function in class:clang::ObjCAutoreleasePoolStmt
|
/external/quake/quake/src/QW/client/ |
gl_rlight.c | 204 R_MarkLights (light, bit, node->children[0]); 209 R_MarkLights (light, bit, node->children[1]); 225 R_MarkLights (light, bit, node->children[0]); 226 R_MarkLights (light, bit, node->children[1]); 294 return RecursiveLightPoint (node->children[side], start, end); 302 r = RecursiveLightPoint (node->children[side], start, mid); 363 return RecursiveLightPoint (node->children[!side], mid, end);
|
/external/quake/quake/src/WinQuake/ |
gl_rlight.cpp | 207 R_MarkLights (light, bit, node->children[0]);
212 R_MarkLights (light, bit, node->children[1]);
228 R_MarkLights (light, bit, node->children[0]);
229 R_MarkLights (light, bit, node->children[1]);
297 return RecursiveLightPoint (node->children[side], start, end);
305 r = RecursiveLightPoint (node->children[side], start, mid);
366 return RecursiveLightPoint (node->children[!side], mid, end);
|
/external/antlr/antlr-3.4/runtime/Python/antlr3/ |
tree.py | 165 """Set the parent and child index values for all children""" 173 is nil, add all children of t to this' children. 191 Delete children from start to stop and replace with t even if t is 192 a list (nil-root tree). num of children can increase or decrease. 193 For huge child lists, inserting children can force walking rest of 194 children to set their childindex; could be slow. 202 Indicates the node is a nil node but may still have children, meaning 212 and its children? 225 and its children [all...] |
/external/webkit/Source/WebCore/platform/graphics/android/context/ |
RTree.cpp | 59 Node**& children, int* area) 64 minx = children[0]->m_minX; 65 miny = children[0]->m_minY; 66 maxx = children[0]->m_maxX; 67 maxy = children[0]->m_maxY; 72 minx = std::min(minx, children[i]->m_minX); 73 miny = std::min(miny, children[i]->m_minY); 74 maxx = std::max(maxx, children[i]->m_maxX); 75 maxy = std::max(maxy, children[i]->m_maxY); 105 // nodes will also maintain bounds (the union of their children' bounds) [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/safe_browsing/ |
malware_details.cc | 123 const std::vector<GURL>* children) { 140 if (children) { 141 for (std::vector<GURL>::const_iterator it = children->begin(); 142 it != children->end(); it++) { 236 AddUrl(node.url, node.parent, node.tag_name, &(node.children));
|
/external/smali/util/src/main/java/org/jf/util/ |
ClassFileNameHandler.java | 149 //this contains the FileSystemEntries for all of this package's children 151 private RadixTree<FileSystemEntry> children = new RadixTreeImpl<FileSystemEntry>(); field in class:ClassFileNameHandler.PackageNameEntry 174 FileSystemEntry existingEntry = children.find(elementNameLower); 188 children.replace(elementNameLower, virtualEntry); 197 children.insert(elementNameLower, classNameEntry); 201 children.insert(elementNameLower, packageNameEntry);
|
/external/wpa_supplicant_8/wpa_supplicant/dbus/ |
dbus_new_introspect.c | 179 char **children; local 183 dbus_connection_list_registered(con, path, &children); 184 for (i = 0; children[i]; i++) 185 wpabuf_printf(xml, "<node name=\"%s\"/>", children[i]); 186 dbus_free_string_array(children);
|