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

<<21222324252627

  /external/apache-xml/src/main/java/org/apache/xml/serializer/dom3/
DOM3TreeWalker.java 1492 Node child = children.item(i); local
1750 Node child, next; local
    [all...]
  /external/bluetooth/glib/gio/
glocalfile.c 579 GFile *child; local
585 child = _g_local_file_new (filename);
588 return child;
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
CertPathValidatorUtilities.java 483 PKIXPolicyNode child = new PKIXPolicyNode(new ArrayList(), local
490 node.addChild(child);
491 policyNodes[index].add(child);
    [all...]
  /external/chromium/chrome/browser/ui/gtk/
gtk_util.cc 237 GtkWidget* CreateGtkBorderBin(GtkWidget* child, const GdkColor* color,
247 gtk_container_add(GTK_CONTAINER(alignment), child); local
326 gtk_widget_show_all(GTK_BIN(window)->child);
    [all...]
  /external/chromium/chrome/browser/ui/views/bookmarks/
bookmark_bar_view.cc 469 View* child) {
470 if (is_add && child == this) {
796 views::View* child = GetChildViewAt(i); local
797 if (!child->IsVisible())
799 if (child->bounds().Contains(adjusted_loc))
869 // Child views are traversed in the order they are added. Make sure the order
1693 views::View* child = GetChildViewAt(i); local
    [all...]
  /external/clang/lib/AST/
Decl.cpp 620 Decl *child = *i; local
621 if (isa<NamedDecl>(child))
622 cast<NamedDecl>(child)->ClearLinkageCache();
634 // linkage of child declarations, too.
    [all...]
  /external/clang/test/SemaCXX/
warn-thread-safety-analysis.cpp 1109 class Child : public Base {
1116 Child *c;
1265 void Func(Foo* child) LOCKS_EXCLUDED(lock_) {
1270 child->Func(new_foo); // There shouldn't be any warning here as the
1271 // acquired lock is not in child.
1272 child->bar(7); // expected-warning {{calling function 'bar' requires exclusive lock on 'lock_'}}
1273 child->a_ = 5; // expected-warning {{writing variable 'a_' requires locking 'lock_' exclusively}}
1285 Foo *child = new Foo; local
1286 x->Func(child);
1300 void Func(Foo* child) LOCKS_EXCLUDED(lock_)
1326 Foo *child = new Foo; local
    [all...]