HomeSort by relevance Sort by last modified time
    Searched refs:child (Results 1101 - 1125 of 3822) sorted by null

<<41424344454647484950>>

  /prebuilts/gradle-plugin/com/android/tools/chartlib/chartlib/25.1.0-beta3/
chartlib-25.1.0-beta3.jar 
  /prebuilts/gradle-plugin/com/android/tools/chartlib/chartlib/25.1.0-rc1/
chartlib-25.1.0-rc1.jar 
  /prebuilts/gradle-plugin/com/android/tools/chartlib/chartlib/25.1.2/
chartlib-25.1.2.jar 
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/
patcomp.py 116 child = children[0]
117 if child.type == token.STAR:
120 elif child.type == token.PLUS:
123 elif child.type == token.LBRACE:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/
patcomp.py 116 child = children[0]
117 if child.type == token.STAR:
120 elif child.type == token.PLUS:
123 elif child.type == token.LBRACE:
  /external/jdiff/src/jdiff/
XMLToAPI.java 135 public static void addInheritedElements(ClassAPI child, ClassAPI parent,
143 Iterator iter2 = child.methods_.iterator();
155 child.methods_.add(m2);
163 if (child.fields_.indexOf(f) == -1 &&
169 child.fields_.add(f2);
178 addInheritedElements(child, parent2, parent.extends_);
186 addInheritedElements(child, parent2, implName);
  /external/jsilver/src/com/google/clearsilver/jsilver/data/
NestedMapData.java 40 * the HashMap on the 5th child.
52 // First child (first sibling of children)
54 // Last child (last sibling of children)
88 * Creates a child of this node.
90 * @param chunk name to give the new child node.
97 // If the parent node's child count is 5 or more and it does not have a
108 // If the parent node has a children map, add the new child node to it.
115 // Update previous lastChild to point to new child.
188 * can have a value, a child, and a next peer.
280 * Returns number of child nodes
    [all...]
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/constructor/
BaseConstructor.java 274 for (Node child : node.getValue()) {
275 collection.add(constructObject(child));
283 for (Node child : node.getValue()) {
285 if (child.getType() == Object.class) {
286 child.setType(componentType);
289 final Object value = constructObject(child);
294 throw new NullPointerException("Unable to construct element value for " + child);
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
XMPNode.java 46 /** list of child nodes, lazy initialized */
61 /** flag if the node has an "rdf:value" child node. */
117 * @return Returns the child with the requested index.
126 * Adds a node as child to this node.
140 * Adds a node as child to this node.
169 * Removes a child at the requested index.
180 * Removes a child node.
183 * @param node the child node to delete.
227 * @param expr child node name to look for
454 XMPNode child = (XMPNode) it.next()
    [all...]
XMPSerializerRDF.java 850 XMPNode child = (XMPNode) it.next(); local
851 declareUsedNamespaces(child, usedPrefixes, indent);
1067 XMPNode child = (XMPNode) it.next(); local
1068 serializePrettyRDFProperty(child, false, indent + 2);
1089 XMPNode child = (XMPNode) it.next(); local
1090 serializePrettyRDFProperty(child, false, indent + 1);
1100 XMPNode child = (XMPNode) it.next(); local
1101 if (!canBeRDFAttrProp(child))
1109 write(child.getName());
1111 appendNodeValue(child.getValue(), true)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/relative/
MoveHandler.java 78 for (INode child : layout.getChildren()) {
79 Rect bc = child.getBounds();
93 String id = child.getStringAttr(ANDROID_URI, ATTR_ID);
97 boolean addHorizontal = !mHorizontalDeps.contains(child);
98 boolean addVertical = !mVerticalDeps.contains(child);
100 addBounds(child, id, addHorizontal, addVertical);
102 addBaseLine(child, id);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src_rss/org/eclipse/releng/generators/rss/
RSSFeedAddEntryTask.java 283 for (Node child=element.getFirstChild(); child != null; child=child.getNextSibling()) {
284 if ("updated".equals(child.getLocalName())) { //$NON-NLS-1$
286 System.out.println(Messages.getString("RSSFeedCommon.Set") + " <" + child.getLocalName()+ ">"+ now+ "</"+ child.getLocalName()+ ">"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ //$NON-NLS-5$
288 ((Element)child).setTextContent(now);
290 else if ("id".equals(child.getLocalName())) { //$NON-NLS-1$
305 Node refNode=child.getNextSibling()
    [all...]
  /external/guice/core/test/com/google/inject/
JitBindingsTest.java 54 + ". It was already configured on one or more child injectors or private modules";
325 Injector child = parent.createChildInjector(new AbstractModule() { local
331 ensureWorks(child, Foo.class, Bar.class);
332 ensureFails(child, ALLOW_BINDING, FooImpl.class);
334 // TODO(sameb): FooBar may or may not be in a child injector, depending on if GC has run.
335 // We should fix failed child injectors to remove their contents from the parent blacklist
337 // FooBar was succesfully inserted into the child injector (and parent blacklist), but then
338 // JIT bindings it depended on failed, making the child injector invalid.
340 Injector grandchild = child.createChildInjector(new AbstractModule() {
348 ensureFails(child, ALLOW_BINDING, FooImpl.class)
376 Injector child = parent.createChildInjector(new AbstractModule() { local
    [all...]
  /external/libchrome/base/files/
file_path_watcher_linux.cc 98 // watch that fired, |child| indicates what has changed, and is relative to
105 const FilePath::StringType& child,
331 FilePath::StringType child(event->len ? event->name : FILE_PATH_LITERAL(""));
338 child,
350 const FilePath::StringType& child,
358 fired_watch, child, created, deleted, is_dir));
383 child.empty() ||
384 (child == watch_entry.linkname) ||
385 (child == watch_entry.subdir);
387 // Check if the change references |target_| or a direct child of |target_|
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/utils/
JsonReader.java 659 private void addChild (String name, JsonValue child) {
660 child.setName(name);
662 current = child;
663 root = child;
665 child.parent = current;
667 current.child = child;
670 last.next = child;
671 child.prev = last;
673 lastChild.add(child);
    [all...]
  /external/libmicrohttpd/src/testspdy/
test_notls.c 37 pid_t child; variable
786 killchild(child,"wrong cls");
812 killchild(child,"wrong cls");
817 //killchild(child,"wrong by_client");
827 killchild(child,"session is NULL");
838 //child process
923 killchild(child, "select error");
934 while(waitpid(child,&childstatus,WNOHANG) != child);
952 child = fork()
    [all...]
  /external/v8/tools/
profile.js 610 * Finds an immediate child of the specified parent with the specified
611 * label, creates a child node if necessary. If a parent node isn't
614 * @param {string} label Child node label.
643 var child = (parent ? parent : subTree).findOrAddChild(node.label);
644 child.selfWeight += node.selfWeight;
645 return child;
686 node.forEachChild(function (child) {
687 morePairsToProcess.push({node: child, param: newParam}); });
740 * Adds a child node.
742 * @param {string} label Child node label
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/
ActionBarOverlayLayout.java 478 final View child = getChildAt(i);
479 if (child.getVisibility() != GONE) {
480 final LayoutParams lp = (LayoutParams) child.getLayoutParams();
482 final int width = child.getMeasuredWidth();
483 final int height = child.getMeasuredHeight();
487 if (child == mActionBarBottom) {
493 child.layout(childLeft, childTop, childLeft + width, childTop + height);
516 public boolean onStartNestedScroll(View child, View target, int axes) {
524 public void onNestedScrollAccepted(View child, View target, int axes) {
525 super.onNestedScrollAccepted(child, target, axes)
    [all...]
  /frameworks/data-binding/compiler/src/main/java/android/databinding/tool/expr/
Expr.java 175 Expr child = mChildren.get(i); local
176 child.resolveListeners(valueType, this);
184 final Expr child = mChildren.get(i); local
185 child.resolveTwoWayExpressions(this);
284 for (Expr child : mChildren) {
285 child.onParentSwapped(this, existing);
349 * Creates a dependency for each dynamic child. Should work for any expression besides
635 for (Expr child : getChildren()) {
636 child.setIsUsed(isUsed);
652 for (Expr child : mChildren)
    [all...]
  /frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
BaseWrapContentTest.java 54 * dimensions and once with wrap_content setup. Then compares all child locations & ids +
345 assertMap("child coordinates. step:" + step, mChildCoordinates,
391 sb.append("child coordinates:\n");
447 View child = recyclerView.getChildAt(i); local
448 Rect childBounds = getChildBounds(recyclerView, child, true);
449 mRawChildrenBox.union(getChildBounds(recyclerView, child, false));
450 RecyclerView.ViewHolder childViewHolder = recyclerView.getChildViewHolder(child);
459 private Rect getChildBounds(RecyclerView recyclerView, View child, boolean offset) {
461 RecyclerView.LayoutParams lp = (RecyclerView.LayoutParams) child.getLayoutParams();
462 Rect rect = new Rect(layoutManager.getDecoratedLeft(child) - lp.leftMargin
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
PriorityBlockingQueue.java 368 int child = (k << 1) + 1; // assume left child is least local
369 Object c = array[child];
370 int right = child + 1;
373 c = array[child = right];
377 k = child;
389 int child = (k << 1) + 1; local
390 Object c = array[child];
391 int right = child + 1;
393 c = array[child = right]
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/
TreeWidget.py 115 for child in self.children:
116 child.deselecttree()
189 child = self.__class__(self.canvas, self, item)
190 self.children.append(child)
194 for child in self.children:
197 cy = child.draw(cx, cy)
198 if child.item._IsExpandable():
199 if child.state == 'expanded':
201 callback = child.collapse
204 callback = child.expan
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/idlelib/
TreeWidget.py 115 for child in self.children:
116 child.deselecttree()
189 child = self.__class__(self.canvas, self, item)
190 self.children.append(child)
194 for child in self.children:
197 cy = child.draw(cx, cy)
198 if child.item._IsExpandable():
199 if child.state == 'expanded':
201 callback = child.collapse
204 callback = child.expan
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
TreeWidget.py 115 for child in self.children:
116 child.deselecttree()
189 child = self.__class__(self.canvas, self, item)
190 self.children.append(child)
194 for child in self.children:
197 cy = child.draw(cx, cy)
198 if child.item._IsExpandable():
199 if child.state == 'expanded':
201 callback = child.collapse
204 callback = child.expan
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
TreeWidget.py 115 for child in self.children:
116 child.deselecttree()
189 child = self.__class__(self.canvas, self, item)
190 self.children.append(child)
194 for child in self.children:
197 cy = child.draw(cx, cy)
198 if child.item._IsExpandable():
199 if child.state == 'expanded':
201 callback = child.collapse
204 callback = child.expan
    [all...]

Completed in 975 milliseconds

<<41424344454647484950>>