HomeSort by relevance Sort by last modified time
    Searched full:child (Results 276 - 300 of 3947) sorted by null

<<11121314151617181920>>

  /external/webkit/Source/WebCore/rendering/
RenderObjectChildList.cpp 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
84 // if we remove visible child from an invisible parent, we don't know the layer visibility any more
105 // Update cached boundaries in SVG renderers, if a child is removed.
117 // remove the child
166 // if the new child is visible but this object was not, tell the layer it has some visible content
185 owner->setChildNeedsLayout(true); // We may supply the static position for an absolute positioned child.
191 void RenderObjectChildList::insertChildNode(RenderObject* owner, RenderObject* child, RenderObject* beforeChild, bool fullInsert)
194 appendChildNode(owner, child, fullInsert)
323 RenderObject* child; local
    [all...]
  /frameworks/base/core/java/android/widget/
SimpleExpandableListAdapter.java 28 * An easy adapter to map static data to group and child views defined in an XML
33 * the Map to specific views. This process is similar for a child, except it is
35 * where the first List corresponds to the group of the child, the second List
36 * corresponds to the position of the child within the group, and finally the
37 * Map holds the data for that particular child.
75 * in the inner List corresponds to a child within the group
76 * (index by child position), and the Map corresponds to the data
77 * for a child (index by values in the childFrom array). The Map
78 * contains the data for each child, and should include all the
81 * associated with each child
    [all...]
  /frameworks/support/v4/ics/android/support/v4/view/
ViewGroupCompatIcs.java 27 public static boolean onRequestSendAccessibilityEvent(ViewGroup group, View child,
29 return group.onRequestSendAccessibilityEvent(child, event);
  /ndk/sources/host-tools/make-3.81/
job.h 38 /* Structure describing a running or dead child process. */
40 struct child struct
42 struct child *next; /* Link in the chain. */
52 pid_t pid; /* Child process's ID number. */
62 unsigned int good_stdin:1; /* Nonzero if this child has a good stdin. */
67 extern struct child *children;
75 extern int child_execute_job PARAMS ((char *argv, struct child *child));
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
ScrollViewRule.java 40 public void onChildInserted(INode child, INode parent, InsertType insertType) {
41 super.onChildInserted(child, parent, insertType);
43 // The child of the ScrollView should fill in both directions
45 child.setAttribute(ANDROID_URI, ATTR_LAYOUT_WIDTH, fillParent);
46 child.setAttribute(ANDROID_URI, ATTR_LAYOUT_HEIGHT, fillParent);
55 // a child of this node and the create child method above will set its
66 // ScrollViews only allow a single child
  /external/chromium/base/
template_util_unittest.cc 16 class Child : public Parent {};
44 // EXPECT_TRUE( (is_convertible < Child), (Parent > ::value));
47 EXPECT_TRUE( (is_convertible<Child, Parent>::value) );
48 EXPECT_FALSE( (is_convertible<Parent, Child>::value) );
  /external/chromium/chrome/browser/ui/views/bookmarks/
bookmark_bar_instructions_view.h 18 // BookmarkBarInstructionsView is a child of the bookmark bar that is visible
44 views::View* child) OVERRIDE;
58 // The baseline of the child views. This is -1 if none of the views support a
62 // Have the colors of the child views been updated? This is initially false
  /external/chromium/chrome/browser/ui/views/infobars/
translate_message_infobar.cc 39 View* child) {
40 if (is_add && (child == this) && (label_ == NULL)) {
53 // the close button is the last child.
54 TranslateInfoBarBase::ViewHierarchyChanged(is_add, parent, child);
  /external/llvm/test/Transforms/LowerSwitch/
2003-05-01-PHIProblem.ll 3 define void @child(i32 %ct.1) {
  /packages/apps/Mms/src/com/android/mms/dom/smil/
ElementSequentialTimeContainerImpl.java 63 ElementTime child = (ElementTime) children.item(i); local
64 if (child.getDur() < 0) {
65 // Return "indefinite" since containing a child whose duration is indefinite.
68 dur += child.getDur();
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/bits/
waitflags.h 30 #define WSTOPPED 2 /* Report stopped child (same as WUNTRACED). */
31 #define WEXITED 4 /* Report dead child. */
32 #define WCONTINUED 8 /* Report continued child. */
37 #define __WALL 0x40000000 /* Wait for any child. */
  /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) */
  /external/chromium/chrome/browser/extensions/
extension_menu_manager.cc 44 ExtensionMenuItem* child = NULL; local
46 child = *i;
48 return child;
50 child = (*i)->ReleaseChild(child_id, recursive);
51 if (child)
52 return child;
61 ExtensionMenuItem* child = *i; local
62 result.insert(child->id());
63 std::set<Id> removed = child->RemoveAllDescendants();
152 ExtensionMenuItem* child) {
185 ExtensionMenuItem* child = GetItemById(child_id); local
260 ExtensionMenuItem* child = (*j)->ReleaseChild(id, true \/* recursive *\/); local
    [all...]
  /external/skia/src/views/
SkListWidget.cpp 438 const SkDOM::Node* child; local
440 if ((child = dom.getFirstChild(node, "bindings")) != NULL)
446 SkListSource* listSrc = SkListSource::Factory(dom.findAttr(child, "data-fields"));
448 fSkinName.set(dom.findAttr(child, "skin-slots"));
453 int count = dom.countChildren(child, "bind");
459 child = dom.getFirstChild(child, "bind");
460 SkASSERT(child);
462 const char* fieldName = dom.findAttr(child, "field");
463 const char* slotName = dom.findAttr(child, "slot")
547 const SkDOM::Node* child; local
    [all...]
  /external/webkit/Source/WebCore/html/
HTMLObjectElement.cpp 163 for (Node* child = firstChild(); child; child = child->nextSibling()) {
164 if (!child->hasTagName(paramTag))
167 HTMLParamElement* p = static_cast<HTMLParamElement*>(child);
228 for (Node* child = firstChild(); child; child = child->nextSibling())
429 Node* child = firstChild(); local
    [all...]
  /bionic/libc/arch-x86/bionic/
clone.S 18 # insert arguments onto the child stack
39 # we're in the child thread now, call __thread_entry
40 # with the appropriate arguments on the child stack
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
ElemCopyOf.java 164 // generated, so we need to only walk the child nodes.
167 for (int child = dtm.getFirstChild(pos); child != DTM.NULL;
168 child = dtm.getNextSibling(child))
170 tw.traverse(child);
211 * Add a child to the child list.
213 * @param newChild Child to add to this node's child lis
    [all...]
  /external/chromium/chrome/browser/ui/gtk/
gtk_chrome_shrinkable_hbox_unittest.cc 49 GtkWidget* child = gtk_fixed_new(); local
50 gtk_widget_set_size_request(child, kChildrenData[i].width, -1);
53 GTK_CHROME_SHRINKABLE_HBOX(box_), child, kChildrenData[i].padding); local
56 GTK_CHROME_SHRINKABLE_HBOX(box_), child, kChildrenData[i].padding); local
91 SCOPED_TRACE(testing::Message() << "Validate homogeneous child " << i
108 SCOPED_TRACE(testing::Message() << "Validate child " << i
195 static void CollectChildData(GtkWidget* child, gpointer userdata) {
197 gtk_box_query_child_packing(GTK_BOX(gtk_widget_get_parent(child)), child,
201 data.visible = GTK_WIDGET_VISIBLE(child);
    [all...]
  /external/chromium/chrome/common/extensions/docs/examples/extensions/mappy/
mappy_content_script.js 18 var child = node.childNodes[i];
19 if (child.textContent.match(re)) {
20 node = child;
  /external/chromium/testing/
multiprocess_func_list.h 11 // as the main function of a child process in a multi-process test.
22 // // Code here runs in a child process.
31 // Type for child process main functions.
  /external/collada/include/dae/
daeMetaAny.h 25 * correct order of child elements.
32 daeElement *placeElement( daeElement *parent, daeElement *child, daeUInt &ordinal, daeInt offset = 0, daeElement* before = NULL, daeElement *after = NULL );
33 daeBool removeElement(daeElement* parent, daeElement* child);
daeMetaChoice.h 26 * correct order of child elements.
33 daeElement *placeElement( daeElement *parent, daeElement *child, daeUInt &ordinal, daeInt offset = 0, daeElement* before = NULL, daeElement *after = NULL );
34 daeBool removeElement(daeElement* parent, daeElement* child);
daeMetaGroup.h 28 * correct order of child elements.
40 daeElement *placeElement( daeElement *parent, daeElement *child, daeUInt &ordinal, daeInt offset = 0, daeElement* before = NULL, daeElement *after = NULL );
41 daeBool removeElement(daeElement* parent, daeElement* child);
daeMetaSequence.h 25 * correct order of child elements.
36 daeElement *placeElement( daeElement *parent, daeElement *child, daeUInt &ordinal, daeInt offset = 0, daeElement* before = NULL, daeElement *after = NULL );
37 daeBool removeElement(daeElement* parent, daeElement* child);
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
AOptimizedMultipleCommand.java 35 void removeChild(Node child) {
44 // Replace child
53 throw new RuntimeException("Not a child.");

Completed in 1961 milliseconds

<<11121314151617181920>>