/external/apache-harmony/prefs/src/test/java/org/apache/harmony/prefs/tests/java/util/prefs/ |
MockAbstractPreferences.java | 175 String[] children = p.childrenNames(); local 176 for (String child : children) {
|
/external/quake/quake/src/WinQuake/ |
bspfile.h | 158 short children[2]; // negative numbers are -(leafs+1), not nodes
member in struct:__anon10442 168 short children[2]; // negative numbers are contents
member in struct:__anon10443
|
/external/webkit/Source/JavaScriptCore/profiler/ |
ProfileGenerator.cpp | 177 ASSERT(currentNode->callIdentifier() == (currentNode->parent()->children()[currentNode->parent()->children().size() - 1])->callIdentifier());
|
/external/webkit/Source/WebCore/accessibility/gtk/ |
AccessibilityObjectWrapperAtk.cpp | 308 return core(object)->children().size(); 314 AccessibilityObject::AccessibilityChildrenVector children = coreObject->children(); local 315 if (index < 0 || static_cast<unsigned>(index) >= children.size()) 318 AccessibilityObject* coreChild = children.at(index).get(); 350 AccessibilityObject::AccessibilityChildrenVector children = parent->children(); local 351 unsigned count = children.size(); 353 if (children[i] == coreObject) 809 AccessibilityObject::AccessibilityChildrenVector children = coreSelection->children() 2184 AccessibilityObject::AccessibilityChildrenVector children = core(hypertext)->children(); local 2209 AccessibilityObject::AccessibilityChildrenVector children = core(hypertext)->children(); local 2498 AccessibilityObject::AccessibilityChildrenVector children = coreObject->children(); local [all...] |
/external/webkit/Source/WebCore/html/ |
HTMLElement.idl | 60 readonly attribute HTMLCollection children;
|
/external/webkit/Source/WebCore/rendering/ |
RenderButton.cpp | 141 // Input elements can't have children, but button elements can. We'll 143 // can also have children. 173 m_inner->children()->updateBeforeAfterContent(m_inner, type, this); 175 children()->updateBeforeAfterContent(this, type);
|
/external/webkit/Source/WebKit/chromium/src/ |
WebHistoryItem.cpp | 259 WebVector<WebHistoryItem> WebHistoryItem::children() const function in class:WebKit::WebHistoryItem 261 return m_private->children();
|
/external/webkit/Source/WebKit/mac/WebView/ |
WebFrameInternal.h | 90 - (NSObject *)nodeWithName:(NSString *)name position:(NSPoint)position rect:(NSRect)rect view:(NSView *)view children:(NSArray *)children;
|
/external/webkit/Source/WebKit/win/ |
WebHistoryItem.cpp | 391 HRESULT STDMETHODCALLTYPE WebHistoryItem::children(unsigned* outChildCount, SAFEARRAY** outChildren) function in class:WebHistoryItem 401 const HistoryItemVector& coreChildren = m_historyItem->children(); 406 SAFEARRAY* children = SafeArrayCreateVector(VT_UNKNOWN, 0, static_cast<ULONG>(childCount)); local 407 if (!children) 413 SafeArrayDestroy(children); 418 HRESULT hr = SafeArrayPutElement(children, &longI, item.get()); 420 SafeArrayDestroy(children); 426 *outChildren = children;
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/descriptors/ |
ViewElementDescriptor.java | 42 * The base class {@link ElementDescriptor} has a notion of "children", that is an XML element 44 * XML files all possible views are children of the document and of themselves (that is any 47 * that deals with the children hierarchy must also deal with potential infinite loops since views 53 * The super class hierarchy is very different from the descriptor's children hierarchy: the 75 * its children list and its mandatory flag. 85 * @param children The list of allowed children. Can be null or empty. 95 ElementDescriptor[] children, boolean mandatory) { 96 super(xml_name, ui_name, tooltip, sdk_url, attributes, children, mandatory);
|
/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/chromium/chrome/browser/safe_browsing/ |
malware_details.h | 101 // relationship. |parent| and |tagname| can be empty, |children| can be NULL. 105 const std::vector<GURL>* children);
|
/external/chromium/third_party/libjingle/source/talk/p2p/base/ |
parsing.h | 102 const std::vector<buzz::XmlElement*>& children);
|
/external/qemu/android/skin/ |
composer.h | 55 ARefList children[1]; member in struct:SkinPlateGroup
|
/external/valgrind/main/auxprogs/ |
gsl16test | 99 (cd gsl-1.6-patched && for f in $ALL_TESTS ; do eval $GSL_VV -v --trace-children=yes "$GSL_VFLAGS" ./$f ; done) &> out-V
|
gsl19test | 104 do GSL_TEST_VERBOSE=1 eval $GSL_VV -v --trace-children=yes "$GSL_VFLAGS" ./$f ; done) &> out-V
|
/external/webkit/LayoutTests/dom/xhtml/level3/core/ |
documentadoptnode15.js | 78 Using the method adoptNode, adopt a newly created DocumentFragment node without any children. 79 Check if the adopted node has no children.
|
/external/webkit/Source/WebCore/accessibility/ |
AccessibilityARIAGridRow.cpp | 130 AccessibilityChildrenVector rowChildren = children();
|
/external/webkit/Source/WebCore/inspector/front-end/ |
ElementsTreeOutline.js | 163 return treeElement.children[node.index]; 381 var count = this.children.length; 382 if (count && this.children[count - 1]._elementCloseTag) 384 if (count && this.children[count - 1].expandAllButton) 399 // Whether index-th child is visible in the children tree 485 if (this.children.length || this._showInlineText(this.representedObject) || this._elementCloseTag) 541 var currentTreeElement = treeElement.children[treeChildIndex]; 543 // Find any existing element that is later in the children list. 546 if (treeElement.children[i].representedObject === child) { 547 existingTreeElement = treeElement.children[i] [all...] |
/external/webkit/Source/WebKit/chromium/public/ |
WebHistoryItem.h | 120 WEBKIT_API WebVector<WebHistoryItem> children() const;
|
/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 | 272 List<UiElementNode> children = appUiNode.getUiChildren(); local 275 processMarker(marker, children, IResourceDelta.ADDED); 294 List<UiElementNode> children = app_ui_node.getUiChildren(); local 297 processMarker(markerDelta.getMarker(), children, markerDelta.getKind()); local 390 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/chromium/chrome/browser/accessibility/ |
browser_accessibility_manager.cc | 18 // child IDs of 1, 2, 3, ... to access the children of an object by 275 DCHECK_EQ(0U, src.children.size()); 316 // new reference to it and retrieve its children vector. 329 // and any children. If not, that means we have a serious bug somewhere, 349 for (int i = 0; i < static_cast<int>(src.children.size()); ++i) { 351 instance, src.children[i], i);
|
/external/chromium/chrome/browser/chromeos/ |
native_dialog_window.cc | 30 GList* children = gtk_container_get_children( local 33 GList* current = children; 44 g_list_free(children);
|