HomeSort by relevance Sort by last modified time
    Searched defs:child (Results 426 - 450 of 1770) sorted by null

<<11121314151617181920>>

  /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/mesa3d/src/mesa/drivers/dri/i965/
brw_fs_schedule_instructions.cpp 472 schedule_node *child = chosen->children[i]; local
474 child->unblocked_time = MAX2(child->unblocked_time,
477 child->parent_count--;
478 if (child->parent_count == 0) {
479 instructions.push_tail(child);
  /external/protobuf/gtest/test/
gtest_filter_unittest.py 54 # Checks if this platform can pass empty environment variables to child
57 # os.environ. We then use 'eval' to parse the child's output so that an
60 child = gtest_test_utils.Subprocess( variable
62 CAN_PASS_EMPTY_ENV = eval(child.output)
65 # Check if this platform can unset environment variables in child processes.
69 # We use 'eval' to parse the child's output so that an exception
73 child = gtest_test_utils.Subprocess( variable
75 CAN_UNSET_ENV = eval(child.output)
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/res/
PreferenceLoader.java 105 for (PreferenceNode child : children) {
106 child.inflate(context, preference);
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowDialog.java 254 View child = viewGroup.getChildAt(i); local
255 if (clickOnText(child, text)) {
ShadowListView.java 30 View child = super.findViewById(id); local
31 if (child == null) {
32 child = findView(headerViews, id);
34 if (child == null) {
35 child = findView(footerViews, id);
38 return child;
42 View child = null; local
44 child = v.findViewById(viewId);
45 if (child != null) {
49 return child;
    [all...]
  /external/sfntly/cpp/src/test/tinyxml/
tinyxml.cpp 305 // A document can never be a child. Thanks to Noam.
819 // 2) An element with only a text child is printed as <foo> text </foo>
902 const TiXmlNode* child = this->FirstChild(); local
903 if ( child ) {
904 const TiXmlText* childText = child->ToText();
    [all...]
  /external/skia/src/views/
SkStackViewLayout.cpp 71 /* Measure the main-dimension for all the children. If a child is marked flex in that direction
78 SkView* child; local
82 while ((child = iter.next()) != NULL)
85 if (child->getFlags() & flexMask)
88 limit += (child->*sizeProc)();
162 SkView* child; local
167 while ((child = iter.next()) != NULL)
171 (child->*mainLocP)(pos);
172 SkScalar crossLoc = crossStartM + gAlignProcs[fAlign]((child->*crossGetSizeP)(), crossLimit);
175 (child->*crossLocP)(crossLoc)
259 SkView* child; local
    [all...]
  /external/slf4j/slf4j-api/src/test/java/org/slf4j/
BasicMarkerTest.java 113 Marker child = factory.getMarker(CHILD_MARKER_STR); local
115 parent.add(child);
118 // check that the child was added once and only once
128 Marker child = factory.getMarker(NEW_PREFIX + CHILD_MARKER_STR); local
129 assertFalse(parent.contains(child));
131 assertFalse(parent.remove(child));
133 parent.add(child);
135 assertTrue(parent.contains(child));
138 assertTrue(parent.remove(child));
140 assertFalse(parent.contains(child));
165 Marker child = factory.getMarker(CHILD_NAME); local
183 Marker child = factory.getMarker(CHILD_NAME); local
    [all...]
  /external/toybox/kconfig/
conf.c 282 struct menu *child; local
319 for (child = menu->list; child; child = child->next) {
320 if (!menu_is_visible(child))
322 if (!child->sym) {
323 printf("%*c %s\n", indent, '*', menu_get_prompt(child));
327 if (child->sym == def_sym) {
332 printf(" %d. %s", cnt, menu_get_prompt(child));
412 struct menu *child; local
473 struct menu *child; local
    [all...]
menu.c 370 struct menu *child; local
388 for (child = menu->list; child; child = child->next)
389 if (menu_is_visible(child))
  /external/toybox/toys/pending/
fsck.c 62 static struct child_list *c_list = NULL; //fsck.type child list.
66 struct child_list *child; local
68 for (child = c_list; child; child = child->next)
69 kill(child->pid, SIGTERM);
190 struct child_list *child; local
231 if (!pid) xexec(args); //child, executes fsck.type
234 child = xzalloc(sizeof(struct child_list)); //Parent, add to child list
    [all...]
  /external/v8/src/
allocation-tracker.cc 41 AllocationTraceNode* child = FindChild(function_info_index); local
42 if (child == NULL) {
43 child = new AllocationTraceNode(tree_, function_info_index);
44 children_.Add(child);
46 return child;
  /external/v8/test/cctest/
test-profile-generator.cc 544 const ProfileNode* child = parent->children()->at(i); local
545 if (strcmp(child->entry()->name(), name) == 0) return child;
618 const v8::CpuProfileNode* child = parent->GetChild(i); local
619 v8::String::Utf8Value function_name(child->GetFunctionName());
620 if (strcmp(*function_name, name) == 0) return child;
  /external/valgrind/coregrind/
m_sparsewa.c 66 void* child[256]; /* either LevelN* or Level0* */ member in struct:__anon20342
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];
331 if (levelN->child[ix] == NULL) {
332 levelN->child[ix] = swa_new_LevelN(swa, i-1);
336 levelN = levelN->child[ix];
343 if (levelN->child[ix] == NULL)
    [all...]
  /external/vboot_reference/futility/
cmd_dump_fmap.c 165 struct node_s **child; member in struct:node_s
219 sort_nodes(p->num_children, p->child);
221 if (i == 0 && p->end != p->child[i]->end)
222 empty(indent, p->child[i]->end, p->end, p->name);
223 show(p->child[i], indent + show_first, 1);
225 && p->child[i]->start != p->child[i + 1]->end)
226 empty(indent, p->child[i + 1]->end, p->child[i]->start,
228 if (i == p->num_children - 1 && p->child[i]->start != p->start
    [all...]
  /external/wpa_supplicant_8/hs20/client/
spp_client.c 603 xml_node_t *child; local
627 xml_node_for_each_child(ctx->xml, child, node) {
629 xml_node_for_each_check(ctx->xml, child);
630 debug_dump_node(ctx, "child", child);
631 name = xml_node_get_localname(ctx->xml, child);
634 update = child;
636 exec = child;
638 add_mo = child;
640 no_mo = child;
    [all...]
  /external/wpa_supplicant_8/src/utils/
xml-utils.c 314 xml_node_t *child; local
316 xml_node_for_each_child(ctx, child, node) {
317 xml_node_for_each_check(ctx, child);
318 lname = xml_node_get_localname(ctx, child);
320 return child;
387 xml_node_t *child; local
409 child = get_first_child_node(ctx, node, "Node");
410 if (child) {
412 tnds_to_mo_iter(ctx, root, child, nodename);
416 tnds_to_mo_iter(ctx, root, child, new_uri)
461 xml_node_t *body, *child; local
    [all...]
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
XMPIteratorImpl.java 224 /** the iterator for each child */
340 // create sub iterator for every child,
341 // if its the first child visited or the former child is finished
344 XMPNode child = (XMPNode) iterator.next(); local
346 subIterator = new NodeIterator(child, path, index);
567 XMPNode child = (XMPNode) childrenIterator.next();
571 if (child.getOptions().isSchemaNode())
573 setBaseNS(child.getName());
575 else if (child.getParent() != null
    [all...]
  /frameworks/av/media/libstagefright/webm/
WebmElement.cpp 250 sp<WebmElement> child = (*it); local
251 child->serializeInto(buf + off);
252 off += child->totalSize();
  /frameworks/base/core/java/android/widget/
DayPickerView.java 119 final View child = content.getChildAt(0); local
121 addView(child);
LinearLayout.java 43 * You can also specify gravity, which specifies the alignment of all the child elements by
110 * use the child at this index as the baseline.
119 * The additional offset to the child's baseline.
350 final View child = getVirtualChildAt(i); local
352 if (child != null && child.getVisibility() != GONE) {
354 final LayoutParams lp = (LayoutParams) child.getLayoutParams();
355 final int top = child.getTop() - lp.topMargin - mDividerHeight;
362 final View child = getLastNonGoneChild(); local
364 if (child == null)
380 View child = getVirtualChildAt(i); local
392 final View child = getVirtualChildAt(i); local
409 final View child = getLastNonGoneChild(); local
507 final View child = getChildAt(mBaselineAlignedChildIndex); local
662 View child = getVirtualChildAt(i); local
705 final View child = getVirtualChildAt(i); local
824 final View child = getVirtualChildAt(i); local
867 final View child = getVirtualChildAt(i); local
940 final View child = getVirtualChildAt(i); local
983 final View child = getVirtualChildAt(i); local
1049 final View child = getVirtualChildAt(i); local
1205 final View child = getVirtualChildAt(i); local
1256 final View child = getVirtualChildAt(i); local
1363 final View child = getVirtualChildAt(i); local
1408 final View child = getVirtualChildAt(i); local
1549 final View child = getVirtualChildAt(i); local
1670 final View child = getVirtualChildAt(childIndex); local
    [all...]
  /frameworks/base/core/tests/benchmarks/src/com/android/internal/util/
IndentingPrintWriterBenchmark.java 130 for (Node child : children) {
131 child.dumpDirect(pw, depth + 1);
143 for (Node child : children) {
144 child.dumpIndenting(pw);
  /frameworks/base/core/tests/coretests/src/android/widget/listview/touch/
ListTouchManyTest.java 68 assertEquals("Item zero not the first child in the list", 0, firstChild.getId());
105 View child = mListView.getChildAt(i); local
106 if ((child.getTop() >= mListView.getListPaddingTop())
107 && (child.getBottom() <=
109 TouchUtils.clickView(this, child);
133 View child = mListView.getChildAt(i); local
134 if ((child.getTop() >= mListView.getListPaddingTop())
135 && (child.getBottom() <=
137 TouchUtils.longClickView(this, child);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DragDownHelper.java 156 private void handleExpansion(float heightDelta, ExpandableView child) {
160 boolean expandable = child.isContentExpandable();
165 if (expandable && (rubberband + child.getMinHeight()) > child.getMaxContentHeight()) {
166 float overshoot = (rubberband + child.getMinHeight()) - child.getMaxContentHeight();
170 child.setContentHeight((int) (child.getMinHeight() + rubberband));
173 private void cancelExpansion(final ExpandableView child) {
174 if (child.getContentHeight() == child.getMinHeight())
    [all...]

Completed in 562 milliseconds

<<11121314151617181920>>