HomeSort by relevance Sort by last modified time
    Searched full:child (Results 51 - 75 of 1967) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/skia/src/views/
SkStackViewLayout.cpp 64 /* Measure the main-dimension for all the children. If a child is marked flex in that direction
71 SkView* child; local
75 while ((child = iter.next()) != NULL)
78 if (child->getFlags() & flexMask)
81 limit += (child->*sizeProc)();
155 SkView* child; local
160 while ((child = iter.next()) != NULL)
164 (child->*mainLocP)(pos);
165 SkScalar crossLoc = crossStartM + gAlignProcs[fAlign]((child->*crossGetSizeP)(), crossLimit);
168 (child->*crossLocP)(crossLoc)
247 SkView* child; local
    [all...]
  /external/webkit/WebCore/rendering/
RenderObjectChildList.cpp 42 static void updateListMarkerNumbers(RenderObject* child)
44 for (RenderObject* sibling = child; sibling; sibling = sibling->nextSibling()) {
68 // So that we'll get the appropriate dirty bit set (either that a normal flow child got yanked or
69 // that a positioned child got yanked). We also repaint, so that the area exposed when the child
81 // if we remove visible child from an invisible parent, we don't know the layer visibility any more
110 // remove the child
156 // if the new child is visible but this object was not, tell the layer it has some visible content
171 owner->setChildNeedsLayout(true); // We may supply the static position for an absolute positioned child.
177 void RenderObjectChildList::insertChildNode(RenderObject* owner, RenderObject* child, RenderObject* beforeChild, bool fullInsert
312 RenderObject* child = beforeAfterContainer(owner, type); local
    [all...]
  /dalvik/docs/
dalvik-bytecode.css 82 table.instruc td:first-child {
89 table.instruc td:first-child + td {
96 table.instruc td:first-child + td i {
101 table.instruc td:first-child + td + td {
106 table.instruc td:first-child + td + td + td {
121 table.supplement td:first-child {
127 table.supplement td:first-child + td {
133 table.supplement td:first-child + td + td {
149 table.math td:first-child {
155 table.math td:first-child + td
    [all...]
instruction-formats.css 66 table.letters td:first-child {
72 table.letters td:first-child + td {
77 table.letters td:first-child + td + td {
111 table.format th:first-child {
115 table.format th:first-child + th {
119 table.format th:first-child + th + th {
123 table.format th:first-child + th + th + th {
  /dalvik/docs/opcodes/
opcode.css 83 table.instruc td:first-child {
90 table.instruc td:first-child + td {
97 table.instruc td:first-child + td i {
102 table.instruc td:first-child + td + td {
107 table.instruc td:first-child + td + td + td {
122 table.supplement td:first-child {
128 table.supplement td:first-child + td {
134 table.supplement td:first-child + td + td {
150 table.math td:first-child {
156 table.math td:first-child + td
    [all...]
  /external/kernel-headers/original/linux/
ptrace.h 84 extern long arch_ptrace(struct task_struct *child, long request, long addr, long data);
93 extern int ptrace_request(struct task_struct *child, long request, long addr, long data);
95 extern void __ptrace_link(struct task_struct *child,
97 extern void __ptrace_unlink(struct task_struct *child);
98 extern void ptrace_untrace(struct task_struct *child);
101 static inline void ptrace_link(struct task_struct *child,
104 if (unlikely(child->ptrace))
105 __ptrace_link(child, new_parent);
107 static inline void ptrace_unlink(struct task_struct *child)
109 if (unlikely(child->ptrace)
    [all...]
  /frameworks/base/sax/java/android/sax/
Element.java 27 * An XML element. Provides access to child elements and hooks to listen
56 * Gets the child element with the given name. Uses an empty string as the
64 * Gets the child element with the given name.
80 * Gets the child element with the given name. Uses an empty string as the
82 * time if the specified child is missing. This helps you ensure that your
90 * Gets the child element with the given name. We will throw a
91 * {@link org.xml.sax.SAXException} at parsing time if the specified child
95 Element child = getChild(uri, localName); local
99 requiredChilden.add(child);
101 if (!requiredChilden.contains(child)) {
194 Element child = requiredChildren.get(i); local
    [all...]
  /external/webkit/WebCore/inspector/front-end/
BottomUpProfileDataGridTree.js 27 // The root node is a representation of each individual function called, and each child of that node represents
29 // each child still represent the root node. We have to be particularly careful of recursion with this mode
50 _keepOnlyChild: function(/*ProfileDataGridNode*/ child)
55 this.appendChild(child);
71 var child = this.childrenByCallUID[aCallUID];
73 if (child)
74 this._merge(child, true);
85 _merge: function(/*ProfileDataGridNode*/ child, /*Boolean*/ shouldAbsorb)
87 this.selfTime -= child.selfTime;
89 WebInspector.ProfileDataGridNode.prototype._merge.call(this, child, shouldAbsorb)
    [all...]
  /external/bluetooth/glib/gio/tests/
live-g-file.c 125 GFile *child; local
130 child = g_file_get_child (parent, filename);
131 g_assert (child != NULL);
134 outs = g_file_replace (child, NULL, FALSE, create_flags, NULL, &error);
140 return child;
146 GFile *child; local
150 child = g_file_get_child (parent, filename);
151 g_assert (child != NULL);
153 res = g_file_make_directory (child, NULL, &error);
156 return child;
162 GFile *child; local
179 GFile *child; local
276 GFile *child; local
384 GFile *child; local
569 GFile *root, *child; local
799 GFile *root, *child; local
885 GFile *root, *child; local
956 GFile *child; local
    [all...]
  /dalvik/libcore/xml/src/main/java/org/apache/xalan/templates/
ElemExtensionCall.java 122 for (ElemTemplateElement child = imported.getFirstChildElem();
123 child != null; child = child.getNextSiblingElem())
125 if (Constants.ELEMNAME_EXTENSIONDECL == child.getXSLToken())
127 decl = (ElemExtensionDecl) child;
130 String declNamespace = child.getNamespaceForPrefix(prefix);
154 for (ElemTemplateElement child = m_firstChild; child != null;
155 child = child.m_nextSibling
    [all...]
  /cts/tests/src/android/widget/cts/
MyHorizontalScrollView.java 59 protected void measureChild(View child, int parentWidthMeasureSpec,
61 super.measureChild(child, parentWidthMeasureSpec, parentHeightMeasureSpec);
65 protected void measureChildWithMargins(View child, int parentWidthMeasureSpec, int widthUsed,
67 super.measureChildWithMargins(child, parentWidthMeasureSpec,
  /external/bluetooth/glib/docs/reference/glib/tmpl/
spawn.sgml 61 inherited by the child; otherwise all descriptors except stdin/stdout/stderr
62 will be closed before calling exec() in the child.
63 @G_SPAWN_DO_NOT_REAP_CHILD: the child will not be automatically reaped; you
65 or handle <literal>SIGCHLD</literal> yourself), or the child will become a zombie.
68 @G_SPAWN_STDOUT_TO_DEV_NULL: the child's standard output will be discarded,
70 @G_SPAWN_STDERR_TO_DEV_NULL: the child's standard error will be discarded.
71 @G_SPAWN_CHILD_INHERITS_STDIN: the child will inherit the parent's standard
72 input (by default, the child's standard input is attached to
78 <literal>argv</literal> to the child.
84 is called in the child after GLib has performed all the setup it plan
    [all...]
  /external/dropbear/libtomcrypt/src/pk/asn1/der/sequence/
der_sequence_free.c 39 /* is there a child? */
40 if (in->child) {
42 in->child->parent = NULL;
43 der_sequence_free(in->child);
  /external/webkit/WebCore/manual-tests/
remove-input-file-onchange.html 9 var child = document.getElementById("child");
10 parent.removeChild(child);
32 <div id="child">
  /packages/apps/Contacts/src/com/android/contacts/model/
EntityDiff.java 59 for (NamedContentValues child : after.getSubValues()) {
61 builder = ContentProviderOperation.newInsert(child.uri);
62 builder.withValues(child.values);
71 for (NamedContentValues child : before.getSubValues()) {
72 builder = ContentProviderOperation.newDelete(child.uri);
73 builder.withSelection(getSelectIdClause(child.values), null);
102 // After child doesn't exist, so delete "before" child
107 // After child still exists, and is different, so update
115 // Remove the now-handled "after" child
    [all...]
  /packages/apps/Email/src/org/apache/james/mime4j/field/address/parser/
Node.java 6 machinery for constructing the parent and child relationships
12 node. It indicates that child nodes can now be added to it. */
15 /** This method is called after all the child nodes have been
28 /** This method returns a child node. The children are numbered
  /sdk/layoutopt/libs/uix/src/resources/rules/
IncorrectHeightInScrollView.rule 3 // Description: Checks whether a scrollview's child has the wrong dimension.
IncorrectWidthInHorizontalScrollView.rule 3 // Description: Checks whether a scrollview's child has the wrong dimension.
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/repository/
XmlParserUtils.java 27 * Returns the first child element with the given XML local name.
28 * If xmlLocalName is null, returns the very first child element.
33 for(Node child = node.getFirstChild(); child != null; child = child.getNextSibling()) {
34 if (child.getNodeType() == Node.ELEMENT_NODE &&
35 nsUri.equals(child.getNamespaceURI())) {
36 if (xmlLocalName == null || xmlLocalName.equals(child.getLocalName())) {
37 return child;
59 Node child = getFirstChild(node, xmlLocalName); local
78 Node child = getFirstChild(node, xmlLocalName); local
    [all...]
  /system/core/include/cutils/
config_utils.h 45 /* locate a named child of a config node */
48 /* look up a child by name and return the boolean value */
51 /* look up a child by name and return the string value */
54 /* add a named child to a config node (or modify it if it already exists) */
  /dalvik/libcore/prefs/src/main/java/java/util/prefs/
NodeChangeEvent.java 27 * This is the event class to indicate that one child of the preference node has
44 private final Preferences child; field in class:NodeChangeEvent
53 * the child {@code Preferences} instance that was added or deleted.
58 child = c;
71 * Gets the child {@code Preferences} node that was added or removed.
73 * @return the added or removed child {@code Preferences} node.
76 return child;
  /frameworks/base/awt/java/awt/event/
ContainerEvent.java 44 private Component child; field in class:ContainerEvent
46 public ContainerEvent(Component src, int id, Component child) {
48 this.child = child;
52 return child;
86 return (idString + ",child=" + child.getName()); //$NON-NLS-1$
  /frameworks/base/core/java/android/widget/
ExpandableListView.java 46 * collapsed group, child, or last child). Use
87 * The packed position represents a child.
99 * (first bit 0) should not have a child position filled.
103 /** The mask (in packed position representation) for the child */
118 /** The mask (in integer child position representation) for the child */
127 /** Gives us Views through group+child positions */
137 * Left bound for drawing the indicator of a child. Value of
143 * Right bound for drawing the indicator of a child. Value o
    [all...]
  /dalvik/libcore/dom/src/test/java/org/w3c/domts/level1/core/
hc_namednodemapchildnoderange.java 32 * last child of the third "p" element and traverse the
67 Node child; local
80 child = attributes.item(2);
81 assertNotNull("attr2", child);
84 child = attributes.item(0);
85 assertNotNull("attr0", child);
86 child = attributes.item(1);
87 assertNotNull("attr1", child);
88 child = attributes.item(3);
89 assertNull("attr3", child);
    [all...]
  /frameworks/base/tools/localize/
XLIFFFile_test.cpp 51 XMLNode* child; local
53 child = add_html_tag(res.value, "b");
54 child->EditChildren().push_back(XMLNode::NewText(GENERATED_POS, "b", XMLNode::EXACT));
56 child = add_html_tag(res.value, "i");
57 child->EditChildren().push_back(XMLNode::NewText(GENERATED_POS, "i", XMLNode::EXACT));
59 child = add_html_tag(child, "b");
60 child->EditChildren().push_back(XMLNode::NewText(GENERATED_POS, "b", XMLNode::EXACT));
62 child = add_html_tag(res.value, "u");
63 child->EditChildren().push_back(XMLNode::NewText(GENERATED_POS, "u", XMLNode::EXACT))
    [all...]

Completed in 426 milliseconds

1 23 4 5 6 7 8 91011>>