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

<<31323334353637383940>>

  /frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
LinearLayoutManagerTest.java 129 assertNotNull("focused child should stay in layout", postVH);
130 assertSame("same view holder should be kept for unchanged child", vh, postVH);
131 assertEquals("focused child's screen position should stay unchanged", top,
168 // get middle child
169 final View child = mLayoutManager.getChildAt(mLayoutManager.getChildCount() / 2); local
170 final int position = mRecyclerView.getChildPosition(child);
173 .getDecoratedEnd(child)
174 : orientationHelper.getDecoratedStart(child) - orientationHelper
183 .getDecoratedEnd(child)
184 : orientationHelper.getDecoratedStart(child) - orientationHelpe
204 final View child = mLayoutManager.findViewByPosition(target.mPosition); local
234 View child = mLayoutManager.getChildAt(i); local
967 View child = getChildAt(i); local
1001 View child = getChildAt(i); local
    [all...]
  /external/chromium_org/ui/gfx/geometry/
r_tree_unittest.cc 36 rt->root()->child(i), rt->min_children_, rt->max_children_);
52 ValidateNode(node->child(i), min_children, max_children);
62 const RTreeBase::NodeBase* child_node = node->child(i);
86 // ith element of the vector is the union of the rectangle of the ith child of
95 expanded_rect.Union(node->child(i)->rect());
111 return static_cast<const RTreeRecord*>(node->child(i));
295 NodeCompareCenterDistanceFromParent(parent->child(0), parent->child(1)));
297 NodeCompareCenterDistanceFromParent(parent->child(1), parent->child(0)))
629 RTreeNodeBase* child = test_parent->child(2); local
    [all...]
  /external/chromium_org/ui/events/
event_dispatcher_unittest.cc 230 TestTarget parent, child; local
234 child.set_parent(&parent);
239 child.AddPreTargetHandler(&h3);
240 child.AddPreTargetHandler(&h4);
247 child.AddPostTargetHandler(&h5);
248 child.AddPostTargetHandler(&h6);
261 dispatcher.ProcessEvent(&child, &mouse);
269 child.handler_list());
272 child.Reset();
277 dispatcher.ProcessEvent(&child, &mouse)
    [all...]
  /frameworks/base/core/java/android/widget/
FrameLayout.java 45 * a single item. Generally, FrameLayout should be used to hold a single child view, because it can
46 * be difficult to organize child views in a way that's scalable to different screen sizes without
48 * and control their position within the FrameLayout by assigning gravity to each child, using the
51 * <p>Child views are drawn in a stack, with the most recently added child on top.
52 * The size of the FrameLayout is the size of its largest child (plus padding), visible
259 * Supply a Drawable that is to be rendered on top of all of the child
428 final View child = getChildAt(i); local
429 if (mMeasureAllChildren || child.getVisibility() != GONE) {
430 measureChildWithMargins(child, widthMeasureSpec, 0, heightMeasureSpec, 0)
468 final View child = mMatchParentChildren.get(i); local
524 final View child = getChildAt(i); local
    [all...]
  /packages/experimental/LoaderApp/src/com/android/loaderapp/model/
EntityDelta.java 147 * Get the {@link ValuesDelta} child marked as {@link Data#IS_PRIMARY},
203 * Return the list of child {@link ValuesDelta} from our optimized map,
224 for (ValuesDelta child : mimeEntries) {
226 if (onlyVisible && !child.isVisible()) continue;
282 for (ValuesDelta child : mimeEntries) {
284 if (!other.containsEntry(child)) return false;
296 for (ValuesDelta child : mimeEntries) {
297 // Contained if we find any child that matches
298 if (child.equals(entry)) return true;
310 for (ValuesDelta child : mimeEntries)
467 final ValuesDelta child = source.<ValuesDelta> readParcelable(loader); local
    [all...]
  /external/chromium_org/cc/layers/
layer_unittest.cc 161 scoped_refptr<Layer> child = Layer::Create(); local
165 EXPECT_FALSE(child->parent());
168 EXPECT_SET_NEEDS_FULL_TREE_SYNC(1, parent->AddChild(child));
171 EXPECT_EQ(child.get(), parent->children()[0]);
172 EXPECT_EQ(parent.get(), child->parent());
173 EXPECT_EQ(parent.get(), child->RootLayer());
175 EXPECT_SET_NEEDS_FULL_TREE_SYNC(AtLeast(1), child->RemoveFromParent());
182 scoped_refptr<Layer> child = Layer::Create(); local
188 parent->AddChild(child);
190 EXPECT_EQ(parent.get(), child->parent())
456 scoped_refptr<Layer> child = Layer::Create(); local
831 scoped_refptr<Layer> child = Layer::Create(); local
966 scoped_refptr<Layer> child = Layer::Create(); local
1006 scoped_refptr<Layer> child = Layer::Create(); local
1026 scoped_refptr<Layer> child = Layer::Create(); local
1127 scoped_refptr<Layer> child = Layer::Create(); local
    [all...]
  /external/chromium_org/third_party/angle/src/compiler/translator/
Intermediate.cpp 198 TIntermTyped* child = addConversion(op, left->getType(), right); local
199 if (child)
200 right = child;
202 child = addConversion(op, right->getType(), left);
203 if (child)
204 left = child;
251 TIntermTyped* child = addConversion(op, left->getType(), right); local
252 if (child == 0)
256 node->setRight(child);
290 TIntermTyped* child = childNode->getAsTyped() local
646 TIntermTyped* child = addConversion(EOpSequence, trueBlock->getType(), falseBlock); local
    [all...]
  /external/chromium_org/ui/views/controls/menu/
menu_item_view.cc 64 // Padding between child views.
116 void MenuItemView::ChildPreferredSizeChanged(View* child) {
158 // The first child is taking over, just use its accessible name instead of
160 View* child = child_at(0); local
162 child->GetAccessibleState(&state);
478 View* child = GetSubmenu()->child_at(i); local
479 if (child->id() == MenuItemView::kMenuItemViewID) {
480 MenuItemView* result = static_cast<MenuItemView*>(child)->
519 View* child = child_at(0); local
520 gfx::Size size = child->GetPreferredSize()
527 View* child = child_at(i); local
711 MenuItemView* child = submenu_->GetMenuItemAt(i); local
723 View* child = submenu_->child_at(i); local
929 const View* child = child_at(i); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
DataGrid.js     [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
RelativeLayoutConversionHelper.java 337 * Returns the layout weight of of the given child of a LinearLayout, or 0.0 if it
361 for (Element child : DomUtilities.getChildren(linearLayout)) {
362 sum += getWeight(child);
380 // Baseline alignment. Find the tallest child and set it as the baseline reference.
383 for (Element child : DomUtilities.getChildren(layout)) {
384 View view = edgeList.getView(child);
405 Element child = children.get(index); local
407 View childView = edgeList.getView(child);
418 float weight = getWeight(child);
422 // child has a non-zero weight, and all children after it are pushe
683 Element child = (Element) node; local
    [all...]
  /external/wpa_supplicant_8/hs20/client/
osu_client.c 759 xml_node_t *child; local
761 xml_node_for_each_child(ctx->xml, child, spel) {
762 xml_node_for_each_check(ctx->xml, child);
763 set_pps_cred_policy_spe(ctx, id, child);
827 xml_node_t *child; local
829 xml_node_for_each_child(ctx->xml, child, prpl) {
830 xml_node_for_each_check(ctx->xml, child);
831 set_pps_cred_policy_prp(ctx, id, child);
911 xml_node_t *child; local
915 xml_node_for_each_child(ctx->xml, child, node)
983 xml_node_t *child; local
1010 xml_node_t *child; local
1098 xml_node_t *child; local
1151 xml_node_t *child; local
1202 xml_node_t *child; local
1216 xml_node_t *child; local
1248 xml_node_t *child; local
1274 xml_node_t *child; local
1429 xml_node_t *child; local
1624 xml_node_t *child, *sim, *realm; local
1659 xml_node_t *child; local
1689 xml_node_t *child; local
    [all...]
  /bionic/libc/arch-x86_64/bionic/
__bionic_clone.S 33 # Copy 'fn' and 'arg' onto the child stack.
65 # We're in the child now, so call __start_thread
66 # with the arguments from the child stack moved into
  /external/chromium-trace/trace-viewer/src/base/
unittest.css 59 .test-result:nth-child(2n),
60 .individual-result:nth-child(2n) {
  /external/chromium_org/ash/shelf/
overflow_bubble_view.h 49 virtual void ChildPreferredSizeChanged(views::View* child) OVERRIDE;
  /external/chromium_org/ash/system/chromeos/power/
power_status_view.h 48 virtual void ChildPreferredSizeChanged(views::View* child) OVERRIDE;
  /external/chromium_org/ash/wm/panels/
panel_window_resizer_unittest.cc 500 scoped_ptr<aura::Window> child(CreateTestWindowInShellWithDelegateAndType(
502 ::wm::AddTransientChild(window.get(), child.get());
503 if (window->parent() != child->parent())
504 window->parent()->AddChild(child.get());
505 EXPECT_EQ(window.get(), ::wm::GetTransientParent(child.get()));
507 // Drag the child to the shelf. Its new position should not be overridden.
510 child->GetBoundsInScreen().bottom();
511 DragStart(child.get());
513 // While moving the transient child window should be in the panel container.
514 EXPECT_EQ(kShellWindowId_PanelContainer, child->parent()->id())
    [all...]
  /external/chromium_org/chrome/android/javatests/src/org/chromium/chrome/browser/test/
ProviderBookmarkNodeTest.java 96 for (BookmarkNode child : node.children()) {
97 addImagesRecursive(child);
124 for (BookmarkNode child : node.children()) {
125 if (!internalTestNodeHierarchyParceling(child)) return false;
  /external/chromium_org/chrome/browser/extensions/api/bookmarks/
bookmark_api_helpers.cc 82 const BookmarkNode* child = node->GetChild(i); local
83 if (child->IsVisible() && (!only_folders || child->is_folder())) {
85 GetBookmarkTreeNode(client, child, true, only_folders));
  /external/chromium_org/remoting/host/
curtain_mode_mac.cc 153 pid_t child = fork(); local
154 if (child == 0) {
157 } else if (child > 0) {
159 waitpid(child, &status, 0);
  /external/chromium_org/sandbox/win/src/
Wow64.cc 40 bool Restore64Code(HANDLE child, PatchInfo32* patch_info) {
43 if (!::ReadProcessMemory(child, patch_info, &local_patch_info,
56 if (!::ReadProcessMemory(child, local_patch_info.orig_MapViewOfSection,
62 if (!::WriteProcessMemory(child, local_patch_info.patch_location, &buffer,
84 // The basic idea is to allocate one page of memory on the child, and initialize
86 // process passing it that address on the child. The helper process will patch
131 // The child is intercepted on 64 bit, go on and wait for our event.
135 // The 32 bit version is available, cleanup the child.
179 // First we must wake up the child, then wait for dll loads on the child unti
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
RangeBoundaryPoint.h 142 inline void RangeBoundaryPoint::setToBeforeChild(Node& child)
144 ASSERT(child.parentNode());
145 m_childBeforeBoundary = child.previousSibling();
146 m_containerNode = child.parentNode();
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderLineBoxList.h 64 void dirtyLinesFromChangedChild(RenderObject* parent, RenderObject* child);
  /external/chromium_org/third_party/skia/src/animator/
SkDisplayEvent.h 37 virtual bool addChild(SkAnimateMaker& , SkDisplayable* child) SK_OVERRIDE;
SkDrawGradient.cpp 35 bool SkDrawGradient::addChild(SkAnimateMaker& , SkDisplayable* child) {
36 SkASSERT(child);
37 if (child->isColor()) {
38 SkDrawColor* color = (SkDrawColor*) child;
SkDrawGradient.h 21 virtual bool addChild(SkAnimateMaker& , SkDisplayable* child) SK_OVERRIDE;

Completed in 2010 milliseconds

<<31323334353637383940>>