/external/libxml2/include/libxml/ |
entities.h | 42 struct _xmlNode *children; /* First child link */ member in struct:_xmlEntity
|
tree.h | 218 struct _xmlNode *children; /* NULL */ member in struct:_xmlAttribute 311 struct _xmlNode *children; /* NULL */ member in struct:_xmlElement 371 struct _xmlNode *children; /* the value of the property link */ member in struct:_xmlDtd 399 struct _xmlNode *children; /* the value of the property */ member in struct:_xmlAttr 454 struct _xmlNode *children; /* parent->childs link */ member in struct:_xmlNode 516 struct _xmlNode *children; /* the document tree */ member in struct:_xmlDoc 596 * to "children." 599 #define xmlChildrenNode children 606 * to "children". 609 #define xmlRootNode children [all...] |
/external/libxml2/ |
xmlschemas.c | 186 #define WXS_PARTICLE_TERM(p) (WXS_PARTICLE(p))->children 190 #define WXS_PARTICLE_MODEL(p) WXS_MODEL_GROUP_CAST WXS_PARTICLE(p)->children 194 #define WXS_MODELGROUPDEF_MODEL(mgd) (WXS_MODEL_GROUP_CAST (mgd))->children 203 #define WXS_MODELGROUP_PARTICLE(mg) WXS_PTC_CAST (mg)->children 503 xmlSchemaTreeItemPtr children; member in struct:_xmlSchemaTreeItem 665 xmlSchemaTreeItemPtr children; /* the "term" (e.g. a model group, member in struct:_xmlSchemaParticle 685 xmlSchemaTreeItemPtr children; /* first particle (OR "element decl" OR "wildcard") */ member in struct:_xmlSchemaModelGroup 703 xmlSchemaTreeItemPtr children; /* the "model group" */ member in struct:_xmlSchemaModelGroupDef [all...] |
/external/qemu/hw/ |
qdev.h | 40 LIST_HEAD(, DeviceState) children; member in struct:BusState
|
/external/quake/quake/src/QW/client/ |
r_bsp.c | 299 pn = pnode->children[i]; 314 R_RecursiveClipBPoly (psideedges[i], pnode->children[i], 555 // recurse down the children, front side first 556 R_RecursiveWorldNode (node->children[side], clipflags); 637 R_RecursiveWorldNode (node->children[!side], clipflags);
|
gl_model.c | 98 node = node->children[0]; 100 node = node->children[1]; 837 Mod_SetParent (node->children[0], node); 838 Mod_SetParent (node->children[1], node); 877 p = LittleShort (in->children[j]); 879 out->children[j] = loadmodel->nodes + p; 881 out->children[j] = (mnode_t *)(loadmodel->leafs + (-1 - p)); 998 out->children[0] = LittleShort(in->children[0]); 999 out->children[1] = LittleShort(in->children[1]) [all...] |
model.c | 96 node = node->children[0]; 98 node = node->children[1]; 823 Mod_SetParent (node->children[0], node); 824 Mod_SetParent (node->children[1], node); 863 p = LittleShort (in->children[j]); 865 out->children[j] = loadmodel->nodes + p; 867 out->children[j] = (mnode_t *)(loadmodel->leafs + (-1 - p)); 968 out->children[0] = LittleShort(in->children[0]); 969 out->children[1] = LittleShort(in->children[1]) [all...] |
/external/quake/quake/src/QW/server/ |
sv_ents.c | 61 node = node->children[0]; 63 node = node->children[1]; 66 SV_AddToFatPVS (org, node->children[0]); 67 node = node->children[1];
|
/external/quake/quake/src/WinQuake/ |
r_bsp.cpp | 299 pn = pnode->children[i];
314 R_RecursiveClipBPoly (psideedges[i], pnode->children[i],
555 // recurse down the children, front side first
556 R_RecursiveWorldNode (node->children[side], clipflags);
637 R_RecursiveWorldNode (node->children[!side], clipflags);
|
gl_model.cpp | 98 node = node->children[0]; 100 node = node->children[1]; 837 Mod_SetParent (node->children[0], node); 838 Mod_SetParent (node->children[1], node); 877 p = LittleShort (in->children[j]); 879 out->children[j] = loadmodel->nodes + p; 881 out->children[j] = (mnode_t *)(loadmodel->leafs + (-1 - p)); 989 out->children[0] = LittleShort(in->children[0]); 990 out->children[1] = LittleShort(in->children[1]) [all...] |
model.cpp | 101 node = node->children[0]; 103 node = node->children[1]; 841 Mod_SetParent (node->children[0], node); 842 Mod_SetParent (node->children[1], node); 881 p = LittleShort (in->children[j]); 883 out->children[j] = loadmodel->nodes + p; 885 out->children[j] = (mnode_t *)(loadmodel->leafs + (-1 - p)); 986 out->children[0] = LittleShort(in->children[0]); 987 out->children[1] = LittleShort(in->children[1]) [all...] |
/external/webkit/WebKit/chromium/src/ |
WebPluginContainerImpl.cpp | 525 const HashSet<RefPtr<Widget> >* children = parentFrameView->children(); local 526 for (HashSet<RefPtr<Widget> >::const_iterator it = children->begin(); it != children->end(); ++it) {
|
WebHistoryItem.cpp | 257 WebVector<WebHistoryItem> WebHistoryItem::children() const function in class:WebKit::WebHistoryItem 260 return m_private->children();
|
/external/webkit/WebKit/qt/tests/qwebframe/ |
tst_qwebframe.cpp | 625 const QObjectList & children = parent->children(); local 626 foreach (QObject* child, children) { 2658 QList<QWebFrame*> children = m_page->mainFrame()->childFrames(); local 2817 QList<QWebFrame*> children = webPage->mainFrame()->childFrames(); local [all...] |
/external/webkit/WebKitTools/DumpRenderTree/qt/ |
EventSenderQt.cpp | 417 QList<QWebFrame*> children = frame->childFrames(); local 418 for (int i = 0; i < children.size(); ++i) { 419 if (children.at(i)->geometry().contains(m_mousePos)) { 420 frame = children.at(i);
|
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/ |
MediaPlayerApiTest.java | 496 String[] children = dir.list(); local 497 if (children == null) { 501 for (int i = 0; i < children.length; i++) { 503 String filename = children[i];
|
/frameworks/base/tools/localize/ |
XLIFFFile.cpp | 355 const vector<XMLNode*>& children = original->Children(); local 356 size_t I = children.size(); 358 err |= convert_html_to_xliff(children[i], name, copy, phID); 376 if (original->Children().size() == 0) { 401 const vector<XMLNode*>& children = original->Children(); local 402 size_t I = children.size(); 404 err |= convert_html_to_xliff(children[i], name, addTo, phID); 427 const vector<XMLNode*>& children = str.value->Children() local [all...] |
/sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/explorer/ |
DeviceContentProvider.java | 39 public void setChildren(final FileEntry entry, FileEntry[] children) {
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/descriptors/ |
AndroidManifestDescriptors.java | 160 * It first computes the new children of the descriptor and then updates them 346 * It then finds all children of the descriptor, inflate them recursively and set them 386 ArrayList<ElementDescriptor> children = new ArrayList<ElementDescriptor>(); local 409 children.add(child); 419 elemDesc.setChildren(children.toArray(new ElementDescriptor[children.size()]));
|
/external/webkit/WebCore/inspector/front-end/ |
ObjectPropertiesSection.js | 75 if (!this.propertiesTreeOutline.children.length) { 137 if (this.children.length && !this.shouldRefreshChildren) 202 // Lie about our children to prevent expanding on double click and to collapse subproperties.
|
/external/webkit/WebCore/rendering/ |
CounterNode.cpp | 104 if (RenderObjectChildList* children = m_renderer->virtualChildren()) 105 children->invalidateCounters(m_renderer, identifier); 173 // and therefore its children become next siblings. 180 // one of the former children of the inserted node is not handled as it is believed 185 // inserted into the document's render tree, all its former children counters are attached 186 // to children of the inserted renderer and hence cannot be in scope for counter nodes
|
/external/webkit/WebCore/xml/ |
XSLStyleSheetLibxslt.cpp | 161 // and any of its children. XML document disposal can corrupt memory 186 xmlNodePtr stylesheetRoot = document()->children; 188 // Top level children may include other things such as DTD nodes, we ignore those. 205 // Walk the children of the root element and look for import/include elements. 207 xmlNodePtr curr = stylesheetRoot->children;
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/parts/ |
UiElementEditPart.java | 83 * Returns a List containing the children model objects. 110 // update the visuals of the children as well 115 if (children != null) { 116 for (Object child : children) { 137 // new children list, need to update the layout 214 * Reject being a target for elements which descriptor does not allow children. 221 // Reject being a target for elements which descriptor does not allow children. 244 * We don't allow layout children to be resized yet.
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/mock/ |
MockXmlNode.java | 49 * Constructs a node from a given children list. 54 * @param children The children list. Can be null. 57 MockXmlNode[] children) { 61 mNodeList = new MockNodeList(children);
|
/sdk/hierarchyviewer/src/com/android/hierarchyviewer/scene/ |
ViewHierarchyLoader.java | 109 parent.children.add(lastNode); 141 for (ViewNode node : root.children) {
|