HomeSort by relevance Sort by last modified time
    Searched defs:child (Results 326 - 350 of 654) sorted by null

<<11121314151617181920>>

  /external/skia/src/views/
SkListWidget.cpp 438 const SkDOM::Node* child; local
440 if ((child = dom.getFirstChild(node, "bindings")) != NULL)
446 SkListSource* listSrc = SkListSource::Factory(dom.findAttr(child, "data-fields"));
448 fSkinName.set(dom.findAttr(child, "skin-slots"));
453 int count = dom.countChildren(child, "bind");
459 child = dom.getFirstChild(child, "bind");
460 SkASSERT(child);
462 const char* fieldName = dom.findAttr(child, "field");
463 const char* slotName = dom.findAttr(child, "slot")
547 const SkDOM::Node* child; local
    [all...]
SkStackViewLayout.cpp 64 /* Measure the main-dimension for all the children. If a child is marked flex in that direction
71 SkView* child; local
75 while ((child = iter.next()) != NULL)
78 if (child->getFlags() & flexMask)
81 limit += (child->*sizeProc)();
155 SkView* child; local
160 while ((child = iter.next()) != NULL)
164 (child->*mainLocP)(pos);
165 SkScalar crossLoc = crossStartM + gAlignProcs[fAlign]((child->*crossGetSizeP)(), crossLimit);
168 (child->*crossLocP)(crossLoc)
247 SkView* child; local
    [all...]
  /external/valgrind/main/coregrind/
m_sparsewa.c 66 void* child[256]; /* either LevelN* or Level0* */ member in struct:__anon12452
219 if (levelN->child[curr_ix]) {
222 curr_nd = levelN->child[curr_ix];
259 if (levelN->child[i]) {
260 swa_deleteSWA_wrk( dealloc, levelN->child[i] );
295 levelN = levelN->child[ix];
332 if (levelN->child[ix] == NULL) {
333 levelN->child[ix] = swa_new_LevelN(swa, i-1);
337 levelN = levelN->child[ix];
344 if (levelN->child[ix] == NULL)
    [all...]
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
Intermediate.cpp 185 TIntermTyped* child = addConversion(op, left->getType(), right); local
186 if (child)
187 right = child;
189 child = addConversion(op, right->getType(), left);
190 if (child)
191 left = child;
243 TIntermTyped* child = addConversion(op, left->getType(), right); local
244 if (child == 0)
248 node->setRight(child);
284 TIntermTyped* child = childNode->getAsTyped() local
633 TIntermTyped* child = addConversion(EOpSequence, trueBlock->getType(), falseBlock); local
    [all...]
  /external/webkit/Source/WebCore/accessibility/
AXObjectCache.cpp 118 AccessibilityObject* child = imageChildren[k].get(); local
119 if (!child->isImageMapLink())
122 if (static_cast<AccessibilityImageMapLink*>(child)->areaElement() == areaElement)
123 return child;
521 // postToElement is false so that you can pass in any child of an element and it will go up the parent tree
  /external/webkit/Source/WebCore/html/
HTMLObjectElement.cpp 163 for (Node* child = firstChild(); child; child = child->nextSibling()) {
164 if (!child->hasTagName(paramTag))
167 HTMLParamElement* p = static_cast<HTMLParamElement*>(child);
228 for (Node* child = firstChild(); child; child = child->nextSibling())
429 Node* child = firstChild(); local
    [all...]
HTMLTableElement.cpp 69 for (Node* child = firstChild(); child; child = child->nextSibling()) {
70 if (child->hasTagName(captionTag))
71 return static_cast<HTMLTableCaptionElement*>(child);
84 for (Node* child = firstChild(); child; child = child->nextSibling())
95 Node* child; local
116 Node* child; local
    [all...]
  /external/webkit/Source/WebCore/html/parser/
HTMLConstructionSite.cpp 88 RefPtr<ChildType> child = prpChild; local
95 fosterParent(child.get());
96 ASSERT(child->attached() || !child->parentNode() || !child->parentNode()->attached());
97 return child.release();
100 parent->parserAddChild(child);
103 // the child, in which case we shouldn't try attaching it.
104 if (!child->parentNode())
105 return child.release()
117 RefPtr<Node> child = prpChild; local
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/
GlyphPageTreeNode.cpp 323 GlyphPageTreeNode* child = fontData ? m_children.get(fontData) : m_systemFallbackChild; local
324 if (!child) {
325 child = new GlyphPageTreeNode;
326 child->m_parent = this;
327 child->m_level = m_level + 1;
334 child->m_pageNumber = m_pageNumber;
337 m_children.set(fontData, child);
338 fontData->setMaxGlyphPageTreeLevel(max(fontData->maxGlyphPageTreeLevel(), child->m_level));
340 m_systemFallbackChild = child;
341 child->m_isSystemFallback = true
    [all...]
  /external/webkit/Source/WebCore/rendering/
RenderCounter.cpp 160 Element* child; local
180 child = self->firstElementChild();
182 while (child) {
183 result = child->renderer();
186 child = child->nextElementSibling();
194 child = self->nextElementSibling();
197 ASSERT(!child); // We can only reach this if we are searching beyond the root element
320 // hence we must be a child of that reset counter.
367 // previousSibling if it is a reset counter and hence the current previousSibling is its child
492 CounterNode* child = m_counterNode; local
    [all...]
RenderListItem.cpp 437 RenderObject* child = nextInPreOrder(list); local
438 while (child) {
439 if (child->node() && isList(child->node())) {
441 child = child->nextInPreOrderAfterChildren(list);
445 if (child->isListItem()) {
446 RenderListItem* item = toRenderListItem(child);
459 child = child->nextInPreOrder(list)
    [all...]
RenderWidget.cpp 72 Widget* child = it->first.get(); local
73 ScrollView* currentParent = child->parent();
77 currentParent->removeChild(child);
79 newParent->addChild(child);
86 static void moveWidgetToParentSoon(Widget* child, FrameView* parent)
90 parent->addChild(child);
92 child->removeFromParent();
95 widgetNewParentMap().set(child, parent);
  /external/webkit/Source/WebCore/svg/
SVGElement.cpp 287 Node* child = firstChild(); local
288 while (child) {
289 if (child->isSVGElement() && !static_cast<SVGElement*>(child)->haveLoadedRequiredResources())
291 child = child->nextSibling();
334 bool SVGElement::childShouldCreateRenderer(Node* child) const
336 if (child->isSVGElement())
337 return static_cast<SVGElement*>(child)->isValid();
  /external/webkit/Source/WebKit/android/nav/
CachedNode.cpp 45 CachedFrame* child = const_cast<CachedFrame*>(parent->hasFrame(this)); local
46 child->clearCursor();
227 CachedFrame* child = const_cast<CachedFrame*>(parent->hasFrame(this)); local
228 child->hideCursor();
346 case CHILD: return "CHILD"; break;
  /external/webkit/Source/WebKit/gtk/tests/
testatkroles.c 92 AtkObject* child; local
95 child = atk_object_ref_accessible_child(obj, pos);
96 g_assert(child);
97 child_role = atk_object_get_role(child);
100 g_object_unref(child);
  /external/webkit/Tools/DumpRenderTree/chromium/
AccessibilityUIElement.cpp 391 AccessibilityUIElement* child = getChildAtIndex(arguments[0].toInt32()); local
392 if (!child) {
397 result->set(*(child->getAsCppVariant()));
514 int count = 1; // Root object always has only one child, the WebView.
  /frameworks/base/core/java/android/widget/
GridView.java 321 View child = null; local
328 child = makeAndAddView(pos, y, flow, nextLeft, selected, where);
336 selectedView = child;
340 mReferenceView = child;
578 // Get the last child ...
617 // Get the first child ...
755 * @param childInSelectedRow A child in the row that contains the selection
784 * @param childInSelectedRow A child in the row that contains the selection
1026 final View child = obtainView(0, mIsScrap); local
1265 View child = getChildAt(mMotionPosition - mFirstPosition); local
1308 View child; local
2023 View child; local
    [all...]
  /frameworks/base/core/tests/coretests/src/android/widget/listview/touch/
ListTouchManyTest.java 68 assertEquals("Item zero not the first child in the list", 0, firstChild.getId());
105 View child = mListView.getChildAt(i); local
106 if ((child.getTop() >= mListView.getListPaddingTop())
107 && (child.getBottom() <=
109 TouchUtils.clickView(this, child);
133 View child = mListView.getChildAt(i); local
134 if ((child.getTop() >= mListView.getListPaddingTop())
135 && (child.getBottom() <=
137 TouchUtils.longClickView(this, child);
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/bars/
CustomBar.java 110 View child = getChildAt(index); local
111 if (child instanceof ImageView) {
112 ImageView imageView = (ImageView) child;
169 View child = getChildAt(index); local
170 if (child instanceof ImageView) {
171 ImageView imageView = (ImageView) child;
180 View child = findViewById(id); local
181 if (child instanceof ImageView) {
182 ImageView imageView = (ImageView) child;
201 View child = getChildAt(index) local
212 View child = findViewById(id); local
    [all...]
  /libcore/luni/src/main/java/java/util/prefs/
FilePreferencesImpl.java 104 throw new BackingStoreException("Cannot get child names for " + toString()
112 FilePreferencesImpl child = new FilePreferencesImpl(this, name); local
113 return child;
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
InnerNodeImpl.java 100 * Inserts {@code newChild} at {@code index}. If it is already child of
200 Node child = getFirstChild(); local
201 if (child == null) {
205 Node next = child.getNextSibling();
207 return hasTextContent(child) ? child.getTextContent() : "";
216 Node child = getFirstChild(); local
217 while (child != null) {
218 if (hasTextContent(child)) {
219 ((NodeImpl) child).getTextContent(buf)
    [all...]
  /libcore/luni/src/test/java/tests/api/org/xml/sax/helpers/
XMLFilterImplTest.java 55 private XMLFilterImpl child = new XMLFilterImpl(parent); field in class:XMLFilterImplTest
72 child.setContentHandler(handler);
73 child.setDTDHandler(handler);
74 child.setErrorHandler(handler);
91 child.setParent(null);
92 assertEquals(null, child.getParent());
94 child.setParent(parent);
95 assertEquals(parent, child.getParent());
101 child.setFeature("foo", true);
102 assertEquals(true, child.getFeature("foo"))
    [all...]
  /libcore/luni/src/test/java/tests/org/w3c/dom/
GetElementsByTagNameNS.java 98 Node child; local
121 child = (Node) elementList.item(indexN10076);
122 childName = child.getNodeName();
130 Node child; local
144 child = (Node) elementList.item(indexN10059);
145 childName = child.getNodeName();
205 Node child; local
230 child = (Node) elementList.item(indexN1007E);
231 childName = child.getNodeName();
240 Node child; local
    [all...]
ImportNode.java 50 * Create a child Text node with value "importedText" for the attribute node
53 * whose name matches "elem:attr1" and a child node whose value equals
104 Node child; local
130 child = aNode.getFirstChild();
131 childValue = child.getNodeValue();
185 Node child; local
195 child = aNode.getFirstChild();
196 childValue = child.getNodeValue();
233 Node child; local
246 child = aNode.getFirstChild()
    [all...]
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/cert/
TestUtils.java 256 PolicyNode child = new PolicyNode() { local
258 // child
287 s.add(child);
    [all...]

Completed in 2020 milliseconds

<<11121314151617181920>>