/external/chromium_org/chrome/browser/resources/ |
gcm_internals.css | 15 tr:nth-child(odd) { 31 #device-info tr :first-child {
|
/external/chromium_org/chrome/browser/ui/views/infobars/ |
infobar_container_view.cc | 42 InfoBarView* child = static_cast<InfoBarView*>(child_at(i)); local 43 top -= child->arrow_height(); 44 int child_height = child->total_height(); 45 child->SetBounds(0, top, width(), child_height);
|
/external/chromium_org/mojo/services/public/cpp/view_manager/lib/ |
node_private.h | 36 void LocalAddChild(Node* child) { 37 node_->LocalAddChild(child); 39 void LocalRemoveChild(Node* child) { 40 node_->LocalRemoveChild(child);
|
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
ChildListMutationScope.h | 112 void childAdded(Node& child) 115 m_accumulator->childAdded(&child); 118 void willRemoveChild(Node& child) 121 m_accumulator->willRemoveChild(&child);
|
/external/chromium_org/third_party/WebKit/Tools/TestResultServer/static-dashboards/ |
webtreemap.js | 121 var rmin = node.data['$area']; // Smallest seen child so far. 122 var rmax = rmin; // Largest child. 158 y1 += 14; // XXX get first child height for caption spacing 162 for (var start = 0, child; child = tree.children[start]; ++start) { 164 if (child.dom) { 165 child.dom.style.zIndex = 0; 166 position(child.dom, -2, -2, 0, 0); 190 child = tree.children[i]; 191 if (!child.dom) [all...] |
/external/chromium_org/third_party/android_crazy_linker/src/tests/ |
test_relocated_shared_relro.cpp | 38 pid_t child = fork(); local 39 if (child < 0) 42 if (child == 0) { 43 // In the child. 47 printf("Child waiting for foo relro fd\n"); 52 printf("RELRO used in child process\n"); 82 printf("Relocated RELRO sent to child\n"); 86 printf("Parent waiting for child\n"); 88 // Wait for child to complete. 90 waitpid(child, &status, 0) [all...] |
test_shared_relro.cpp | 47 pid_t child = fork(); local 48 if (child < 0) 51 if (child == 0) { 52 // In the child. 53 printf("Child waiting for foo relro fd\n"); 58 printf("RELRO used in child process\n"); 82 printf("RELRO enabled and sent to child\n"); 86 printf("Parent waiting for child\n"); 88 // Wait for child to complete. 90 waitpid(child, &status, 0) [all...] |
/external/chromium_org/tools/cr/cr/ |
visitor.py | 43 for child in node.children: 44 self.VisitNode(child) 202 def OnChanged(self, child): 203 _ = child 211 def _AddChild(self, child): 212 if child and child != self and child not in self._children: 213 self._children.appendleft(child) 214 child.RegisterViewer(self [all...] |
/external/chromium_org/ui/aura/client/ |
window_stacking_client.h | 22 virtual bool AdjustStacking(Window** child,
|
/external/chromium_org/ui/wm/core/ |
transient_window_stacking_client.h | 22 virtual bool AdjustStacking(aura::Window** child,
|
/external/junit/src/org/junit/runner/manipulation/ |
Filter.java | 31 public void apply(Object child) throws NoTestsRemainException { 82 * @param child the runner to be filtered by the receiver 85 public void apply(Object child) throws NoTestsRemainException { 86 if (!(child instanceof Filterable)) 88 Filterable filterable= (Filterable) child;
|
/frameworks/base/tests/RenderThreadTest/src/com/example/renderthread/ |
SubActivity.java | 45 View child = container.getChildAt(i); local 46 int dir = child.getId() == R.id.from_left ? 1 : -1; 47 child.setTranslationX(dx * dir); 48 child.animate().translationX(0).setDuration(MainActivity.DURATION);
|
/frameworks/support/v17/leanback/src/android/support/v17/leanback/app/ |
BrowseFrameLayout.java | 36 public void onRequestChildFocus(View child, View focused); 84 public void requestChildFocus(View child, View focused) { 85 super.requestChildFocus(child, focused); 87 mOnChildFocusListener.onRequestChildFocus(child, focused);
|
/libcore/dom/src/test/java/org/w3c/domts/level1/core/ |
hc_nodelisttraverselist.java | 31 * The range of valid child node indices is 0 thru length -1 67 Node child; local 85 child = (Node) employeeList.item(indexN10073); 86 nodeType = (int) child.getNodeType(); 87 childName = child.getNodeName();
|
nodelistindexnotzero.java | 32 * employee and access its fourth child by using an index 67 Node child; local 77 child = employeeList.item(1); 79 child = employeeList.item(3); 82 childName = child.getNodeName();
|
/libcore/dom/src/test/java/org/w3c/domts/level2/core/ |
importNode11.java | 43 * Method should return a node of type Entity_Reference whose first child's value is "Texas" as defined 77 Node child; local 86 child = aNode.getFirstChild(); 87 assertNotNull("child", child); 88 childValue = child.getNodeValue();
|
importNode12.java | 79 Node child; local 94 child = entity1.getFirstChild(); 95 assertNotNull("notnull", child); 96 childName = child.getNodeName();
|
/ndk/sources/android/crazy_linker/tests/ |
test_relocated_shared_relro.cpp | 38 pid_t child = fork(); local 39 if (child < 0) 42 if (child == 0) { 43 // In the child. 47 printf("Child waiting for foo relro fd\n"); 52 printf("RELRO used in child process\n"); 82 printf("Relocated RELRO sent to child\n"); 86 printf("Parent waiting for child\n"); 88 // Wait for child to complete. 90 waitpid(child, &status, 0) [all...] |
test_shared_relro.cpp | 47 pid_t child = fork(); local 48 if (child < 0) 51 if (child == 0) { 52 // In the child. 53 printf("Child waiting for foo relro fd\n"); 58 printf("RELRO used in child process\n"); 82 printf("RELRO enabled and sent to child\n"); 86 printf("Parent waiting for child\n"); 88 // Wait for child to complete. 90 waitpid(child, &status, 0) [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/uimodel/ |
UiDocumentNode.java | 146 for (UiElementNode child : document.getUiChildren()) { 147 addElements(child, elements); 155 for (UiElementNode child : node.getUiChildren()) { 156 addElements(child, elements);
|
/external/chromium_org/content/shell/browser/ |
shell_platform_data_aura.cc | 39 virtual void OnWindowAddedToLayout(aura::Window* child) OVERRIDE { 40 child->SetBounds(root_->bounds()); 43 virtual void OnWillRemoveWindowFromLayout(aura::Window* child) OVERRIDE { 46 virtual void OnWindowRemovedFromLayout(aura::Window* child) OVERRIDE { 49 virtual void OnChildWindowVisibilityChanged(aura::Window* child, 53 virtual void SetChildBounds(aura::Window* child, 55 SetChildBoundsDirect(child, requested_bounds);
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
RenderTableCol.cpp | 84 bool RenderTableCol::isChildAllowed(RenderObject* child, RenderStyle* style) const 87 return child->isRenderTableCol() && style->display() == TABLE_COLUMN; 120 for (RenderObject* child = firstChild(); child; child = child->nextSibling()) 121 child->clearPreferredLogicalWidthsDirty(); 145 // If |this| is a column-group, the next column is the colgroup's first child column. 152 // Failing that, the child is the last column in a column-group, so the next column is the next column/column-group after its column-group.
|
/external/markdown/markdown/extensions/ |
rss.py | 77 for child in root: 79 if child.tag in ["h1", "h2", "h3", "h4", "h5"]: 81 heading = child.text.strip() 93 elif child.tag in ["p"]: 100 if len(child): 102 for node in child]) 104 content = child.text
|
/frameworks/base/core/tests/coretests/src/android/widget/listview/touch/ |
ListSetSelectionTest.java | 74 View child = mListView.getChildAt(i); local 75 if (child.getId() == targetPosition) { 105 View child = mListView.getChildAt(i); local 106 if (child.getId() == targetPosition) { 107 target = child; 140 View child = mListView.getChildAt(i); local 141 if (child.getId() == 0 && i == 0) {
|
/packages/apps/ContactsCommon/src/com/android/contacts/common/widget/ |
ProportionalLayout.java | 32 * <p>Only one child is allowed; if more are required, another ViewGroup can be used as the direct 33 * child of this layout.</p> 92 throw new IllegalStateException("ProportionalLayout requires exactly one child"); 95 final View child = getChildAt(0); local 98 measureChild(child, widthMeasureSpec, heightMeasureSpec); 99 final int childWidth = child.getMeasuredWidth(); 100 final int childHeight = child.getMeasuredHeight(); 113 measureChild(child, 124 throw new IllegalStateException("ProportionalLayout requires exactly one child"); 127 final View child = getChildAt(0) local [all...] |