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

<<11121314151617181920>>

  /external/apache-xml/src/main/java/org/apache/xml/utils/
NamespaceSupport2.java 123 // a child pointer.
470 private Context2 child = null; field in class:Context2
490 * @returns The child Namespace context object, or null if this
495 return child;
517 parent.child = this; // JJK: Doubly-linked
  /external/bluetooth/glib/gio/fen/
fen-node.c 191 node_t* child; local
202 child = children_find (parent, token);
203 if (child) {
204 parent = child;
207 child = op->add_missing (parent, op->user_data);
216 child = _head;
219 if (token == NULL && child) {
222 op->hit (child, op->user_data);
226 return child;
247 node_t* child = NULL local
    [all...]
  /external/bluetooth/glib/gio/win32/
gwinhttpfile.c 370 GWinHttpFile *child; local
387 child = g_object_new (G_TYPE_WINHTTP_FILE, NULL);
388 child->vfs = winhttp_file->vfs;
389 child->url = winhttp_file->url;
390 child->url.lpszScheme = g_memdup (winhttp_file->url.lpszScheme, (winhttp_file->url.dwSchemeLength+1)*2);
391 child->url.lpszHostName = g_memdup (winhttp_file->url.lpszHostName, (winhttp_file->url.dwHostNameLength+1)*2);
392 child->url.lpszUserName = g_memdup (winhttp_file->url.lpszUserName, (winhttp_file->url.dwUserNameLength+1)*2);
393 child->url.lpszPassword = g_memdup (winhttp_file->url.lpszPassword, (winhttp_file->url.dwPasswordLength+1)*2);
394 child->url.lpszUrlPath = wnew_path;
395 child->url.dwUrlPathLength = wcslen (wnew_path)
    [all...]
  /external/bluetooth/glib/gio/xdgmime/
xdgmimeglob.c 58 XdgGlobHashNode *child; member in struct:XdgGlobHashNode
161 if (glob_hash_node->child)
162 _xdg_glob_hash_node_dump (glob_hash_node->child, depth + 1);
237 XdgGlobHashNode *child; local
240 child = node->child;
241 while (child && child->character == 0)
243 if (strcmp (child->mime_type, mime_type) == 0)
248 child = child->next
    [all...]
  /external/chromium/chrome/browser/accessibility/
accessibility_win_browsertest.cc 57 // a child IAccessible. Order is important.
137 // Sets result to true if the child is located in the parent's tree. An
139 // IAccessible2::get_unique_id which is only supported by the child node.
141 IAccessible* parent, IAccessible2* child, bool* result) {
146 HRESULT hr = child->get_uniqueID(&unique_id);
315 VARIANT* child = child_array.get(); local
318 ++child_checker, ++child) {
320 child_accessible.Attach(GetAccessibleFromResultVariant(parent, child));
  /external/chromium/chrome/browser/extensions/
extension_menu_manager.cc 44 ExtensionMenuItem* child = NULL; local
46 child = *i;
48 return child;
50 child = (*i)->ReleaseChild(child_id, recursive);
51 if (child)
52 return child;
61 ExtensionMenuItem* child = *i; local
62 result.insert(child->id());
63 std::set<Id> removed = child->RemoveAllDescendants();
152 ExtensionMenuItem* child) {
185 ExtensionMenuItem* child = GetItemById(child_id); local
260 ExtensionMenuItem* child = (*j)->ReleaseChild(id, true \/* recursive *\/); local
    [all...]
  /external/chromium/chrome/browser/importer/
profile_writer.cc 102 const BookmarkNode* child = NULL; local
111 child = node;
115 if (child == NULL)
116 child = model->AddFolder(parent, parent->child_count(), folder_name);
117 parent = child;
  /external/chromium/chrome/browser/sync/glue/
bookmark_change_processor.cc 102 // a depth-first-search here. At each step, we consider the |index|-th child
120 // If |node| has an unprocessed child, process it next after pushing the
159 const BookmarkNode* child = parent->GetChild(index); local
160 DCHECK(child);
172 UpdateSyncNodeProperties(child, model, &sync_child);
176 associator->Associate(child, sync_child.GetId());
226 const BookmarkNode* child = new_parent->GetChild(new_index); local
228 if (child == model->GetBookmarkBarNode() || child == model->other_node()) {
236 // Lookup the sync node that's associated with |child|
    [all...]
  /external/chromium/chrome/browser/ui/gtk/
custom_button.cc 120 GtkWidget* child = gtk_bin_get_child(GTK_BIN(widget)); local
121 if (child)
122 gtk_container_propagate_expose(GTK_CONTAINER(widget), child, e); local
gtk_tree.cc 58 GtkTreeIter child; local
59 if (gtk_tree_model_iter_children(GTK_TREE_MODEL(tree_store), &child, iter)) {
61 if (!RemoveRecursively(tree_store, &child))
  /external/chromium/chrome/common/
web_apps.cc 159 WebNode child = children.item(i); local
160 if (!child.isElementNode())
162 WebElement elem = child.to<WebElement>();
  /external/chromium/net/disk_cache/
mem_entry_impl.cc 26 // Convert global offset to child index.
31 // Convert global offset to offset in child entry.
36 // Returns a name for a child entry given the base_name of the parent and the
38 // If the entry is called entry_name, child entries will be named something
39 // like Range_entry_name:YYY where YYY is the number of the particular child.
83 // If this is a parent entry, we need to doom all the child entries.
97 // If this is a child entry, detach it from the parent.
107 // counting to child entry.
118 // A child entry is always not in use. The consequence is that a child entr
352 MemEntryImpl* child = OpenChild(offset + io_buf->BytesConsumed(), false); local
412 MemEntryImpl* child = OpenChild(offset + io_buf->BytesConsumed(), true); local
580 MemEntryImpl* child = new MemEntryImpl(backend_); local
    [all...]
  /external/chromium/testing/gtest/test/
gtest_filter_unittest.py 54 # Checks if this platform can pass empty environment variables to child
57 # os.environ. We then use 'eval' to parse the child's output so that an
60 child = gtest_test_utils.Subprocess( variable
62 CAN_PASS_EMPTY_ENV = eval(child.output)
65 # Check if this platform can unset environment variables in child processes.
69 # We use 'eval' to parse the child's output so that an exception
73 child = gtest_test_utils.Subprocess( variable
75 CAN_UNSET_ENV = eval(child.output)
  /external/chromium/third_party/libjingle/source/talk/xmllite/
xmlelement.cc 316 XmlElement* child = FirstNamed(name); local
317 if (!child) {
318 child = new XmlElement(name);
319 AddElement(child);
322 return child;
450 XmlChild * child; local
451 for (child = FirstChild(); child; child = next_child) {
452 next_child = child->NextChild()
    [all...]
  /external/chromium/webkit/glue/
webkit_glue.cc 118 WebFrame* child = web_frame->firstChild(); local
119 for (; child; child = child->nextSibling())
120 result.append(DumpFramesAsText(child, recursive));
176 WebFrame* child = web_frame->firstChild(); local
177 for (; child; child = child->nextSibling())
178 result.append(DumpFrameScrollPosition(child, recursive))
    [all...]
  /external/clang/lib/ARCMigrate/
TransAutoreleasePool.cpp 168 Stmt *child = getEssential(*I); local
169 if (DeclStmt *DclS = dyn_cast<DeclStmt>(child)) {
187 } else if (BinaryOperator *bop = dyn_cast<BinaryOperator>(child)) {
206 if (isPoolDrain(Scopes.back().PoolVar, child)) {
  /external/dbus/tools/
dbus-viewer.c 130 TreeWindow *window; /* Not touched from child thread */
151 NodeInfo *child; local
157 child = tmp->data;
163 g_string_append (path, base_info_get_name ((BaseInfo*)child));
206 base_info_get_name ((BaseInfo*)child));
208 /* Stitch in complete_child rather than child */
209 node_info_replace_node (parent, child, complete_child);
  /external/fsck_msdos/
dosfs.h 124 *child; /* if this is a directory */ member in struct:dosDirEntry
  /external/icu4c/test/intltest/
cpdtrtst.cpp 251 UnicodeString child= ct1->getTransliterator(i).getID(); local
252 if(child != *(array+i)){
253 errln("Error getTransliterator() failed: Expected->" + *(array+i) + " Got->" + child);
255 logln("OK: getTransliterator() passed: Expected->" + *(array+i) + " Got->" + child);
  /external/libvpx/vpx_mem/memory_manager/include/
cavl_impl.h 580 AVL_HANDLE child; variable
623 ** leaf node, or a node with a single leaf as its child, to put
631 child = AVL_GET_LESS(h, 1);
637 child = AVL_GET_GREATER(h, 1);
645 if (child != AVL_NULL)
652 h = child;
656 child = AVL_GET_LESS(h, 1);
661 child = AVL_GET_GREATER(h, 1);
668 while (child != AVL_NULL);
677 /* Get the handle of the opposite child, which may not be null. *
880 AVL_HANDLE child; variable
    [all...]
  /external/libxslt/libxslt/
attributes.c 293 xmlNodePtr child; local
325 child = cur->children;
326 while (child != NULL) {
330 if ((child->type != XML_ELEMENT_NODE) ||
331 (child->ns == NULL) ||
332 (! IS_XSLT_ELEM(child)))
334 if (child->type == XML_ELEMENT_NODE)
335 xsltTransformError(NULL, style, child,
336 "xsl:attribute-set : unexpected child %s\n",
337 child->name)
386 xsltParseAnyXSLTElem(XSLT_CCTXT(style), child); local
    [all...]
  /external/llvm/tools/llvm-nm/
llvm-nm.cpp 330 OwningPtr<Binary> child; local
331 if (error_code ec = i->getAsBinary(child)) {
344 if (object::ObjectFile *o = dyn_cast<ObjectFile>(child.get())) {
  /external/oprofile/daemon/
opd_perfmon.c 89 struct child { struct
98 static struct child * children;
205 static void create_context(struct child * self)
225 static void write_pmu(struct child * self)
281 static void load_context(struct child * self)
297 static void notify_parent(struct child * self, size_t cpu)
305 perror("Failed to write child pipe:");
311 static struct child * inner_child;
319 struct child * self = &children[cpu];
378 static void wait_for_child(struct child * child
    [all...]
  /external/qemu/android/
config.c 449 AConfig* child; local
454 for (child = node->first_child; child; child = child->next)
455 writer_node(w,child,margin+4);
466 AConfig* child; local
472 for (child = root->first_child; child; child = child->next
    [all...]
  /external/qemu/hw/
qdev.c 467 BusState *child; local
501 QLIST_FOREACH(child, &dev->child_bus, sibling) {
502 qbus_print(mon, child, indent);

Completed in 1584 milliseconds

<<11121314151617181920>>