HomeSort by relevance Sort by last modified time
    Searched refs:child (Results 151 - 175 of 2913) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/skia/src/views/
SkView.cpp 135 SkView* child; local
139 while ((child = iter.next()) != NULL)
140 child->draw(childCanvas);
224 SkView* child, *focus; local
225 while ((child = iter.next()) != NULL)
226 if ((focus = child->acceptFocus(dir)) != NULL)
232 SkView* child, *focus; local
233 while ((child = iter.next()) != NULL)
234 if ((focus = child->acceptFocus(dir)) != NULL)
255 SkView* child, *parent local
379 SkView* child; local
701 SkView* child; local
812 SkView* child; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGContainer.cpp 90 void RenderSVGContainer::addChild(RenderObject* child, RenderObject* beforeChild)
92 RenderSVGModelObject::addChild(child, beforeChild);
93 SVGResourcesCache::clientWasAddedToTree(child, child->style());
96 void RenderSVGContainer::removeChild(RenderObject* child)
98 SVGResourcesCache::clientWillBeRemovedFromTree(child);
99 RenderSVGModelObject::removeChild(child);
146 for (RenderObject* child = firstChild(); child; child = child->nextSibling()
    [all...]
RenderSVGTSpan.h 32 virtual bool isChildAllowed(RenderObject* child, RenderStyle*) const OVERRIDE;
  /frameworks/support/v7/appcompat/src/android/support/v7/widget/
LinearLayoutCompat.java 44 * You can also specify gravity, which specifies the alignment of all the child elements by
101 * use the child at this index as the baseline.
109 * The additional offset to the child's baseline.
293 final View child = getVirtualChildAt(i); local
295 if (child != null && child.getVisibility() != GONE) {
297 final LayoutParams lp = (LayoutParams) child.getLayoutParams();
298 final int top = child.getTop() - lp.topMargin - mDividerHeight;
305 final View child = getVirtualChildAt(count - 1); local
307 if (child == null)
321 final View child = getVirtualChildAt(i); local
338 final View child = getVirtualChildAt(count - 1); local
428 final View child = getChildAt(mBaselineAlignedChildIndex); local
613 final View child = getVirtualChildAt(i); local
733 final View child = getVirtualChildAt(i); local
776 final View child = getVirtualChildAt(i); local
850 final View child = getVirtualChildAt(i); local
893 final View child = getVirtualChildAt(i); local
959 final View child = getVirtualChildAt(i); local
1113 final View child = getVirtualChildAt(i); local
1164 final View child = getVirtualChildAt(i); local
1271 final View child = getVirtualChildAt(i); local
1316 final View child = getVirtualChildAt(i); local
1457 final View child = getVirtualChildAt(i); local
1568 final View child = getVirtualChildAt(childIndex); local
    [all...]
  /cts/tests/tests/widget/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,
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
PictureLayout.java 41 public void addView(View child) {
43 throw new IllegalStateException("PictureLayout can host only one direct child");
46 super.addView(child);
50 public void addView(View child, int index) {
52 throw new IllegalStateException("PictureLayout can host only one direct child");
55 super.addView(child, index);
59 public void addView(View child, LayoutParams params) {
61 throw new IllegalStateException("PictureLayout can host only one direct child");
64 super.addView(child, params);
68 public void addView(View child, int index, LayoutParams params)
89 final View child = getChildAt(i); local
150 final View child = getChildAt(i); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
ParentNode.h 60 for (Element* child = ElementTraversal::firstWithin(node); child; child = ElementTraversal::nextSibling(*child))
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderFlexibleBox.h 87 bool hasOrthogonalFlow(RenderBox* child) const;
91 Length flexBasisForChild(RenderBox* child) const;
92 LayoutUnit crossAxisExtentForChild(RenderBox* child) const;
93 LayoutUnit crossAxisIntrinsicExtentForChild(RenderBox* child) const;
94 LayoutUnit childIntrinsicHeight(RenderBox* child) const;
95 LayoutUnit childIntrinsicWidth(RenderBox* child) const;
96 LayoutUnit mainAxisExtentForChild(RenderBox* child) const;
101 LayoutUnit computeMainAxisExtentForChild(RenderBox* child, SizeType, const Length& size);
111 LayoutUnit flowAwareMarginStartForChild(RenderBox* child) const;
112 LayoutUnit flowAwareMarginEndForChild(RenderBox* child) const
    [all...]
RenderRuby.h 59 virtual void addChild(RenderObject* child, RenderObject* beforeChild = 0) OVERRIDE;
60 virtual void removeChild(RenderObject* child) OVERRIDE;
77 virtual void addChild(RenderObject* child, RenderObject* beforeChild = 0) OVERRIDE;
78 virtual void removeChild(RenderObject* child) OVERRIDE;
  /external/chromium_org/ui/views/ime/
input_method_bridge_unittest.cc 30 // |child| owns |native_widget|.
34 Widget* child = new Widget; local
38 // |child| owns |native_widget|.
39 child_params.native_widget = new NativeWidgetAura(child);
40 child->Init(child_params);
42 child->GetInputMethod()->OnFocus();
  /external/chromium_org/ui/wm/core/
base_focus_rules.cc 97 aura::Window* child = window; local
99 if (IsToplevelWindow(child))
100 return child;
103 child = child->parent();
110 aura::Window* child = window; local
112 if (CanActivateWindow(child))
113 return child;
115 // CanActivateWindow() above will return false if |child| is blocked by a
119 aura::Window* modal_transient = GetModalTransient(child);
    [all...]
transient_window_controller.cc 18 aura::Window* child) {
19 TransientWindowManager::Get(parent)->AddTransientChild(child);
23 aura::Window* child) {
24 TransientWindowManager::Get(parent)->RemoveTransientChild(child);
  /external/llvm/tools/lli/ChildTarget/
Makefile 11 TOOLNAME := lli-child-target
  /external/strace/test/
childthread.c 1 /* Test exit of a child of a TCB_EXITING child where the toplevel process starts
26 pid_t child, got_pid; local
30 child = fork();
32 switch (child) {
38 /* The thread must be initialized, it becomes thread-child of this
39 process-child (child of a child of the toplevel process). */
41 /* Here the child TCB cannot be deallocated as there still exis
    [all...]
  /external/valgrind/main/none/tests/
allexec.c 13 pid_t child = fork(); \
14 if (child == 0) {exec_call; perror ("exec failed");} \
15 else if (child == -1) perror ("cannot fork\n"); \
16 else if (child != wait (&status)) perror ("error waiting child"); \
17 else S("child exited\n"); \
  /hardware/intel/common/libwsbm/src/
wsbm_mm.c 91 struct _WsbmMMNode *child; local
93 child = (struct _WsbmMMNode *)malloc(sizeof(*child));
94 if (!child)
97 child->free = 1;
98 child->size = size;
99 child->start = start;
100 child->mm = mm;
102 WSBMLISTADDTAIL(&child->ml_entry, &mm->ml_entry);
103 WSBMLISTADDTAIL(&child->fl_entry, &mm->fl_entry)
111 struct _WsbmMMNode *child; local
138 struct _WsbmMMNode *child; local
    [all...]
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
characterdataappenddata.java 34 * Retrieve the character data from the second child
70 CharacterData child; local
76 child = (CharacterData) nameNode.getFirstChild();
77 child.appendData(", Esquire");
78 childValue = child.getData();
characterdataappenddatagetdata.java 35 * Retrieve the character data from the second child
71 CharacterData child; local
76 child = (CharacterData) nameNode.getFirstChild();
77 child.appendData(", Esquire");
78 childData = child.getData();
characterdatadeletedatabegining.java 34 * Retrieve the character data from the last child of the
69 CharacterData child; local
74 child = (CharacterData) nameNode.getFirstChild();
75 child.deleteData(0, 16);
76 childData = child.getData();
characterdatadeletedataend.java 35 * Retrieve the character data from the last child of the
71 CharacterData child; local
76 child = (CharacterData) nameNode.getFirstChild();
77 child.deleteData(30, 5);
78 childData = child.getData();
characterdatadeletedataexceedslength.java 36 * Retrieve the character data from the last child of the
73 CharacterData child; local
78 child = (CharacterData) nameNode.getFirstChild();
79 child.deleteData(4, 50);
80 childData = child.getData();
characterdatadeletedatamiddle.java 35 * Retrieve the character data from the last child of the
71 CharacterData child; local
76 child = (CharacterData) nameNode.getFirstChild();
77 child.deleteData(16, 8);
78 childData = child.getData();
characterdatainsertdatabeginning.java 34 * Retrieve the character data from the second child of
69 CharacterData child; local
74 child = (CharacterData) nameNode.getFirstChild();
75 child.insertData(0, "Mss. ");
76 childData = child.getData();
characterdatainsertdataend.java 35 * Retrieve the character data from the second child of
71 CharacterData child; local
76 child = (CharacterData) nameNode.getFirstChild();
77 child.insertData(15, ", Esquire");
78 childData = child.getData();
characterdatainsertdatamiddle.java 35 * Retrieve the character data from the second child of
71 CharacterData child; local
76 child = (CharacterData) nameNode.getFirstChild();
77 child.insertData(9, "Ann ");
78 childData = child.getData();

Completed in 509 milliseconds

1 2 3 4 5 67 8 91011>>