/external/libxml2/ |
xmlreader.c | 258 ID = xmlNodeListGetString(doc, attr->children, 1); 295 if (cur->children != NULL) 296 xmlTextReaderFreeNodeList(reader, cur->children); 314 * Free a property and all its siblings, all the children are freed too. 333 * the children are freed too. 356 if ((cur->children != NULL) && 358 if (cur->children->parent == cur) 359 xmlTextReaderFreeNodeList(reader, cur->children); 360 cur->children = NULL; 410 * Free a node, this is a recursive behaviour, all the children are freed too [all...] |
xinclude.c | 872 cur = cur->children; 1011 cur = cur->children; 2095 xmlNodePtr children; local [all...] |
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/ |
ExpandableDictionary.java | 50 NodeArray children; field in class:ExpandableDictionary.Node 124 private void addWordRec(NodeArray children, final String word, 129 // Does children have the current character? 130 final int childrenLength = children.length; 134 childNode = children.data[i]; 143 children.add(childNode); 152 if (childNode.children == null) { 153 childNode.children = new NodeArray(); 155 addWordRec(childNode.children, word, depth + 1, frequency); 203 private int getWordFrequencyRec(final NodeArray children, final CharSequence word, 265 final NodeArray children = node.children; local [all...] |
/external/dbus/dbus/ |
dbus-marshal-recursive-util.c | 355 DBusList *children; member in struct:TestTypeNodeContainer 789 1, /* number of times children appear as fields */ 803 2, /* number of times children appear as fields */ [all...] |
/external/quake/quake/src/QW/server/ |
model.c | 77 node = node->children[0]; 79 node = node->children[1]; 760 Mod_SetParent (node->children[0], node); 761 Mod_SetParent (node->children[1], node); 800 p = LittleShort (in->children[j]); 802 out->children[j] = loadmodel->nodes + p; 804 out->children[j] = (mnode_t *)(loadmodel->leafs + (-1 - p)); 905 out->children[0] = LittleShort(in->children[0]); 906 out->children[1] = LittleShort(in->children[1]) [all...] |
/external/webkit/WebCore/inspector/front-end/ |
TimelinePanel.js | 149 if (this._lastRecord && (!record.children || !record.children.length) && 158 for (var i = 0; record.children && i < record.children.length; ++i) { 159 if (!formattedRecord.children) 160 formattedRecord.children = []; 161 var formattedChild = this._innerAddRecordToTimeline(record.children[i], formattedRecord.children); 164 this._lastRecord = record.children && record.children.length ? null : formattedRecord [all...] |
/external/quake/quake/src/WinQuake/ |
bspfile.h | 158 short children[2]; // negative numbers are -(leafs+1), not nodes
member in struct:__anon5229 168 short children[2]; // negative numbers are contents
member in struct:__anon5230
|
/external/webkit/JavaScriptCore/profiler/ |
ProfileGenerator.cpp | 166 ASSERT(currentNode->callIdentifier() == (currentNode->parent()->children()[currentNode->parent()->children().size() - 1])->callIdentifier());
|
/external/webkit/WebCore/rendering/ |
RenderButton.cpp | 143 // Input elements can't have children, but button elements can. We'll 145 // can also have children. 175 m_inner->children()->updateBeforeAfterContent(m_inner, type, this); 177 children()->updateBeforeAfterContent(this, type);
|
RenderRubyRun.cpp | 176 // Collect all children in a single base, then swap the bases. 178 moveChildTo(rightRun, rightRun->children(), base); 179 rightRun->moveChildTo(this, children(), rightBase);
|
RenderInline.cpp | 56 // Make sure to destroy anonymous children first while they are still connected to the rest of the tree, so that they will 58 children()->destroyLeftoverChildren(); 60 // Destroy our continuation before anything other than anonymous children. 61 // The reason we don't destroy it before anonymous children is that they may 62 // have continuations of their own that are anonymous children of our continuation. 79 // lines aren't pointing to deleted children. If the first line box does 134 children()->updateBeforeAfterContent(this, BEFORE); 135 children()->updateBeforeAfterContent(this, AFTER); 188 // the children after |beforeChild| and put them in a clone of this object. 203 children()->updateBeforeAfterContent(this, AFTER) [all...] |
/external/webkit/WebKit/mac/WebView/ |
WebFrameInternal.h | 88 - (NSObject *)nodeWithName:(NSString *)name position:(NSPoint)position rect:(NSRect)rect view:(NSView *)view children:(NSArray *)children;
|
/external/webkit/WebKit/win/ |
WebHistoryItem.cpp | 395 HRESULT STDMETHODCALLTYPE WebHistoryItem::children(unsigned* outChildCount, SAFEARRAY** outChildren) function in class:WebHistoryItem 405 const HistoryItemVector& coreChildren = m_historyItem->children(); 410 SAFEARRAY* children = SafeArrayCreateVector(VT_UNKNOWN, 0, static_cast<ULONG>(childCount)); local 411 if (!children) 417 SafeArrayDestroy(children); 422 HRESULT hr = SafeArrayPutElement(children, &longI, item.get()); 424 SafeArrayDestroy(children); 430 *outChildren = children;
|
/sdk/hierarchyviewer/src/com/android/hierarchyviewer/scene/ |
ViewNode.java | 34 public List<ViewNode> children = new ArrayList<ViewNode>(); field in class:ViewNode 128 index = parent == null ? 0 : parent.children.indexOf(this);
|
/external/qemu/android/skin/ |
composer.h | 55 ARefList children[1]; member in struct:SkinPlateGroup
|
/external/webkit/WebCore/accessibility/ |
AccessibilityARIAGridRow.cpp | 130 AccessibilityChildrenVector rowChildren = children();
|
AccessibilitySlider.cpp | 52 const AccessibilityObject::AccessibilityChildrenVector& AccessibilitySlider::children() function in class:WebCore::AccessibilitySlider
|
/external/webkit/WebCore/html/ |
HTMLElement.h | 40 PassRefPtr<HTMLCollection> children();
|
/external/webkit/WebKit/chromium/public/ |
WebHistoryItem.h | 117 WEBKIT_API WebVector<WebHistoryItem> children() const;
|
/frameworks/base/core/java/android/widget/ |
TabWidget.java | 163 int children = getChildCount(); local 166 // children: 1, 3, 5, ... and we want to convert that sequence to 169 children = (children + 1) / 2; 171 return children;
|
/packages/apps/Mms/src/com/android/mms/ui/ |
SlideshowActivity.java | 85 NodeList children = head.getChildNodes(); local 86 if (children == null || children.getLength() != 1) { 90 Node layout = children.item(0);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/ |
ManifestEditor.java | 259 List<UiElementNode> children = app_ui_node.getUiChildren(); local 262 processMarker(marker, children, IResourceDelta.ADDED); 281 List<UiElementNode> children = app_ui_node.getUiChildren(); local 284 processMarker(markerDelta.getMarker(), children, markerDelta.getKind()); local 376 null /*children*/, false /*mandatory*/);
|
/cts/tests/src/android/app/cts/ |
ExpandableListTestActivity.java | 58 final List<Map<String, String>> children = Lists.newArrayList(); local 61 children.add(curChildMap); 65 childData.add(children);
|
/external/clearsilver/python/examples/base/ |
hdfhelp.py | 159 children = [] 163 children.append(hdf) 165 return children
|
/external/emma/core/java12/com/vladium/emma/report/ |
SrcFileItem.java | 106 for (Iterator children = getChildren (); children.hasNext (); ) 112 value += ((IItem) children.next ()).getAggregate (COVERAGE_CLASS_COUNT);
|