HomeSort by relevance Sort by last modified time
    Searched refs:children (Results 251 - 275 of 759) sorted by null

<<11121314151617181920>>

  /external/webkit/LayoutTests/dom/xhtml/level1/core/
hc_nodereplacechildinvalidnodetype.js 80 a type that does not allow children of the type "newChild"
84 one of its children with a newly created Attr node.
85 An Element node cannot have children of the "Attr"
  /external/webkit/Tools/DumpRenderTree/gtk/
AccessibilityUIElementGtk.cpp 62 void AccessibilityUIElement::getChildren(Vector<AccessibilityUIElement>& children)
67 children.append(AccessibilityUIElement(child));
123 Vector<AccessibilityUIElement> children; local
124 getChildrenWithRange(children, index, index + 1);
126 if (children.size() == 1)
127 return children.at(0);
  /frameworks/base/core/java/android/view/animation/
AnimationSet.java 32 * If AnimationSet sets any properties that its children also set
38 * AnimationSet itself, some are pushed down to the children, and some are ignored,
437 final ArrayList<Animation> children = mAnimations; local
438 final int count = children.size();
458 Animation a = children.get(i);
496 final ArrayList<Animation> children = mAnimations;
497 final int count = children.size();
500 children.get(i).setStartOffset(offsets[i]);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
RenderService.java 278 List<UiElementNode> children = mModel.getUiChildren(); local
279 if (children.size() == 1) {
281 children.get(0).getXmlNode(), mProject);
413 * Measure the children of the given parent node, applying the given filter to the
416 * @param parent the parent node to measure children for
418 * @return a map from node children of the parent to new bounds of the nodes
484 List<ViewInfo> children = root.getChildren(); local
485 Map<INode, Rect> map = new HashMap<INode, Rect>(children.size());
486 for (ViewInfo info : children) {
OutlinePage.java 417 List<CanvasViewInfo> children = ((CanvasViewInfo) element).getUniqueChildren(); local
418 if (children != null) {
419 return children.toArray();
434 List<CanvasViewInfo> children = ((CanvasViewInfo) element).getChildren(); local
435 if (children != null) {
436 return children.size() > 0;
825 Set<INode> children = new HashSet<INode>(); local
914 List<UiElementNode> children = curr.getUiChildren(); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
RefactoringTest.java 194 List<Element> children = DomUtilities.getChildren(element); local
196 boolean hasChildren = children.size() > 0;
199 for (Element child : children) {
252 List<ViewInfo> children = new ArrayList<ViewInfo>(); local
254 children.add(create(child, lineIterator));
256 view.setChildren(children);
  /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:__anon10637
168 short children[2]; // negative numbers are contents member in struct:__anon10638
  /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...]

Completed in 918 milliseconds

<<11121314151617181920>>