HomeSort by relevance Sort by last modified time
    Searched refs:child (Results 751 - 775 of 2913) sorted by null

<<31323334353637383940>>

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
TypographyFix.java 64 Node child = childNodes.item(i); local
65 if (child.getNodeType() == Node.TEXT_NODE) {
66 IndexedRegion region = (IndexedRegion) child;
69 TypographyDetector.getEdits(mId, message, child);
  /external/chromium_org/third_party/skia/src/core/
SkRTree.cpp 75 *newRoot->child(0) = fRoot;
76 *newRoot->child(1) = *newSibling;
135 toInsert = this->insert(root->child(childIndex)->fChild.subtree, branch, level);
136 root->child(childIndex)->fBounds = this->computeBounds(
137 root->child(childIndex)->fChild.subtree);
147 toDivide[i] = *root->child(i);
156 *root->child(i) = toDivide[i];
159 *newSibling->child(i - splitIndex) = toDivide[i];
168 *root->child(root->fNumChildren) = *toInsert;
179 // root's child pointers do not point to leaves, so minimize area increas
    [all...]
  /external/skia/src/core/
SkRTree.cpp 75 *newRoot->child(0) = fRoot;
76 *newRoot->child(1) = *newSibling;
135 toInsert = this->insert(root->child(childIndex)->fChild.subtree, branch, level);
136 root->child(childIndex)->fBounds = this->computeBounds(
137 root->child(childIndex)->fChild.subtree);
147 toDivide[i] = *root->child(i);
156 *root->child(i) = toDivide[i];
159 *newSibling->child(i - splitIndex) = toDivide[i];
168 *root->child(root->fNumChildren) = *toInsert;
179 // root's child pointers do not point to leaves, so minimize area increas
    [all...]
  /packages/apps/ContactsCommon/src/com/android/contacts/common/list/
CustomContactListFilterActivity.java 491 final GroupDelta child = oppositeChildren.next(); local
492 setShouldSync(child, shouldSync, false);
497 public void setShouldSync(GroupDelta child, boolean shouldSync) {
498 setShouldSync(child, shouldSync, true);
505 public void setShouldSync(GroupDelta child, boolean shouldSync, boolean attemptRemove) {
506 child.putShouldSync(shouldSync);
509 mUnsyncedGroups.remove(child);
511 mSyncedGroups.add(child);
515 mSyncedGroups.remove(child);
517 mUnsyncedGroups.add(child);
605 final GroupDelta child = (GroupDelta)this.getChild(groupPosition, childPosition); local
709 final GroupDelta child = (GroupDelta)mAdapter.getChild(groupPosition, childPosition); local
751 final GroupDelta child = (GroupDelta)mAdapter.getChild(groupPosition, childPosition); local
    [all...]
  /external/chromium_org/ui/compositor/
layer_unittest.cc     [all...]
layer.cc 157 void Layer::Add(Layer* child) {
158 DCHECK(!child->compositor_);
159 if (child->parent_)
160 child->parent_->Remove(child);
161 child->parent_ = this;
162 children_.push_back(child);
163 cc_layer_->AddChild(child->cc_layer_);
164 child->OnDeviceScaleFactorChanged(device_scale_factor_);
166 child->SendPendingThreadedAnimations()
    [all...]
  /external/chromium_org/chrome/browser/extensions/
menu_manager.cc 141 MenuItem* child = NULL; local
143 child = *i;
145 return child;
147 child = (*i)->ReleaseChild(child_id, recursive);
148 if (child)
149 return child;
164 MenuItem* child = *i; local
165 result.insert(child->id());
166 std::set<Id> removed = child->RemoveAllDescendants();
372 MenuItem* child) {
407 MenuItem* child = GetItemById(child_id); local
488 MenuItem* child = (*j)->ReleaseChild(id, true \/* recursive *\/); local
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
AppsCustomizeTabHost.java 243 View child = visiblePages.get(i);
244 if (child instanceof PagedViewCellLayout) {
245 ((PagedViewCellLayout) child).resetChildrenOnKeyListeners();
246 } else if (child instanceof PagedViewGridLayout) {
247 ((PagedViewGridLayout) child).resetChildrenOnKeyListeners();
250 mAppsCustomizePane.removeView(child);
254 LayoutParams p = new FrameLayout.LayoutParams(child.getMeasuredWidth(),
255 child.getMeasuredHeight());
256 p.setMargins((int) child.getLeft(), (int) child.getTop(), 0, 0)
447 final View child = parent.getChildAt(i); local
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
DebugTreeAdaptor.cs 90 // walk the tree and emit create and add child events
97 /** <summary>^(A B C): emit create A, create B, add child, ...</summary> */
104 object child = adaptor.GetChild( t, i );
105 SimulateTreeConstruction( child );
106 dbg.AddChild( t, child );
150 public virtual void AddChild( object t, object child )
152 if ( t == null || child == null )
156 adaptor.AddChild( t, child );
157 dbg.AddChild( t, child );
172 public virtual void AddChild( object t, IToken child )
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderLineBoxList.cpp 273 void RenderLineBoxList::dirtyLinesFromChangedChild(RenderObject* container, RenderObject* child)
297 for (curr = child->previousSibling(); curr; curr = curr->previousSibling()) {
321 // We may have just removed a <br> with no line box that was our first child. In this case
350 // If |child| has been inserted before the first element in the linebox, but after collapsed leading
351 // space, the search for |child|'s linebox will go past the leading space to the previous linebox and select that
352 // one as |box|. If we hit that situation here, dirty the |box| actually containing the child too.
353 bool insertedAfterLeadingSpace = box->lineBreakObj() == child->previousSibling();
354 if (adjacentBox && (adjacentBox->lineBreakObj() == child || child->isBR() || (curr && curr->isBR())
367 for (const InlineFlowBox* child = m_firstLineBox; child != 0; child = child->nextLineBox())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/profiler/
CPUProfileDataGrid.js 304 _merge: function(child, shouldAbsorb)
306 this.selfTime += child.selfTime;
309 this.totalTime += child.totalTime;
318 if (!shouldAbsorb || children[index] !== child)
322 children = child.children.slice();
363 appendChild: function(child)
365 this.insertChild(child, this.children.length);
368 insertChild: function(child, index)
370 this.children.splice(index, 0, child);
371 this.childrenByCallUID[child.callUID] = child
    [all...]
  /frameworks/support/v7/recyclerview/src/android/support/v7/widget/
ChildHelper.java 57 * @param child View to add.
60 void addView(View child, boolean hidden) {
61 addView(child, -1, hidden);
67 * @param child View to add.
68 * @param index Index of the child from the regular perspective (excluding hidden views).
72 void addView(View child, int index, boolean hidden) {
79 mCallback.addView(child, offset);
82 mHiddenViews.add(child);
132 * @param index Index of the child from the regular perspective (excluding hidden views).
151 * Returns the child at provided index
    [all...]
  /external/chromium_org/third_party/libxml/src/
xmlschemas.c 6495 xmlNodePtr child = NULL; local
6615 xmlNodePtr child = NULL; local
6875 xmlNodePtr child = NULL; local
6968 xmlNodePtr child = NULL; local
7015 xmlNodePtr child = NULL; local
7089 xmlNodePtr child = NULL; local
7479 xmlNodePtr child = NULL; local
7631 xmlNodePtr child = NULL; local
7763 xmlNodePtr child = NULL; local
8194 xmlNodePtr child = NULL; local
8292 xmlNodePtr child = NULL; local
8441 xmlNodePtr child = NULL; local
8837 xmlNodePtr child = NULL; local
9006 xmlNodePtr child = NULL; local
9117 xmlNodePtr child = NULL; local
9332 xmlNodePtr child = NULL; local
9434 xmlNodePtr child = NULL; local
9730 xmlNodePtr child; local
10690 xmlNodePtr child; local
10935 xmlNodePtr child = NULL; local
11198 xmlNodePtr child = NULL; local
11462 xmlNodePtr child = NULL; local
11766 xmlNodePtr child = NULL; local
11902 xmlNodePtr child = NULL; local
11992 xmlNodePtr child = NULL; local
12086 xmlNodePtr child = NULL; local
    [all...]
  /external/libxml2/
xmlschemas.c 6514 xmlNodePtr child = NULL; local
6634 xmlNodePtr child = NULL; local
6894 xmlNodePtr child = NULL; local
6987 xmlNodePtr child = NULL; local
7034 xmlNodePtr child = NULL; local
7108 xmlNodePtr child = NULL; local
7498 xmlNodePtr child = NULL; local
7650 xmlNodePtr child = NULL; local
7782 xmlNodePtr child = NULL; local
8213 xmlNodePtr child = NULL; local
8311 xmlNodePtr child = NULL; local
8460 xmlNodePtr child = NULL; local
8856 xmlNodePtr child = NULL; local
9025 xmlNodePtr child = NULL; local
9136 xmlNodePtr child = NULL; local
9351 xmlNodePtr child = NULL; local
9453 xmlNodePtr child = NULL; local
9749 xmlNodePtr child; local
10709 xmlNodePtr child; local
10954 xmlNodePtr child = NULL; local
11217 xmlNodePtr child = NULL; local
11481 xmlNodePtr child = NULL; local
11785 xmlNodePtr child = NULL; local
11921 xmlNodePtr child = NULL; local
12011 xmlNodePtr child = NULL; local
12105 xmlNodePtr child = NULL; local
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
StackScrollAlgorithm.java 180 View child = algorithmState.visibleChildren.get(i); local
181 StackScrollState.ViewState childViewState = resultState.getViewStateForView(child);
196 ExpandableView child = algorithmState.visibleChildren.get(i); local
197 StackScrollState.ViewState state = resultState.getViewStateForView(child);
216 if (!child.isTransparent()) {
221 previousNotificationIsSwiped = child.getTranslationX() != 0;
262 View child = algorithmState.visibleChildren.get(i); local
263 StackScrollState.ViewState childViewState = resultState.getViewStateForView(child);
267 boolean isActivatedChild = activatedChild == child;
292 // The child below the dragged one must be fully visibl
347 ExpandableView child = algorithmState.visibleChildren.get(i); local
597 ExpandableView child = algorithmState.visibleChildren.get(i); local
668 View child = algorithmState.visibleChildren.get(i); local
    [all...]
  /bionic/libc/arch-arm/bionic/
__bionic_clone.S 45 # store 'fn' and 'arg' to the child stack
62 1: # The child.
  /cts/suite/audio_quality/lib/include/task/
TaskGeneric.h 74 * default implementation for adding child action
75 * Ownership of the child is passed to this instance, and child will be destroyed in parent's
79 virtual bool addChild(TaskGeneric* child);
95 bool forEachChild(bool (*runForEachChild)(TaskGeneric* child, void* data), void* data);
98 /// used by child instance to register allowed attributes
  /cts/tests/tests/animation/src/android/animation/cts/
LayoutAnimationTest.java 212 public void addChild(ViewGroup parent, View child) {
213 super.addChild(parent, child);
218 public void hideChild(ViewGroup parent, View child) {
219 super.hideChild(parent, child);
235 public void removeChild(ViewGroup parent, View child) {
236 super.removeChild(parent, child);
253 public void showChild(ViewGroup parent, View child) {
254 super.showChild(parent, child);
  /cts/tools/utils/cts/
tools.py 56 child = doc.createElement('TestSuite')
57 child.setAttribute('name', suite_name)
58 parent.appendChild(child)
59 # recurse into child suites
60 suite.WriteDescription(doc, child)
62 child = doc.createElement('TestCase')
63 child.setAttribute('name', case_name)
64 parent.appendChild(child)
68 child.appendChild(test)
  /development/scripts/
symbol.py 189 child = subprocess.Popen(cmd, stdin=subprocess.PIPE, stdout=subprocess.PIPE)
194 child.stdin.write("0x%s\n" % addr)
195 child.stdin.flush()
199 symbol = child.stdout.readline().strip()
202 location = child.stdout.readline().strip()
212 child.stdin.write("\n")
215 child.stdin.close()
216 child.stdout.close()
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
ElemForEach.java 317 * Perform a query if needed, and call transformNode for each child.
360 int child; local
362 while (DTM.NULL != (child = sourceNodes.nextNode()))
364 currentNodes.setTop(child);
365 currentExpressionNodes.setTop(child);
367 if ((child & DTMManager.IDENT_DTM_DEFAULT) != docID)
369 dtm = xctxt.getDTM(child);
370 docID = child & DTMManager.IDENT_DTM_DEFAULT;
373 //final int exNodeType = dtm.getExpandedTypeID(child);
374 final int nodeType = dtm.getNodeType(child);
    [all...]
  /external/chromium_org/ash/wm/
window_util.h 86 // Changes the parent of a |child| and all its transient children that are
88 void ReparentChildWithTransientChildren(aura::Window* child,
92 // Changes the parent of all transient children of a |child| to |new_parent|.
95 void ReparentTransientChildrenOfChild(aura::Window* child,
  /external/chromium_org/chrome/browser/resources/memory_internals/
list.css 10 table.list tr:nth-child(odd) td {
  /external/chromium_org/chrome/browser/ui/ash/accessibility/
ax_root_obj_wrapper.cc 18 bool AXRootObjWrapper::HasChild(views::AXAuraObjWrapper* child) {
21 return std::find(children.begin(), children.end(), child) != children.end();
  /external/chromium_org/content/browser/frame_host/
frame_tree_node.h 44 void AddChild(scoped_ptr<FrameTreeNode> child, int frame_routing_id);
45 void RemoveChild(FrameTreeNode* child);

Completed in 1124 milliseconds

<<31323334353637383940>>