HomeSort by relevance Sort by last modified time
    Searched defs:child (Results 201 - 225 of 1475) sorted by null

1 2 3 4 5 6 7 891011>>

  /sdk/emulator/opengl/shared/OpenglOsUtils/
osProcessWin.cpp 27 childProcess *child = new childProcess(); local
28 if (!child) {
35 ZeroMemory(&child->m_proc, sizeof(child->m_proc));
46 &child->m_proc);
48 delete child;
55 CloseHandle(child->m_proc.hThread);
57 return child;
  /frameworks/base/packages/PrintSpooler/src/com/android/printspooler/widget/
PrintOptionsLayout.java 78 View child = getChildAt(childIndex); local
80 if (child.getVisibility() == GONE) {
84 MarginLayoutParams childParams = (MarginLayoutParams) child.getLayoutParams();
99 child.measure(childWidthMeasureSpec, childHeightMeasureSpec);
101 childState = combineMeasuredStates(childState, child.getMeasuredState());
103 rowWidth += child.getMeasuredWidth() + childParams.getMarginStart()
106 rowHeight = Math.max(rowHeight, child.getMeasuredHeight() + childParams.topMargin
143 View child = getChildAt(childIndex); local
145 if (child.getVisibility() == GONE) {
149 MarginLayoutParams childParams = (MarginLayoutParams) child.getLayoutParams()
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
PseudoGridView.java 84 View child = getChildAt(i); local
85 child.measure(childWidthSpec, childHeightSpec);
86 maxHeight = Math.max(maxHeight, child.getMeasuredHeight());
90 View child = getChildAt(i); local
91 if (child.getMeasuredHeight() != maxHeight) {
92 child.measure(childWidthSpec, maxHeightSpec);
116 View child = getChildAt(i); local
117 int width = child.getMeasuredWidth();
118 int height = child.getMeasuredHeight();
122 child.layout(x, y, x + width, y + height)
    [all...]
  /packages/apps/ContactsCommon/tests/src/com/android/contacts/common/
RawContactDeltaTests.java 124 final ValuesDelta child = source.getEntry(TEST_PHONE_ID); local
125 child.put(Phone.NUMBER, TEST_PHONE_NUMBER_2);
138 final ValuesDelta child = source.getEntry(TEST_PHONE_ID); local
139 child.markDeleted();
263 final ValuesDelta child = source.getEntry(TEST_PHONE_ID); local
264 child.put(Phone.NUMBER, TEST_PHONE_NUMBER_2);
  /libcore/luni/src/test/java/libcore/java/util/logging/
OldLoggerTest.java 148 // child part
150 "testGetLogger_WithParent_ParentLogger.child"));
151 // create the child logger
152 Logger child = Logger local
153 .getLogger("testGetLogger_WithParent_ParentLogger.child");
154 assertNull(child.getFilter());
155 assertEquals(0, child.getHandlers().length);
156 assertNull(child.getLevel());
157 assertEquals("testGetLogger_WithParent_ParentLogger.child", child
192 assertSame(childOfChild.getParent(), child); local
    [all...]
  /bootable/recovery/
roots.cpp 159 pid_t child; local
160 if ((child = vfork()) == 0) {
164 waitpid(child, &status, 0);
  /cts/apps/CtsVerifier/src/android/support/wearable/view/
BoxInsetLayout.java 36 * child's edges to be boxed in:
114 final View child = getChildAt(i); local
115 if (child.getVisibility() != GONE) {
116 LayoutParams lp = (BoxInsetLayout.LayoutParams) child.getLayoutParams();
142 measureChildWithMargins(child, widthMeasureSpec, 0, heightMeasureSpec, 0);
144 child.getMeasuredWidth() + marginLeft + marginRight);
146 child.getMeasuredHeight() + marginTop + marginBottom);
147 childState = combineMeasuredStates(childState, child.getMeasuredState());
175 final View child = getChildAt(i); local
177 final LayoutParams lp = (BoxInsetLayout.LayoutParams) child.getLayoutParams()
250 final View child = getChildAt(i); local
    [all...]
  /development/samples/devbytes/animation/ListViewRemovalAnimation/src/com/example/android/listviewremovalanimation/
ListViewRemovalAnimation.java 182 View child = listview.getChildAt(i); local
183 if (child != viewToRemove) {
186 mItemIdTopMap.put(itemId, child.getTop());
200 final View child = listview.getChildAt(i);
204 int top = child.getTop();
208 child.setTranslationY(delta);
209 child.animate().setDuration(MOVE_DURATION).translationY(0);
211 child.animate().withEndAction(new Runnable() {
225 int childHeight = child.getHeight() + listview.getDividerHeight();
228 child.setTranslationY(delta)
    [all...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
TreePatternParser.java 79 Object child = parseNode(); local
80 if ( child==null ) {
83 adaptor.addChild(root, child);
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
ElemExsltFunction.java 91 Node child = children.item(i); local
  /external/bison/lib/
spawn-pipe.c 95 /* Open a pipe connected to a child process.
98 * parent -> fd[1] -> STDIN_FILENO -> child if pipe_stdin
99 * parent <- fd[0] <- STDOUT_FILENO <- child if pipe_stdout
103 * pipe_stdin and prog_stdin together determine the child's standard input.
104 * pipe_stdout and prog_stdout together determine the child's standard output.
129 int child; local
147 * parent -> ofd[1] -> ofd[0] -> child if pipe_stdin
148 * parent <- ifd[0] <- ifd[1] <- child if pipe_stdout
160 child = -1;
162 /* Create standard file handles of child process. *
    [all...]
wait-process.c 57 'child' field to 0 when unregistering a slave process, and wouldn't need
59 The 'used' and 'child' fields are accessed from within the cleanup_slaves()
64 volatile pid_t child; member in struct:__anon4985
97 pid_t slave = slaves[n].child;
110 register_slave_subprocess (pid_t child)
130 entry as used only after the child pid has been written to the
131 memory location s->child. */
132 s->child = child;
151 Additionally we need to kill child, because it's not yet amon
    [all...]
  /external/blktrace/
rbtree.c 224 struct rb_node *child, *parent; local
228 child = node->rb_right;
230 child = node->rb_left;
238 child = node->rb_right;
242 if (child)
243 rb_set_parent(child, parent);
245 parent->rb_right = child;
248 parent->rb_left = child;
272 if (child)
273 rb_set_parent(child, parent)
    [all...]
  /external/chromium_org/ash/system/
status_area_widget_delegate.cc 101 SetLayoutManager(NULL); // Reset layout manager before adding a child.
118 views::View* child = child_at(c); local
119 if (!child->visible())
130 views::View* child = child_at(c); local
131 if (child->visible())
132 layout->AddView(child);
140 views::View* child = child_at(c); local
141 if (!child->visible())
147 layout->AddView(child);
158 void StatusAreaWidgetDelegate::ChildPreferredSizeChanged(View* child) {
    [all...]
  /external/chromium_org/ash/wm/
window_modality_controller_unittest.cc 233 // Creates windows w1 and non activatiable child w11. Creates transient window
234 // w2 and adds it as a transeint child of w1. Ensures that w2 is parented to
379 // Child-modal test.
385 // - A |child| window with parent window |parent|, but is modal to
388 // - Clicking on the |modal_parent| should activate the |child| window.
391 // - Clicking on the |child| while |parent| is active should activate the
392 // |child| window.
410 aura::Window* child = delegate->GetChild(); local
411 EXPECT_NE(static_cast<aura::Window*>(NULL), child); local
413 EXPECT_TRUE(wm::IsActiveWindow(child));
470 aura::Window* child = delegate->GetChild(); local
471 EXPECT_NE(static_cast<aura::Window*>(NULL), child); local
    [all...]
  /external/chromium_org/base/json/
json_value_converter_unittest.cc 82 SimpleMessage child; member in struct:base::__anon6894::NestedMessage
90 converter->RegisterNestedField("child", &NestedMessage::child);
130 " \"child\": {\n"
157 EXPECT_EQ(1, message.child.foo);
158 EXPECT_EQ("bar", message.child.bar);
159 EXPECT_TRUE(message.child.baz);
160 EXPECT_TRUE(message.child.bstruct);
161 ASSERT_EQ(2U, message.child.string_values.size());
162 EXPECT_EQ("value_1", *message.child.string_values[0])
    [all...]
  /external/chromium_org/cc/layers/
layer_utils_unittest.cc 34 LayerImpl* child() { return child_; } function in class:cc::__anon7269::LayerUtilsGetAnimationBoundsTest
67 child()->SetDrawsContent(true);
68 child()->draw_properties().screen_space_transform_is_animating = true;
69 child()->SetPosition(gfx::PointF(150.f, 50.f));
70 child()->SetBounds(gfx::Size(100, 200));
73 bool success = LayerUtils::GetAnimationBounds(*child(), &box);
90 child()->SetDrawsContent(true);
91 child()->draw_properties().screen_space_transform_is_animating = true;
92 child()->SetPosition(gfx::PointF(150.f, 50.f));
93 child()->SetBounds(gfx::Size(100, 200))
    [all...]
  /external/chromium_org/chrome/browser/sync/test/integration/
sync_app_list_helper.cc 181 AppListItem* child = folder->item_list()->item_at(i); local
184 PrintItem(profile, child, child_label);
  /external/chromium_org/chrome/renderer/
web_apps.cc 138 WebNode child = children.item(i); local
139 if (!child.isElementNode())
141 WebElement elem = child.to<WebElement>();
  /external/chromium_org/components/bookmarks/test/
bookmark_test_helpers.cc 118 const BookmarkNode* child = node->GetChild(i); local
119 if (child->is_folder()) {
120 child_string += base::UTF16ToUTF8(child->GetTitle()) + ":[ " +
121 ModelStringFromNode(child) + "] ";
123 child_string += base::UTF16ToUTF8(child->GetTitle()) + " ";
  /external/chromium_org/components/policy/core/browser/
managed_bookmarks_tracker.cc 58 BookmarkNode* child = new BookmarkNode(next_node_id++, url); local
59 child->SetTitle(title);
60 folder->Add(child, folder->child_count());
62 child->set_type(BookmarkNode::FOLDER);
63 child->set_date_folder_modified(base::Time::Now());
64 next_node_id = LoadInitial(child, children, next_node_id);
66 child->set_type(BookmarkNode::URL);
67 child->set_date_added(base::Time::Now());
  /external/chromium_org/content/public/android/javatests/src/org/chromium/content/browser/
ContentViewPopupZoomerTest.java 23 View child = view.getChildAt(i); local
24 if (child instanceof PopupZoomer) return (PopupZoomer) child;
  /external/chromium_org/third_party/WebKit/Source/core/html/imports/
HTMLImportsController.cpp 97 OwnPtrWillBeRawPtr<HTMLImportChild> child = adoptPtrWillBeNoop(new HTMLImportChild(url, loader, mode)); local
98 child->setClient(client);
99 parent->appendImport(child.get());
100 loader->addImport(child.get());
101 return root()->add(child.release());
112 HTMLImportChild* child = createChild(request.url(), loader, parent, client); local
113 child->didShareLoader();
114 return child;
126 HTMLImportChild* child = createChild(request.url(), loader, parent, client); local
130 child->didStartLoading()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderRuby.cpp 75 RenderObject* child = ruby->slowFirstChild(); local
76 return isRubyBeforeBlock(child) ? toRenderBlock(child) : 0;
81 RenderObject* child = ruby->slowLastChild(); local
82 return isRubyAfterBlock(child) ? toRenderBlock(child) : 0;
95 RenderObject* child = ruby->slowLastChild(); local
96 if (child && !child->isRubyRun())
97 child = child->previousSibling()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/text/
SuffixTree.h 81 Node* child = m_children.at(i); local
82 if (child && !child->m_isLeaf)
83 delete child;
103 Node*& child = current->at(Codebook::codeWord(text[base + offset])); local
104 if (!child)
105 child = base + offset + 1 == limit ? &m_leaf : new Node();
106 current = child;

Completed in 4110 milliseconds

1 2 3 4 5 6 7 891011>>