/external/chromium_org/third_party/libwebp/utils/ |
huffman.c | 40 HuffmanTreeNode* const children = tree->root_ + tree->num_nodes_; local 41 node->children_ = (int)(children - node); 42 assert(children - node == (int)(children - node)); 44 TreeNodeInit(children + 0); 45 TreeNodeInit(children + 1);
|
/external/chromium_org/tools/idl_parser/ |
idl_node.py | 14 # applied as children of The IDLNodes, so they do not exist in the final tree. 74 # parents and children. It also contains a namepsace and propertynode to 79 def __init__(self, cls, filename, lineno, pos, children=None): 91 self.AddChildren(children) 175 # Get a list of all children 192 def AddChildren(self, children): 193 children = CopyToList(children) 194 for child in children:
|
/external/chromium_org/ui/gfx/ |
gtk_preserve_window.cc | 218 // Propagate resize to children 220 GList *children = GTK_FIXED(widget)->children; local 221 while (children) { 222 GtkFixedChild *child = reinterpret_cast<GtkFixedChild*>(children->data); 235 children = children->next;
|
/external/clang/include/clang/AST/ |
StmtOpenMP.h | 59 StmtRange children(); 60 ConstStmtRange children() const { function in class:clang::OMPClause 61 return const_cast<OMPClause *>(this)->children(); 189 StmtRange children() { function in class:clang::OMPDefaultClause 242 StmtRange children() { function in class:clang::OMPPrivateClause 344 child_range children() { function in class:clang::OMPExecutableDirective
|
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/webp/src/utils/ |
huffman.c | 40 HuffmanTreeNode* const children = tree->root_ + tree->num_nodes_; local 41 node->children_ = (int)(children - node); 42 assert(children - node == (int)(children - node)); 44 TreeNodeInit(children + 0); 45 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/chromium_org/third_party/libxml/src/ |
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/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/chromium_org/third_party/libjingle/source/talk/base/ |
linuxwindowpicker.cc | 247 Window* children; local 252 int status = XQueryTree(display_, id.id(), &root, &parent, &children, 258 if (children != NULL) { 259 XFree(children); 625 Window *children; local 629 status = XQueryTree(display_, root_window, &root_window, &parent, &children, 640 Window app_window = children[num_children - 1 - i]; 642 Window app_window = GetApplicationWindow(children[num_children - 1 - i]); 654 if (children != NULL) { 655 XFree(children); 694 Window *children; local [all...] |
/external/chromium_org/webkit/browser/fileapi/ |
sandbox_directory_database_unittest.cc | 322 // No children in the root. 323 std::vector<FileId> children; local 324 EXPECT_TRUE(db()->ListChildren(0, &children)); 325 EXPECT_TRUE(children.empty()); 333 EXPECT_TRUE(db()->ListChildren(0, &children)); 334 EXPECT_EQ(children.size(), 1UL); 335 EXPECT_EQ(children[0], file_id0); 337 // Two children in the root. 341 EXPECT_TRUE(db()->ListChildren(0, &children)); 342 EXPECT_EQ(2UL, children.size()) [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/chromium_org/ppapi/generators/ |
idl_parser.py | 146 # which in turn has <type>_list as children. 155 # list of children to the parent pattern. A list is in the form of: 205 # (* sub matches found at multiple levels and are not truly children of top) 214 # in turn are children of the file object created from the results of top. 294 children = ListFromConcat(p[1], p[5]) 295 p[0] = self.BuildNamed('Namespace', p, 3, children) 329 children = ListFromConcat(p[1], p[6]) 330 p[0] = self.BuildNamed('Callback', p, 3, children) 348 children = ListFromConcat(name, value, p[1]) 349 p[0] = self.BuildProduction('Inline', p, 2, children) [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
NavigatorView.js | 470 if (this.children.length) { 471 for (var treeElement = this.children[0]; treeElement; treeElement = treeElement.traverseNextTreeElement(false, this, true)) { 822 var children = this.children(); 823 for (var i = 0; i < children.length; ++i) 824 this.treeElement().appendChild(children[i].treeElement()); 873 children: function() [all...] |
AuditsPanel.js | 116 var children = this.auditResultsTreeElement.children; 118 for (var i = 0; i < children.length; ++i) { 119 if (children[i].mainResourceURL === mainResourceURL) 387 if (!this.children) 388 this.children = []; 390 this.children.push(entry);
|
/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/chromium_org/third_party/libxslt/libxslt/ |
templates.c | 205 if (inst->children == NULL) 224 * OPTIMIZE TODO: if inst->children consists only of text-nodes. 226 xsltApplyOneTemplate(ctxt, contextNode, inst->children, NULL, NULL); 488 if (attr->children != NULL) { 489 if ((attr->children->type != XML_TEXT_NODE) || 490 (attr->children->next != NULL)) 493 "Internal error: The children of an attribute node of a " 497 value = attr->children->content; 517 xmlFreeNodeList(ret->children); 518 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/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/chromium_org/third_party/mesa/src/src/mapi/glapi/gen/ |
glX_server_table.py | 90 the node, the list of the children's tuple, and the number 92 children, and the depth of the subtree rooted at the node.""" 131 children = [] 141 children.append(n) 153 return [M, children, count, depth] 167 children = node[1] 172 if children == []: 182 for child in children: 229 for child in children: 244 # N = 2^M, children [all...] |
/external/mesa3d/src/mapi/glapi/gen/ |
glX_server_table.py | 90 the node, the list of the children's tuple, and the number 92 children, and the depth of the subtree rooted at the node.""" 131 children = [] 141 children.append(n) 153 return [M, children, count, depth] 167 children = node[1] 172 if children == []: 182 for child in children: 229 for child in children: 244 # N = 2^M, children [all...] |
/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/chromium_org/cc/trees/ |
damage_tracker_unittest.cc | 41 for (size_t i = 0; i < layer->children().size(); ++i) 42 ClearDamageForAllSurfaces(layer->children()[i]); 103 // two children of its own. 209 LayerImpl* child1 = root->children()[0]; 210 LayerImpl* child2 = root->children()[1]; 229 LayerImpl* child = root->children()[0]; 267 LayerImpl* child = root->children()[0]; 316 LayerImpl* child = root->children()[0]; 365 LayerImpl* child = root->children()[0]; 404 LayerImpl* surface = root->children()[0] [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/tests/ |
test_util.py | 20 tree = tree.children[0] 84 children = [] 87 children.append(arg) 88 children.append(Comma()) 89 children.pop() 90 return Call(Name(name), children, prefix) 112 for child in node.children: 592 self.assertEqual(fi(node.children[0].children[4].children[2]), u" " [all...] |