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

<<21222324252627282930>>

  /cts/tests/tests/widget/src/android/widget/cts/
ScrollViewTest.java 114 fail("ScrollView can host only one direct child");
131 fail("ScrollView can host only one direct child");
146 fail("ScrollView can host only one direct child");
156 fail("ScrollView can host only one direct child");
174 fail("ScrollView can host only one direct child");
203 fail("ScrollView can host only one direct child");
230 fail("ScrollView can host only one direct child");
240 fail("ScrollView can host only one direct child");
314 MyView child = new MyView(mActivity); local
315 child.setBackgroundDrawable(null)
335 MyView child = new MyView(mActivity); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderBlockFlow.h 91 LayoutUnit computeStartPositionDeltaForChildAvoidingFloats(const RenderBox* child, LayoutUnit childMarginStart);
195 // FIXME: This should be const to avoid a const_cast, but can modify child dirty bits and RenderCombineText
225 void setLogicalLeftForChild(RenderBox* child, LayoutUnit logicalLeft, ApplyLayoutDeltaMode = DoNotApplyLayoutDelta);
226 void setLogicalTopForChild(RenderBox* child, LayoutUnit logicalTop, ApplyLayoutDeltaMode = DoNotApplyLayoutDelta);
227 void determineLogicalLeftPositionForChild(RenderBox* child, ApplyLayoutDeltaMode = DoNotApplyLayoutDelta);
233 void layoutBlockChild(RenderBox* child, MarginInfo&, LayoutUnit& previousFloatLogicalBottom);
234 void adjustPositionedBlock(RenderBox* child, const MarginInfo&);
239 LayoutUnit xPositionForFloatIncludingMargin(const FloatingObject* child) const
242 return child->x() + child->renderer()->marginLeft()
    [all...]
RenderBlock.cpp 381 // One of the renderers we're skipping over here may be the child's repaint container,
479 // The goal is to locate a suitable box in which to place our child.
491 // If the new child is floating or positioned it can just go in that block.
497 // See if the child can be placed in the box.
626 // Insert our child clone as the first child.
639 // Now we need to take all of the children starting from the first child
983 RenderObject *child = firstChild(); local
1173 RenderObject* child = prev ? prev : next; local
2515 RenderObject* child = beforeBlock->lastChild(); local
3647 RenderObject* child = firstChild(); local
    [all...]
RenderFullScreen.cpp 158 RenderObject* child; local
159 while ((child = firstChild())) {
161 // may have set one on the child, and we don't want to leave that
162 // lying around on the child.
163 if (child->isBox())
164 toRenderBox(child)->clearOverrideSize();
165 child->remove();
166 parent()->addChild(child, this);
  /frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
SpinnerCompat.java 47 * A view that displays one child at a time and lets the user pick among them. The items in the
378 View child = null; local
381 child = getChildAt(0);
383 child = makeView(0, false);
384 mRecycler.put(0, child);
387 if (child != null) {
388 final int childBaseline = child.getBaseline();
389 return childBaseline >= 0 ? child.getTop() + childBaseline : -1;
520 * @param addChild true to add the child to the spinner, false to obtain and configure only.
525 View child; local
    [all...]
  /frameworks/base/core/java/android/widget/
ScrollView.java 51 * is a {@link FrameLayout}, meaning you should place one child in it
52 * containing the entire contents to scroll; this child may itself be a layout
53 * manager with a complex hierarchy of objects. A child that is often used
97 * The child to give focus to in the event that a child has requested focus while the
98 * layout is dirty. This prevents the scroll from being wrong if the child has not been
116 * When set to true, the scroll view measure its child to make it fill the currently
246 public void addView(View child) {
248 throw new IllegalStateException("ScrollView can host only one direct child");
251 super.addView(child);
285 View child = getChildAt(0); local
349 final View child = getChildAt(0); local
425 final View child = getChildAt(0); local
874 View child = getChildAt(0); local
1622 View child = getChildAt(0); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLObjectElement.cpp 219 for (Node* child = firstChild(); child; child = child->nextSibling()) {
221 if (child->isTextNode()) {
222 if (!toText(child)->containsOnlyWhitespace())
224 } else if (!isHTMLParamElement(*child)) {
448 for (HTMLElement* child = Traversal<HTMLElement>::firstChild(*this); child; child = Traversal<HTMLElement>::nextSibling(*child))
    [all...]
  /external/chromium_org/third_party/mesa/src/src/glsl/
ralloc.c 61 /* The first child (head of a linked list) */
62 struct ralloc_header *child; member in struct:ralloc_header
92 info->next = parent->child;
93 parent->child = info;
134 ralloc_header *child, *old, *info; local
144 if (info->parent->child == old)
145 info->parent->child = info;
154 /* Update child->parent links for all children */
155 for (child = info->child; child != NULL; child = child->next
    [all...]
  /external/mesa3d/src/glsl/
ralloc.c 61 /* The first child (head of a linked list) */
62 struct ralloc_header *child; member in struct:ralloc_header
92 info->next = parent->child;
93 parent->child = info;
134 ralloc_header *child, *old, *info; local
144 if (info->parent->child == old)
145 info->parent->child = info;
154 /* Update child->parent links for all children */
155 for (child = info->child; child != NULL; child = child->next
    [all...]
  /external/valgrind/main/coregrind/
m_sparsewa.c 66 void* child[256]; /* either LevelN* or Level0* */ member in struct:__anon36287
219 if (levelN->child[curr_ix]) {
222 curr_nd = levelN->child[curr_ix];
259 if (levelN->child[i]) {
260 swa_deleteSWA_wrk( dealloc, levelN->child[i] );
295 levelN = levelN->child[ix];
332 if (levelN->child[ix] == NULL) {
333 levelN->child[ix] = swa_new_LevelN(swa, i-1);
337 levelN = levelN->child[ix];
344 if (levelN->child[ix] == NULL)
    [all...]
  /external/chromium_org/third_party/webtreemap/src/
webtreemap.js 110 var rmin = node.data['$area']; // Smallest seen child so far.
111 var rmax = rmin; // Largest child.
147 y1 += 14; // XXX get first child height for caption spacing
151 for (var start = 0, child; child = tree.children[start]; ++start) {
153 if (child.dom) {
154 child.dom.style.zIndex = 0;
155 position(child.dom, -2, -2, 0, 0);
179 child = tree.children[i];
180 if (!child.dom)
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
DragLayer.java 127 for (AppWidgetResizeFrame child: mResizeFrames) {
128 child.getHitRect(hitRect);
130 if (child.beginResizeIfPointInRegion(x - child.getLeft(), y - child.getTop())) {
131 mCurrentResizeFrame = child;
226 public boolean onRequestSendAccessibilityEvent(View child, AccessibilityEvent event) {
229 if (child == currentFolder) {
230 return super.onRequestSendAccessibilityEvent(child, event);
236 return super.onRequestSendAccessibilityEvent(child, event)
411 View child = getChildAt(i); local
    [all...]
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/widget/
ScrollAdapterView.java 125 * on each child view.
168 /** saved measuredSpec to pass to child views */
206 void recycleView(View child, int type) {
208 mAdapter.viewRemoved(child);
212 mViews[type].add(child);
302 /** saves all expandable child states */
305 /** saves all expanded child states */
569 View child = getChildAt(i);
570 removeViewInLayout(child);
571 recycleExpandableView(child);
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
ElemExtensionDecl.java 210 for (ElemTemplateElement child = getFirstChildElem(); child != null;
211 child = child.getNextSiblingElem())
213 if (Constants.ELEMNAME_EXTENSIONSCRIPT == child.getXSLToken())
215 ElemExtensionScript sdecl = (ElemExtensionScript) child;
291 for (ElemTemplateElement child = getFirstChildElem(); child != null;
292 child = child.getNextSiblingElem()
    [all...]
  /external/chromium_org/ash/test/
child_modal_window.cc 35 // Child window size.
39 // Child window layout.
101 return base::ASCIIToUTF16("Examples: Child Modal Window");
115 "Show/Hide Child Modal Window"))),
153 Widget* child = Widget::CreateWindowWithParent( local
155 wm::SetModalParent(child->GetNativeView(), GetModalParent());
156 child->AddObserver(this);
157 child->GetNativeView()->SetName("ChildModalWindow");
158 return child;
166 return base::ASCIIToUTF16("Examples: Child Modal Parent")
    [all...]
  /external/chromium_org/ash/wm/dock/
docked_window_layout_manager.h 96 // Starts observing the window unless it is a child.
106 // Stops observing the window unless it is a child.
139 virtual void OnWindowAddedToLayout(aura::Window* child) OVERRIDE;
140 virtual void OnWillRemoveWindowFromLayout(aura::Window* child) OVERRIDE {}
141 virtual void OnWindowRemovedFromLayout(aura::Window* child) OVERRIDE;
142 virtual void OnChildWindowVisibilityChanged(aura::Window* child,
144 virtual void SetChildBounds(aura::Window* child,
187 // (except for |child|).
188 void MaybeMinimizeChildrenExcept(aura::Window* child);
  /external/chromium_org/athena/home/
home_card_impl.cc 32 virtual void OnWindowAddedToLayout(aura::Window* child) OVERRIDE { Layout(); }
33 virtual void OnWillRemoveWindowFromLayout(aura::Window* child) OVERRIDE {}
34 virtual void OnWindowRemovedFromLayout(aura::Window* child) OVERRIDE {
37 virtual void OnChildWindowVisibilityChanged(aura::Window* child,
41 virtual void SetChildBounds(aura::Window* child,
43 SetChildBoundsDirect(child, gfx::Rect(requested_bounds.size()));
  /external/chromium_org/chrome/browser/
memory_details_win.cc 127 // Check if this is one of the child processes whose data we collected
129 for (size_t child = 0; child < child_info.size(); child++) {
130 if (child_info[child].pid != info.pid)
132 info.titles = child_info[child].titles;
133 info.process_type = child_info[child].process_type;
  /external/chromium_org/chrome/browser/ui/views/location_bar/
star_view_browsertest.cc 81 HWND* child = reinterpret_cast<HWND*>(l_param); local
82 *child = hwnd;
83 // The first child window is the plugin, then its children. So stop
116 HWND child = NULL; local
117 EnumChildWindows(hwnd, EnumerateChildren,reinterpret_cast<LPARAM>(&child));
120 int result = GetWindowRgnBox(child, &region_before);
141 result = GetWindowRgnBox(child, &region_after);
  /external/chromium_org/chrome/browser/ui/webui/print_preview/
print_preview_ui_browsertest.cc 127 HWND* child = reinterpret_cast<HWND*>(l_param); local
128 *child = hwnd;
129 // The first child window is the plugin, then its children. So stop
156 HWND child = NULL; local
157 EnumChildWindows(hwnd, EnumerateChildren,reinterpret_cast<LPARAM>(&child));
160 int result = GetWindowRgnBox(child, &region_before);
166 result = GetWindowRgnBox(child, &region_after);
  /external/chromium_org/chrome/test/chromedriver/chrome/
log.cc 47 const base::Value* child = NULL; local
48 dict->GetWithoutPathExpansion(it.key(), &child);
50 SmartDeepCopy(child).release());
56 const base::Value* child = NULL; local
57 if (!list->Get(i, &child))
63 list_copy->Append(SmartDeepCopy(child).release());
  /external/chromium_org/media/formats/mp4/
box_reader.h 108 // buffer position. Must be called before any of the *Child functions work.
111 // Return true if child with type |child.BoxType()| exists.
112 bool HasChild(Box* child) WARN_UNUSED_RESULT;
114 // Read exactly one child box from the set of children. The type of the child
115 // will be determined by the BoxType() method of |child|.
116 bool ReadChild(Box* child) WARN_UNUSED_RESULT;
118 // Read one child if available. Returns false on error, true on successful
119 // read or on child absent
210 T child; local
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
ALoopCommand.java 194 void removeChild(@SuppressWarnings("unused") Node child)
196 // Remove child
197 if(this._position_ == child)
203 if(this._variable_ == child)
209 if(this._start_ == child)
215 if(this._end_ == child)
221 if(this._command_ == child)
227 throw new RuntimeException("Not a child.");
233 // Replace child
264 throw new RuntimeException("Not a child.")
    [all...]
  /libcore/luni/src/test/java/libcore/java/util/prefs/
OldNodeChangeEventTest.java 57 Preferences child = e.getChild();
58 if (child == null) {
61 if (child.name() == "mock1") {
69 Preferences child = e.getChild();
70 if (child == null) {
73 if (child.name() == "mock1") {
  /packages/apps/Mms/src/com/android/mms/dom/smil/
ElementParallelTimeContainerImpl.java 90 ElementTime child = (ElementTime) children.item(i); local
91 TimeList endTimeList = child.getEnd();
121 ElementTime child = (ElementTime) children.item(i); local
123 TimeList beginList = child.getBegin();
136 TimeList endList = child.getEnd();
150 activeChildren.add((Node) child);

Completed in 879 milliseconds

<<21222324252627282930>>