/external/chromium_org/third_party/WebKit/Source/core/css/invalidation/ |
StyleInvalidator.cpp | 122 for (Element* child = ElementTraversal::firstChild(*root); child; child = ElementTraversal::nextSibling(*child)) { 123 bool childRecalced = invalidate(*child); 129 for (Element* child = ElementTraversal::firstChild(element); child; child = ElementTraversal::nextSibling(*child)) { 130 bool childRecalced = invalidate(*child); [all...] |
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
RenderBlock.h | 139 bool hasMarginBeforeQuirk(const RenderBox* child) const; 140 bool hasMarginAfterQuirk(const RenderBox* child) const; 231 LayoutUnit logicalWidthForChild(const RenderBox* child) const { return isHorizontalWritingMode() ? child->width() : child->height(); } 232 LayoutUnit logicalHeightForChild(const RenderBox* child) const { return isHorizontalWritingMode() ? child->height() : child->width(); } 233 LayoutSize logicalSizeForChild(const RenderBox* child) const { return isHorizontalWritingMode() ? child->size() : child->size().transposedSize(); [all...] |
RenderBlockFlow.cpp | 73 // This flag tracks whether we are still looking at child margins that can all collapse together at the beginning of a block. 142 static bool inNormalFlow(RenderBox* child) 144 RenderBlock* curr = child->containingBlock(); 145 RenderView* renderView = child->view(); 427 for (RenderObject* child = lastChild(); child; child = child->previousSibling()) { 428 if (child->isRenderBlockFlow() && !child->isFloatingOrOutOfFlowPositioned()) 903 RenderBox* child = next; local [all...] |
/external/chromium_org/third_party/libjingle/source/talk/xmpp/ |
pubsub_task.cc | 154 for (const buzz::XmlChild* child = pubsub_event->FirstChild(); 155 child != NULL; 156 child = child->NextChild()) { 157 const buzz::XmlElement* child_element = child->AsElement(); 181 for (const buzz::XmlChild* child = pubsub_iq_response->FirstChild(); 182 child != NULL; 183 child = child->NextChild()) { 184 const buzz::XmlElement* child_element = child->AsElement() [all...] |
/external/elfutils/0.153/libdw/ |
dwarf_aggregate_size.c | 77 Dwarf_Die child; 78 if (INTUSE(dwarf_child) (die, &child) != 0) 86 switch (INTUSE(dwarf_tag) (&child)) 90 if (INTUSE(dwarf_attr_integrate) (&child, DW_AT_count, 101 (&child, DW_AT_upper_bound, 106 if (INTUSE(dwarf_attr_integrate) (&child, DW_AT_lower_bound, 155 /* We have to find the DW_TAG_enumerator child with the 184 if (INTUSE(dwarf_attr_integrate) (&child, DW_AT_byte_stride, 190 else if (INTUSE(dwarf_attr_integrate) (&child, DW_AT_bit_stride, 203 while (INTUSE(dwarf_siblingof) (&child, &child) == 0) [all...] |
/external/llvm/include/llvm/Object/ |
Archive.h | 50 class Child { 62 Child(const Archive *Parent, const char *Start); 64 bool operator ==(const Child &other) const { 69 bool operator <(const Child &other) const { 73 Child getNext() const; 100 Child child; member in class:llvm::object::Archive::child_iterator 102 child_iterator() : child(Child(nullptr, nullptr)) {} 103 child_iterator(const Child &c) : child(c) { [all...] |
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/ |
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...] |
/packages/providers/ContactsProvider/src/com/android/providers/contacts/debug/ |
DataExporter.java | 132 for (File child : file.listFiles()) { 133 removeFileOrDirectory(child); 145 for (File child : current.listFiles()) { 146 final String childStoredPath = storedPath + "/" + child.getName(); 148 if (child.isDirectory()) { 150 if (child.equals(context.getCacheDir())) { 155 if (child.getName().equals(DUMP_FILE_DIRECTORY_NAME)) { 158 addDirectory(context, os, child, childStoredPath); 159 } else if (child.isFile()) { 160 addFile(os, child, childStoredPath) [all...] |
/bootable/recovery/ |
adb_install.cpp | 87 pid_t child; local 88 if ((child = fork()) == 0) { 101 if (waitpid(child, &status, WNOHANG) != 0) { 114 kill(child, SIGKILL); 131 waitpid(child, &status, 0);
|
/external/chromium_org/ash/wm/ |
system_modal_container_layout_manager.h | 46 virtual void OnWindowAddedToLayout(aura::Window* child) OVERRIDE; 47 virtual void OnWillRemoveWindowFromLayout(aura::Window* child) OVERRIDE; 48 virtual void OnWindowRemovedFromLayout(aura::Window* child) OVERRIDE; 49 virtual void OnChildWindowVisibilityChanged(aura::Window* child, 51 virtual void SetChildBounds(aura::Window* child,
|
/external/chromium_org/ui/aura/ |
window.cc | 146 // Does a depth first search for all descendants of |child| that have layers. 148 void GetLayersToStack(aura::Window* child, std::vector<ui::Layer*>* layers) { 149 if (child->layer()) { 150 layers->push_back(child->layer()); 153 for (size_t i = 0; i < child->children().size(); ++i) 154 GetLayersToStack(child->children()[i], layers); 414 // existing child windows. 493 void Window::StackChildAtTop(Window* child) { 494 if (children_.size() <= 1 || child == children_.back()) 496 StackChildAbove(child, children_.back()) 809 Window* child = *it; local 817 Window* child = children_[0]; local 945 Window* child = children_[i]; local 986 Window* child = *it; local [all...] |
/external/valgrind/main/memcheck/tests/ |
err_disable4.c | 65 pthread_t child[NTHREADS]; local 84 r = pthread_create(&child[i], &attr, child_fn_1, NULL); 95 r = pthread_join(child[i], NULL); assert(!r); 107 r = pthread_create(&child[i], &attr, child_fn_2, NULL); 118 r = pthread_join(child[i], NULL); assert(!r);
|
/frameworks/base/packages/Keyguard/src/com/android/keyguard/ |
KeyguardSecurityViewFlipper.java | 58 View child = getChildAt(i); local 59 if (child.getVisibility() == View.VISIBLE) { 60 offsetRectIntoDescendantCoords(child, mTempRect); 62 result = child.dispatchTouchEvent(ev) || result; 70 View child = getChildAt(getDisplayedChild()); local 71 if (child instanceof KeyguardSecurityView) { 72 return (KeyguardSecurityView) child; 141 View child = getChildAt(i); local 142 if (child instanceof KeyguardSecurityView) { 143 KeyguardSecurityView ksv = (KeyguardSecurityView) child; 153 View child = getChildAt(i); local 213 final View child = getChildAt(i); local 232 final View child = getChildAt(i); local [all...] |
/frameworks/base/tests/RenderScriptTests/ModelViewer/src/com/android/modelviewer/ |
SgTransform.java | 60 public void addChild(SgTransform child) { 61 mChildren.add(child); 62 child.setParent(this, mChildren.size() - 1); 95 SgTransform child = (SgTransform)mChildren.get(i); local 96 mChildField.set(child.getData(), i, false);
|
/libcore/jsr166-tests/src/test/java/jsr166/ |
ThreadLocalTest.java | 60 Thread child = null; local 62 child = new ITLThread(x); 63 child.start(); 73 if (child != null) { // Wait for child (if any) 75 child.join();
|
/external/chromium_org/third_party/WebKit/Source/bindings/scripts/ |
idl_definitions.py | 117 for child in children: 118 child_class = child.GetClass() 120 interface = IdlInterface(child) 123 exception = IdlException(child) 127 type_name = child.GetName() 128 typedefs[type_name] = typedef_node_to_type(child) 130 enumeration = IdlEnum(child) 133 callback_function = IdlCallbackFunction(child) 139 dictionary = IdlDictionary(child) 210 for child in node.GetChildren() [all...] |
/frameworks/base/core/java/android/animation/ |
LayoutTransition.java | 768 final View child = parent.getChildAt(i); local [all...] |
/external/chromium_org/ppapi/generators/ |
idl_node.py | 29 # which will be passed as a child to a standard IDLNode. 79 # property dictionary, and nodes into the local child list in order. In 82 for child in children: 83 if child.cls == 'ExtAttribute': 84 self.SetProperty(child.name, child.value) 86 self.AddChild(child) 151 for child in self._children: 152 child.Dump(depth+1, comments=comments, out=out) 161 for child in self._children [all...] |
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/ |
SVGRenderSupport.cpp | 178 for (RenderObject* child = start->slowFirstChild(); child; child = child->nextSibling()) 179 invalidateResourcesOfChildren(child); 214 for (RenderObject* child = start->slowFirstChild(); child; child = child->nextSibling()) { 216 bool childEverHadLayout = child->everHadLayout() [all...] |
/frameworks/base/core/java/android/widget/ |
TableLayout.java | 58 * <code>layout_height</code> attribute can be defined by a child; default value 59 * is {@link android.widget.TableLayout.LayoutParams#WRAP_CONTENT}. If the child 65 * a child cell, it will autoincrement to the next available column. If you skip 69 * <p>Although the typical child of a TableLayout is a TableRow, you can 70 * actually use any View subclass as a direct child of TableLayout. The View 372 * upon child insertion.</p> 377 * @param child the newly added child 379 private void trackCollapsedColumns(View child) { 380 if (child instanceof TableRow) 497 final View child = getChildAt(i); local 593 View child = getChildAt(i); local [all...] |
/development/samples/ApiDemos/src/com/example/android/apis/view/ |
CustomLayout.java | 46 /** These are used for computing child frames based on their gravity. */ 92 final View child = getChildAt(i); local 93 if (child.getVisibility() != GONE) { 94 // Measure the child. 95 measureChildWithMargins(child, widthMeasureSpec, 0, heightMeasureSpec, 0); 99 final LayoutParams lp = (LayoutParams) child.getLayoutParams(); 102 child.getMeasuredWidth() + lp.leftMargin + lp.rightMargin); 105 child.getMeasuredWidth() + lp.leftMargin + lp.rightMargin); 108 child.getMeasuredWidth() + lp.leftMargin + lp.rightMargin); 111 child.getMeasuredHeight() + lp.topMargin + lp.bottomMargin) 149 final View child = getChildAt(i); local [all...] |
/external/markdown/markdown/ |
treeprocessors.py | 172 for child in [node] + node.getchildren(): 173 if child.tail: 174 if child.tail.strip(): 175 self.__processElementText(node, child, False) 176 if child.text: 177 if child.text.strip(): 178 self.__processElementText(child, child) 227 for child in [node] + node.getchildren(): 229 if child.text [all...] |
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
DragDownHelper.java | 155 private void handleExpansion(float heightDelta, ExpandableView child) { 159 boolean expandable = child.isContentExpandable(); 164 if (expandable && (rubberband + child.getMinHeight()) > child.getMaxHeight()) { 165 float overshoot = (rubberband + child.getMinHeight()) - child.getMaxHeight(); 169 child.setActualHeight((int) (child.getMinHeight() + rubberband)); 172 private void cancelExpansion(final ExpandableView child) { 173 if (child.getActualHeight() == child.getMinHeight()) [all...] |
/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...] |
/external/chromium_org/ui/message_center/views/ |
message_center_view.cc | 136 bool IsValidChild(const views::View* child) const; 146 // Schedules animation for a child to the specified position. Returns false 147 // if |child| will disappear after the animation. 148 bool AnimateChild(views::View* child, int top, int height); 216 views::View* child = child_at(i); local 217 if (!child->visible()) 219 int height = child->GetHeightForWidth(child_area.width()); 220 child->SetBounds(child_area.x(), top, child_area.width(), height); 267 DCHECK_LE(0, index); // GetIndexOf is negative if not a child. 282 const views::View* child = child_at(i) local 299 const views::View* child = child_at(i); local 354 views::View* child = child_at(i); local 434 views::View* child = child_at(i); local 451 views::View* child = child_at(i); local 461 views::View* child = child_at(i); local 479 views::View* child = child_at(i); local 513 views::View* child = clearing_all_views_.front(); local 780 const views::View* child = child_at(0); local [all...] |