/external/chromium_org/chrome/common/extensions/docs/examples/api/tabs/inspector/ |
jstemplate_compiled.js | 116 * Appends the given child to the given parent in the DOM 119 * @param {Node} child The new child dom node. 121 function appendChild(parent, child) { 122 parent.appendChild(child); 357 * Inserts a new child before a given sibling. 361 * @return {Node} Reference to new child. 368 * Appends a new child to the specified (parent) node. 371 * @param {Node} child Child node to append [all...] |
/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/third_party/WebKit/Source/core/rendering/ |
RenderGrid.h | 108 LayoutUnit startOfColumnForChild(const RenderBox* child) const; 109 LayoutUnit endOfColumnForChild(const RenderBox* child) const; 118 LayoutUnit gridAreaBreadthForChild(const RenderBox* child, GridTrackSizingDirection, const Vector<GridTrack>&) const;
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/ |
RenderSVGForeignObject.cpp | 47 bool RenderSVGForeignObject::isChildAllowed(RenderObject* child, RenderStyle* style) const 50 return !child->isSVG() || child->isSVGRoot();
|
/external/chromium_org/third_party/skia/samplecode/ |
SampleAnimator.cpp | 75 const SkDOMNode* child = dom.getFirstChild(node); local 76 if (child) { 77 const SkDOMNode* found = find_nodeID(dom, child, name);
|
/external/chromium_org/tools/ |
multi_process_rss.py | 50 for child in children: 51 descendant.append(child.pid) 52 descendant.extend(_recursive_get_children(child.pid))
|
/external/chromium_org/ui/views/touchui/ |
touch_editing_menu.cc | 118 View* child = child_at(i); local 119 int x = child->bounds().right() + kSpacingBetweenButtons / 2; 120 canvas->FillRect(gfx::Rect(x, 0, 1, child->height()),
|
/external/chromium_org/webkit/browser/fileapi/ |
file_system_url.cc | 122 bool FileSystemURL::IsParent(const FileSystemURL& child) const { 123 return IsInSameFileSystem(child) && 124 path().IsParent(child.path());
|
/external/compiler-rt/lib/asan/tests/ |
asan_mac_test.cc | 29 pthread_t child; local 30 PTHREAD_CREATE(&child, NULL, CFAllocatorDefaultDoubleFree, NULL); 31 PTHREAD_JOIN(child, NULL); // Shouldn't be reached. 159 // Call malloc in the child process to make sure we won't deadlock. 172 // TODO(glider): need to detect that none of the child processes deadlocked.
|
/external/e2fsprogs/lib/ss/ |
help.c | 43 int fd, child; local 105 switch (child = fork()) { 115 while (wait(NULL) != child) {
|
/external/jsilver/src/com/google/clearsilver/jsilver/data/ |
NewHdfParser.java | 79 Data child = data.createChild(name); local 85 child.setAttribute(key, value); 88 return child; 532 Data child = handleNodeCreation(state.currentNode, element); local 534 state.currentNode = child; 543 Data child = handleNodeCreation(state.currentNode, element); local 544 child.setValue(value); 548 Data child = handleNodeCreation(state.currentNode, element); local 551 child.setValue(src.getValue()); 553 child.setValue("") 558 Data child = handleNodeCreation(state.currentNode, element); local [all...] |
/external/owasp/sanitizer/tools/ |
update_tree_in_svn.py | 71 for child in children: 72 handle(os.path.join(src, child), os.path.join(dst, child))
|
/external/skia/samplecode/ |
SampleAnimator.cpp | 75 const SkDOMNode* child = dom.getFirstChild(node); local 76 if (child) { 77 const SkDOMNode* found = find_nodeID(dom, child, name);
|
/frameworks/base/test-runner/src/android/test/ |
ActivityUnitTestCase.java | 68 * <li>{@link android.app.Activity#finishFromChild(Activity child)}</li> 265 * <li>{@link android.app.Activity#finishFromChild(Activity child)}</li> 310 public void startActivityFromChild(Activity child, Intent intent, int requestCode) { 319 * <li>{@link android.app.Activity#finishFromChild(Activity child)}</li> 323 public void finishFromChild(Activity child) { 334 public void finishActivityFromChild(Activity child, int requestCode) {
|
/packages/apps/Calendar/src/com/android/calendar/month/ |
MonthListView.java | 191 SimpleWeekView child = (SimpleWeekView) getChildAt(0); local 192 if (child == null) { 195 return child.getFirstJulianDay() + SimpleDayPickerFragment.DAYS_PER_WEEK - 1;
|
/packages/apps/DeskClock/src/com/android/deskclock/widget/sgv/ |
ReorderHelper.java | 31 // and this child supports reordering, the dragged view will be reordered to be next 32 // to this child. 35 // The current child that is being dragged for reordering. 59 * Handle dropping the dragged child. 67 Log.w(TAG, "Current dragged over child does not exist"); 71 // reordering areas. Don't update dragged over child if its the same as 72 // it was before or is the same as the child's original item. 88 // Even if the dragged child is not dropped in a reorder area, we 108 * Handles determining which child views should be moved out of the way to 110 * new child view's space is entered by the dragging view [all...] |
/packages/apps/Gallery2/src/com/android/gallery3d/app/ |
PhotoPageBottomControls.java | 71 View child = mContainer.getChildAt(i); local 72 child.setOnClickListener(this); 73 mControlsVisible.put(child, false);
|
/packages/apps/UnifiedEmail/src/com/android/mail/ui/ |
MiniDrawerView.java | 106 View child; local 133 while ((child=getChildAt(1)) != mDotdotdot) { 134 removeView(child);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/ |
btm_matcher.py | 105 for child in current_ast_node.children: 107 if isinstance(child, pytree.Leaf) and child.value == u";":
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/ |
btm_matcher.py | 105 for child in current_ast_node.children: 107 if isinstance(child, pytree.Leaf) and child.value == u";":
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/pages/ |
OverviewPage.java | 154 for (ElementDescriptor child : manifest.getDescriptor().getChildren()) { 155 if (!excludes.contains(child)) { 156 descriptorFilters.add(child);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/ |
TestDragElement.java | 79 for (TestDragElement child : children) { 80 mChildren.add(child); 81 child.mParent = this;
|
/packages/apps/Launcher2/src/com/android/launcher2/ |
PagedView.java | 528 final View child = getPageAt(i); local 529 final LayoutParams lp = (LayoutParams) child.getLayoutParams(); 550 child.measure(childWidthMeasureSpec, childHeightMeasureSpec); 551 maxChildHeight = Math.max(maxChildHeight, child.getMeasuredHeight()); 552 if (DEBUG) Log.d(TAG, "\tmeasure-child" + i + ": " + child.getMeasuredWidth() + ", " 553 + child.getMeasuredHeight()); 618 final View child = getPageAt(i); local 619 childrenX[i] = child.getX(); 620 childrenY[i] = child.getY() 629 final View child = getPageAt(i); local 660 final View child = getPageAt(i); local 692 View child = getChildAt(i); local [all...] |
/external/chromium_org/ash/frame/caption_buttons/ |
frame_caption_button_container_view.cc | 134 const views::View* child = child_at(i); local 135 if (child->visible()) 144 views::View* child = child_at(i); local 145 if (!child->visible()) 148 gfx::Size size = child->GetPreferredSize(); 149 child->SetBounds(x, 0, size.width(), size.height());
|
/external/chromium_org/chrome/browser/component_updater/ |
update_response.cc | 53 // Returns child nodes of |root| with name |name|. 56 for (xmlNode* child = root->children; child != NULL; child = child->next) { 57 if (!TagNameEquals(child, name)) { 60 result.push_back(child);
|