HomeSort by relevance Sort by last modified time
    Searched full:children (Results 326 - 350 of 2686) sorted by null

<<11121314151617181920>>

  /frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/
transform.rs 34 rsDebug("child ", rsIsObject(data->children));
121 if (rsIsObject(data->children)) {
123 rsForEach(gTransformScript, data->children, nullAlloc, &toChild, sizeof(toChild));
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
documentcreatedocumentfragment.java 64 NodeList children; local
71 children = newDocFragment.getChildNodes();
72 length = (int) children.getLength();
hc_documentcreatedocumentfragment.java 63 NodeList children; local
70 children = newDocFragment.getChildNodes();
71 length = (int) children.getLength();
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
importNode04.java 76 NodeList children; local
85 children = aNode.getChildNodes();
86 assertSize("throw_Size", 1, children);
  /libcore/xml/src/test/java/org/kxml2/io/
KXmlSerializerTest.java 112 NodeList children = doc.getFirstChild().getChildNodes(); local
114 for (int i = 0; i < children.getLength(); ++i) {
115 text += children.item(i).getNodeValue();
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
MtpContext.java 122 List<MtpObjectInfo> children) {
127 for (MtpObjectInfo child : children) {
137 return success == children.size();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
ClipboardSupport.java 215 List<INode> children = clusters.get(parent);
216 if (children == null) {
217 children = new ArrayList<INode>();
218 clusters.put((NodeProxy) parent, children);
220 children.add(node);
224 // Notify parent views about children getting deleted
228 List<INode> children = entry.getValue();
229 assert children != null && children.size() > 0;
230 rulesEngine.callOnRemovingChildren(parent, children);
    [all...]
  /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/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/animations/
BoneContext.java 36 /** The children of this context. */
37 private List<BoneContext> children = new ArrayList<BoneContext>(); field in class:BoneContext
96 this.children.add(new BoneContext(child, this, objectToArmatureMatrix, bonesPoseChannels, blenderContext));
124 for (BoneContext child : this.children) {
157 * This method builds the bone. It recursively builds the bone's children.
182 for (BoneContext child : children) {
  /external/protobuf/gtest/xcode/Samples/FrameworkSample/WidgetFramework.xcodeproj/
project.pbxproj 62 children = (
71 children = (
83 children = (
92 children = (
100 children = (
109 children = (
  /external/skia/bench/BenchTool/BenchTool.xcodeproj/
project.pbxproj 90 children = (
103 children = (
113 children = (
121 children = (
129 children = (
137 children = (
  /external/webkit/Examples/NetscapeCoreAnimationMoviePlugin/NetscapeCoreAnimationMoviePlugin.xcodeproj/
project.pbxproj 58 children = (
70 children = (
79 children = (
94 children = (
104 children = (
187 children = (
  /frameworks/base/core/java/android/preference/
PreferenceGroup.java 69 * Whether to order the {@link Preference} children of this group as they
86 * @return Whether this group orders based on the order the children are added.
101 * Returns the number of children {@link Preference}s.
102 * @return The number of preference children in this group.
138 // so we won't end up properly passing this flag down to children
220 * This will recursively search for the preference into children that are
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/
ExplodeRenderingHelperTest.java 103 * Children of the relative layouts, one below the other.
136 * Children of the relative layouts, one above the other.
242 private MockXmlNode createLinearLayout(boolean horizontal, MockXmlNode[] children) {
243 MockXmlNode layout = new MockXmlNode(null, "LinearLayout", Node.ELEMENT_NODE, children);
251 private MockXmlNode createRelativeLayout(MockXmlNode[] children) {
252 MockXmlNode layout = new MockXmlNode(null, "RelativeLayout", Node.ELEMENT_NODE, children);
  /development/samples/ApiDemos/src/com/example/android/apis/view/
HoverInterceptorView.java 34 * When this view intercepts hover events, its children will not receive
36 * view group that would like to prevent its children from being hovered
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
BaseTreeAdaptor.as 70 * in list children of t. Warning: if t has no children, but child does
71 * and child isNil then you can decide it is ok to move children to t via
72 * t.children = child.children; i.e., without copying the array. Just
82 /** If oldRoot is a nil root, just copy or move the children to newRoot.
104 * children; i.e., you don't have to copy the list. We are
129 // is a flat list (i.e., nil-rooted tree). All children of oldRoot
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
BaseTreeAdaptor.cs 110 * in list children of t. Warning: if t has no children, but child does
111 * and child isNil then you can decide it is ok to move children to t via
112 * t.children = child.children; i.e., without copying the array. Just
124 * If oldRoot is a nil root, just copy or move the children to newRoot.
148 * children; i.e., you don't have to copy the list. We are
171 // is a flat list (i.e., nil-rooted tree). All children of oldRoot
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
BaseTreeAdaptor.java 99 * in list children of t. Warning: if t has no children, but child does
100 * and child isNil then you can decide it is ok to move children to t via
101 * t.children = child.children; i.e., without copying the array. Just
111 /** If oldRoot is a nil root, just copy or move the children to newRoot.
133 * children; i.e., you don't have to copy the list. We are
154 // is a flat list (i.e., nil-rooted tree). All children of oldRoot
  /external/chromium/chrome/browser/bookmarks/
bookmark_model_observer.h 51 // Invoked when the children (just direct children, not descendants) of
  /external/chromium/chrome/browser/safe_browsing/
report.proto 73 // A list of children. The order of the children in this list is
  /external/clang/test/SemaObjC/
weak-attr-ivar.m 37 - (NSArray *) children;
55 for (FooPlaypenEntry *child in [self children]) {
  /external/llvm/lib/CodeGen/
LexicalScopes.cpp 221 const SmallVector<LexicalScope *, 4> &Children = WS->getChildren();
223 for (SmallVector<LexicalScope *, 4>::const_iterator SI = Children.begin(),
224 SE = Children.end(); SI != SE; ++SI) {
328 if (!Children.empty())
329 err << "Children ...\n";
330 for (unsigned i = 0, e = Children.size(); i != e; ++i)
331 if (Children[i] != this)
332 Children[i]->dump();
  /external/mesa3d/src/talloc/
hieralloc.h 36 // calls destructor if set, and frees children.
52 // moves allocation to new parent context; maintain children but update siblings
  /external/regex-re2/re2/
prefilter.h 39 // The children of the Prefilter node.
45 // Set the children vector. Prefilter takes ownership of subs and
  /external/skia/src/animator/
SkAnimateMaker.cpp 134 //this code checks to see if helpers are among the children, but it is not complete -
135 //it should check the children of the children
137 SkTDArray<SkDisplayable*> children(fChildren.begin(), fChildren.count());
138 SkQSort(children.begin(), children.count(), sizeof(SkDisplayable*),compare_disp);
141 result = SkTSearch(children.begin(), children.count(), helper, sizeof(SkDisplayable*));

Completed in 410 milliseconds

<<11121314151617181920>>