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

<<11121314151617181920>>

  /external/bluetooth/glib/gio/
gfilemonitor.c 342 GFile *child; member in struct:_FileChange
350 g_object_unref (change->child);
372 change->child, change->other_file, change->event_type);
383 GFile *child,
395 change->child = g_object_ref (child);
630 * @child: a #GFile.
642 GFile *child,
651 g_return_if_fail (G_IS_FILE (child));
653 limiter = g_hash_table_lookup (monitor->priv->rate_limiter, child);
    [all...]
  /external/chromium/chrome/browser/bookmarks/
bookmark_utils.cc 112 const BookmarkNode* child = node->GetChild(i); local
113 if (child->is_url())
303 // drop_parent can't accept a child that is an ancestor.
  /external/chromium/chrome/browser/importer/
firefox3_importer.cc 230 BookmarkItem* child = item; local
233 while (child->parent >= 0) {
234 BookmarkItem* parent = list[child->parent];
260 child = parent;
  /external/chromium/net/disk_cache/
sparse_control.cc 33 // The maximum number of bytes that a child can store.
36 // The size of each data block (tracked by the child allocation bitmap).
39 // Returns the name of a child entry given the base_name and signature of the
41 // If the entry is called entry_name, child entries will be named something
43 // number of the particular child.
91 // the child entries.
137 // Post a task to delete the next child.
158 // Logs the end event for |operation| on a child entry. Range operations log
159 // no events for each child they search through.
433 // Keep using the same child or open another one?
642 EntryImpl* child = static_cast<EntryImpl*>(child_); local
    [all...]
  /external/kernel-headers/original/linux/
ioport.h 22 struct resource *parent, *sibling, *child; member in struct:resource
  /external/llvm/tools/llvm-objdump/
llvm-objdump.cpp 548 OwningPtr<Binary> child; local
549 if (error_code ec = i->getAsBinary(child)) {
554 if (ObjectFile *o = dyn_cast<ObjectFile>(child.get()))
  /external/mesa3d/src/talloc/
hieralloc.c 20 struct hieralloc_header * child; member in struct:hieralloc_header
70 hieralloc_header_t * child = header->child; local
71 while (child)
74 check_children(child);
75 child = child->nextSibling;
88 if (parent->child)
90 // hieralloc_header_t * child = parent->child;
209 hieralloc_header_t * child = header->child; local
243 hieralloc_header_t * child = header->child; local
479 const hieralloc_header_t * child = header->child; local
504 const hieralloc_header_t * child = header->child; local
547 const hieralloc_header_t * child = start->child; local
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/x11/
SDL_x11wm.c 338 Window child; local
364 XTranslateCoordinates( SDL_Display, WMwindow, SDL_Root, 0, 0, &xNew, &yNew, &child );
395 Window child; local
397 XTranslateCoordinates( SDL_Display, WMwindow, SDL_Root, 0, 0, px, py, &child );
407 Window child; local
410 XTranslateCoordinates( SDL_Display, WMwindow, SDL_Root, 0, 0, &x, &y, &child );
  /external/quake/quake/src/QW/server/
model.c 919 mnode_t *in, *child; local
940 child = in->children[j];
941 if (child->contents < 0)
942 out->children[j] = child->contents;
944 out->children[j] = child - loadmodel->nodes;
  /external/skia/src/views/
SkListView.cpp 122 const SkDOM::Node* child = dom.getFirstChild(node, "item"); local
125 while (child)
128 child = dom.getNextSibling(child, "item");
137 child = dom.getFirstChild(node, "item");
138 while (child)
140 rec->fLabel.set(dom.findAttr(child, "label"));
141 rec->fTail.set(dom.findAttr(child, "tail"));
142 rec->fAltTail.set(dom.findAttr(child, "alt-tail"));
143 rec->fTarget.set(dom.findAttr(child, "target"))
472 const SkDOM::Node* child; local
    [all...]
SkView.cpp 119 SkView* child; local
123 while ((child = iter.next()) != NULL)
124 child->draw(childCanvas);
208 SkView* child, *focus; local
209 while ((child = iter.next()) != NULL)
210 if ((focus = child->acceptFocus(dir)) != NULL)
216 SkView* child, *focus; local
217 while ((child = iter.next()) != NULL)
218 if ((focus = child->acceptFocus(dir)) != NULL)
239 SkView* child, *parent local
363 SkView* child; local
657 SkView* child; local
762 SkView* child; local
    [all...]
  /external/skia/src/xml/
SkDOM.cpp 92 const Node* child = node->fFirstChild; local
96 for (; child != NULL; child = child->fNextSibling)
97 if (!strcmp(name, child->fName))
100 return child;
278 SkDOM::Node* child = parent->fFirstChild; local
280 while (child)
282 SkDOM::Node* next = child->fNextSibling;
283 child->fNextSibling = prev
458 const Node* child = this->getFirstChild(node); local
    [all...]
  /external/tinyxml/
tinyxml.cpp 785 // 2) An element with only a text child is printed as <foo> text </foo>
884 const TiXmlNode* child = this->FirstChild(); local
885 if ( child ) {
886 const TiXmlText* childText = child->ToText();
1621 TiXmlNode* child = node->FirstChild(); local
1622 if ( child )
1623 return TiXmlHandle( child );
1633 TiXmlNode* child = node->FirstChild( value ); local
1634 if ( child )
1635 return TiXmlHandle( child );
1645 TiXmlElement* child = node->FirstChildElement(); local
1657 TiXmlElement* child = node->FirstChildElement( value ); local
1670 TiXmlNode* child = node->FirstChild(); local
1689 TiXmlNode* child = node->FirstChild( value ); local
1708 TiXmlElement* child = node->FirstChildElement(); local
1727 TiXmlElement* child = node->FirstChildElement( value ); local
    [all...]
  /external/v8/test/cctest/
test-profile-generator.cc 475 // [child nodes referring to the same entry get merged and
752 const ProfileNode* child = parent->children()->at(i); local
753 if (strcmp(child->entry()->name(), name) == 0) return child;
  /external/valgrind/main/coregrind/
m_libcproc.c 221 // when starting child processes, so they don't see that added stuff.
332 /* restore the DATA rlimit for the child */
345 child! */
355 /* child */
594 /* on success: wLO = child pid; wHI = 1 for child, 0 for parent */
596 return 0; /* this is child: return 0 instead of child pid */
680 vg_atfork_t child; member in struct:atfork
688 void VG_(atfork)(vg_atfork_t pre, vg_atfork_t parent, vg_atfork_t child)
    [all...]
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8DOMWindowCustom.cpp 473 Frame* child = frame->tree()->child(index);
474 if (child)
475 return toV8(child->domWindow());
496 Frame* child = frame->tree()->child(propName); local
497 if (child)
498 return toV8(child->domWindow());
554 if (type == v8::ACCESS_HAS && target->tree()->child(name))
556 if (type == v8::ACCESS_GET && target->tree()->child(name) && !host->HasRealNamedProperty(key->ToString())
    [all...]
  /external/webkit/Source/WebCore/dom/
Element.h 539 Node* child = container->firstChild(); local
540 while (child && !child->isElementNode())
541 child = child->nextSibling();
542 return static_cast<Element*>(child);
  /external/webkit/Source/WebCore/editing/
DeleteSelectionCommand.cpp 63 for (Node* child = row->firstChild(); child; child = child->nextSibling())
64 if (isTableCell(child) && !isTableCellEmpty(child))
359 RefPtr<Node> child = node->firstChild();
360 while (child) {
361 RefPtr<Node> nextChild = child->nextSibling();
362 removeNode(child.get())
377 Node* child = node->firstChild(); local
    [all...]
  /external/webkit/Source/WebCore/rendering/
AutoTableLayout.cpp 52 for (RenderObject* child = m_table->firstChild(); child; child = child->nextSibling()) {
53 if (child->isTableCol())
54 toRenderTableCol(child)->computePreferredLogicalWidths();
55 else if (child->isTableSection()) {
56 RenderTableSection* section = toRenderTableSection(child);
151 RenderObject* child = m_table->firstChild(); local
154 while (child && child->isTableCol())
    [all...]
  /external/webkit/Source/WebKit/android/WebCoreSupport/autofill/
FormManagerAndroid.cpp 152 Node* child = element->firstChild(); local
155 return FindChildTextInner(child, kChildSearchDepth);
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/
AbsActionBarView.java 209 protected int measureChildView(View child, int availableWidth, int childSpecHeight,
211 child.measure(MeasureSpec.makeMeasureSpec(availableWidth, MeasureSpec.AT_MOST),
214 availableWidth -= child.getMeasuredWidth();
220 protected int positionChild(View child, int x, int y, int contentHeight) {
221 int childWidth = child.getMeasuredWidth();
222 int childHeight = child.getMeasuredHeight();
225 child.layout(x, childTop, x + childWidth, childTop + childHeight);
230 protected int positionChildInverse(View child, int x, int y, int contentHeight) {
231 int childWidth = child.getMeasuredWidth();
232 int childHeight = child.getMeasuredHeight()
    [all...]
ActionBarContainer.java 166 public ActionMode startActionModeForChild(View child, ActionMode.Callback callback) {
167 // No starting an action mode for an action bar child! (Where would it go?)
206 final View child = getChildAt(i); local
208 if (child == mTabContainer) continue;
211 child.offsetTopAndBottom(tabHeight);
  /frameworks/base/media/libdrm/mobile1/include/xml/
xml_tinyParser.h 159 XML_TREE *child; member in struct:_XML_TREE
  /frameworks/base/services/java/com/android/server/wm/
InputMonitor.java 179 final WindowState child = windows.get(i); local
180 final InputChannel inputChannel = child.mInputChannel;
181 final InputWindowHandle inputWindowHandle = child.mInputWindowHandle;
182 if (inputChannel == null || inputWindowHandle == null || child.mRemoved) {
187 final int flags = child.mAttrs.flags;
188 final int type = child.mAttrs.type;
190 final boolean hasFocus = (child == mInputFocus);
191 final boolean isVisible = child.isVisibleLw();
192 final boolean hasWallpaper = (child == mService.mWallpaperTarget)
195 // If there's a drag in progress and 'child' is a potential drop target
    [all...]
  /frameworks/base/tools/localize/
XMLHandler.cpp 266 const XMLNode* child = m_children[i]; local
267 switch (child->Type()) {
274 result += child->to_string(nspaces, indent);
399 XMLNode* child = m_children[i]; local
400 if (child->m_type == ELEMENT && child->m_ns == ns && child->m_name == name) {
401 result.push_back(child);
413 XMLNode* child = m_children[i]; local
414 if (child->m_type == ELEMENT && child->m_ns == ns && child->m_name == name)
431 XMLNode* child = m_children[i]; local
    [all...]

Completed in 2053 milliseconds

<<11121314151617181920>>