/external/elfutils/0.153/libelf/ |
elf_readall.c | 69 Elf *child = elf->state.ar.children; local 71 while (child != NULL) 73 if (child->map_address == NULL) 75 child->map_address = elf->map_address; 76 child->start_offset -= offset; 77 if (child->kind == ELF_K_AR) 78 child->state.ar.offset -= offset; 80 set_address (child, offset); 83 child = child->next [all...] |
common.h | 125 Elf *child = elf->state.ar.children; local 127 while (child != NULL) 129 if (child->ref_count != 0) 130 libelf_acquire_all (child); 131 child = child->next; 143 Elf *child = elf->state.ar.children; local 145 while (child != NULL) 147 if (child->ref_count != 0) 148 libelf_release_all (child); [all...] |
/frameworks/base/core/java/com/android/internal/widget/ |
BackgroundFallback.java | 57 final View child = root.getChildAt(i); local 58 final Drawable childBg = child.getBackground(); 59 if (child == content) { 62 if (childBg == null && child instanceof ViewGroup && 63 ((ViewGroup) child).getChildCount() == 0) { 66 } else if (child.getVisibility() != View.VISIBLE || childBg == null || 73 left = Math.min(left, child.getLeft()); 74 top = Math.min(top, child.getTop()); 75 right = Math.max(right, child.getRight()); 76 bottom = Math.max(bottom, child.getBottom()) [all...] |
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowViewGroup.java | 32 for (View child : children) { 33 View found = child.findViewById(id); 48 for (View child : children) { 49 View found = child.findViewWithTag(obj); 59 public void addView(View child) { 60 ((ViewGroup) realView).addView(child, -1); 64 public void addView(View child, int index) { 66 children.add(child); 68 children.add(index, child); 70 shadowOf(child).parent = this 202 View child = getChildAt(i); local [all...] |
/external/apache-xml/src/main/java/org/apache/xalan/templates/ |
ElemExtensionCall.java | 122 for (ElemTemplateElement child = imported.getFirstChildElem(); 123 child != null; child = child.getNextSiblingElem()) 125 if (Constants.ELEMNAME_EXTENSIONDECL == child.getXSLToken()) 127 decl = (ElemExtensionDecl) child; 130 String declNamespace = child.getNamespaceForPrefix(prefix); 154 for (ElemTemplateElement child = m_firstChild; child != null; 155 child = child.m_nextSibling [all...] |
/external/chromium_org/third_party/WebKit/Source/web/ |
WebFrame.cpp | 71 void WebFrame::appendChild(WebFrame* child) 75 child->m_parent = this; 77 m_lastChild = child; 80 child->m_previousSibling = oldLast; 81 oldLast->m_nextSibling = child; 83 m_firstChild = child; 89 void WebFrame::removeChild(WebFrame* child) 91 child->m_parent = 0; 93 if (m_firstChild == child) 94 m_firstChild = child->m_nextSibling [all...] |
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/ |
parsing.cc | 84 for (const buzz::XmlElement* child = parent->FirstElement(); 85 child != NULL; 86 child = child->NextElement()) { 87 if (child->Name().LocalPart() == name) { 88 return child; 96 const buzz::XmlElement** child, 98 *child = GetXmlChild(parent, name); 99 if (*child == NULL) { 101 "' missing required child '" + name [all...] |
/developers/build/prebuilts/gradle/BatchStepSensor/Application/src/main/java/com/example/android/batchstepsensor/cardstream/ |
CardStreamLinearLayout.java | 132 * Handle end-transition animation event of each child and launch a following animation. 158 * when a new child is added, scroll to bottom and hide action area.. 163 public void onChildViewAdded(final View parent, final View child) { 165 Log.d(TAG, "child is added: " + child); 173 View view = child.findViewById(R.id.card_actionarea); 180 public void onChildViewRemoved(View parent, View child) { 181 Log.d(TAG, "child is removed: " + child); 182 mFixedViewList.remove(child); 333 View child = getChildAt(index); local 467 final View child = getChildAt(index); local 532 View child = getChildAt(index); local [all...] |
/development/samples/browseable/BatchStepSensor/src/com.example.android.batchstepsensor/cardstream/ |
CardStreamLinearLayout.java | 135 * Handle end-transition animation event of each child and launch a following animation. 161 * when a new child is added, scroll to bottom and hide action area.. 166 public void onChildViewAdded(final View parent, final View child) { 168 Log.d(TAG, "child is added: " + child); 176 View view = child.findViewById(R.id.card_actionarea); 183 public void onChildViewRemoved(View parent, View child) { 184 Log.d(TAG, "child is removed: " + child); 185 mFixedViewList.remove(child); 336 View child = getChildAt(index); local 470 final View child = getChildAt(index); local 535 View child = getChildAt(index); local [all...] |
/external/chromium_org/ui/v2/src/ |
view.cc | 23 View* child, 26 DCHECK_NE(child, other); 27 DCHECK(child); 29 DCHECK_EQ(parent, child->parent()); 35 std::find(children->begin(), children->end(), child) - children->begin(); 43 children->insert(children->begin() + destination_i, child); 109 void RemoveChildImpl(View* child, View::Children* children) { 111 std::find(children->begin(), children->end(), child); 114 ViewPrivate(child).ClearParent(); 159 View* child = children_.front() local [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...] |
layer_position_constraint_unittest.cc | 80 scoped_ptr<LayerImpl> child = local 99 child.get(), IdentityMatrix, transform_origin, position, bounds, true); 115 child->SetScrollClipLayer(root->id()); 119 child->AddChild(grand_child.Pass()); 120 scroll_layer->AddChild(child.Pass()); 156 LayerImpl* child = scroll_->children()[0]; local 157 LayerImpl* grand_child = child->children()[0]; 159 child->SetIsContainerForFixedPositionLayers(true); 163 child->SetScrollDelta(gfx::Vector2d(0, 0)); 170 child->draw_transform()) 224 LayerImpl* child = scroll_->children()[0]; local 296 LayerImpl* child = scroll_->children()[0]; local 376 LayerImpl* child = scroll_->children()[0]; local 488 LayerImpl* child = scroll_->children()[0]; local 599 LayerImpl* child = scroll_->children()[0]; local 723 LayerImpl* child = scroll_->children()[0]; local 909 LayerImpl* child = scroll_->children()[0]; local 987 LayerImpl* child = scroll_->children()[0]; local 1054 LayerImpl* child = scroll_->children()[0]; local [all...] |
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
ChildListMutationScope.cpp | 87 inline bool ChildListMutationAccumulator::isAddedNodeInOrder(Node* child) 89 return isEmpty() || (m_lastAdded == child->previousSibling() && m_nextSibling == child->nextSibling()); 96 RefPtrWillBeRawPtr<Node> child = prpChild; local 98 if (!isAddedNodeInOrder(child.get())) 102 m_previousSibling = child->previousSibling(); 103 m_nextSibling = child->nextSibling(); 106 m_lastAdded = child.get(); 107 m_addedNodes.append(child.release()); 110 inline bool ChildListMutationAccumulator::isRemovedNodeInOrder(Node* child) 119 RefPtrWillBeRawPtr<Node> child = prpChild; local [all...] |
/external/chromium_org/ui/v2/public/ |
view.h | 69 void AddChild(View* child); 70 void RemoveChild(View* child); 72 bool Contains(View* child) const; 74 void StackChildAtTop(View* child); 75 void StackChildAtBottom(View* child); 76 void StackChildAbove(View* child, View* other); 77 void StackChildBelow(View* child, View* other);
|
/external/lldb/test/functionalities/recursion/ |
TestValueObjectRecursion.py | 57 child = root.GetChildAtIndex(1) 60 print child 62 child = child.GetChildAtIndex(1) 64 print child 65 self.assertTrue(child.IsValid(),"could not retrieve the deep ValueObject") 66 self.assertTrue(child.GetChildAtIndex(0).IsValid(),"the deep ValueObject has no value") 67 self.assertTrue(child.GetChildAtIndex(0).GetValueAsUnsigned() != 0,"the deep ValueObject has a zero value") 68 self.assertTrue(child.GetChildAtIndex(1).GetValueAsUnsigned() != 0, "the deep ValueObject has no next")
|
/external/ltrace/testsuite/ltrace.minor/ |
trace-clone.c | 2 Objectives : Verify that ltrace can trace to child process after 13 int child () function 29 pid = __clone2((myfunc)&child, stack, STACK_SIZE, CLONE_FS, NULL); 31 pid = clone((myfunc)&child, stack + STACK_SIZE, CLONE_FS, NULL);
|
/external/valgrind/main/helgrind/tests/ |
tc05_simple_race.c | 6 /* Simple test program, has a race. Parent and child both modify y 26 pthread_t child; local 27 if (pthread_create(&child, NULL, child_fn, NULL)) { 38 if (pthread_join(child, NULL)) {
|
tc06_two_races.c | 24 pthread_t child; local 26 if (pthread_create(&child, NULL, child_fn, NULL)) { 37 if (pthread_join(child, NULL)) {
|
tc09_bad_unlock.c | 17 pthread_t child; local 33 // start child and get it to unlock this lock 35 pthread_create( &child, NULL, child_fn, (void*)&mx2 ); 36 /* child runs and attempts to unlock our lock. Error 38 pthread_join(child, NULL );
|
tc16_byterace.c | 13 bytes[2*i + 0] ++; /* child accesses: 0 2 4 6 8 */ 21 pthread_t child; local 22 if (pthread_create(&child, NULL, child_fn, NULL)) { 27 /* Unprotected relative to child, but harmless, since different 32 /* Unprotected relative to child, but harmful; same bytes */ 36 if (pthread_join(child, NULL)) {
|
/packages/apps/Launcher2/src/com/android/launcher2/ |
HideFromAccessibilityHelper.java | 50 View child = vg.getChildAt(i); local 52 if (includeView(child)) { 53 setImportantForAccessibilityToNoHelper(child); 82 View child = vg.getChildAt(i); local 83 if (includeView(child)) { 84 restoreImportantForAccessibilityHelper(child); 90 public void onChildViewAdded(View parent, View child) { 91 if (mHide && includeView(child)) { 92 setImportantForAccessibilityToNoHelper(child); 96 public void onChildViewRemoved(View parent, View child) { [all...] |
/packages/apps/LegacyCamera/src/com/android/camera/ui/ |
RightAlignedHorizontalScrollView.java | 38 // Get the width of the child, i.e. the LinearLayout, and scroll to 40 View child = getChildAt(0); local 41 if (child != null) scrollTo(child.getWidth(), 0);
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
RenderLayerStackingNode.cpp | 143 for (RenderLayer* child = layer()->firstChild(); child; child = child->nextSibling()) { 144 if (!layer()->reflectionInfo() || layer()->reflectionInfo()->reflectionLayer() != child) 145 child->stackingNode()->collectLayers(m_posZOrderList, m_negZOrderList); 159 for (RenderObject* child = view->firstChild(); child; child = child->nextSibling()) [all...] |
/external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/kdom/ |
Node.java | 45 /** inserts the given child object of the given type at the 48 public void addChild(int index, int type, Object child) { 50 if (child == null) 59 if (!(child instanceof Element)) 62 ((Element) child).setParent(this); 64 else if (!(child instanceof String)) 67 children.insertElementAt(child, index); 71 /** convenience method for addChild (getChildCount (), child) */ 73 public void addChild(int type, Object child) { 74 addChild(getChildCount(), type, child); local 111 Object child = getChild(index); local 205 Element child = getElement(i); local 237 Element child = local 325 Object child = children.elementAt(i); local [all...] |
/external/chromium_org/third_party/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...] |