Searched refs:child (Results 126 - 150 of 707) sorted by relevance

1234567891011>>

/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_codesigning/antlr2/src/
H A DASTFactory.cpp160 /** Add a child to the current AST */
161 void ASTFactory::addASTChild(ASTPair& currentAST, RefAST child) argument
163 if (child)
167 // Make new child the current root
168 currentAST.root = child;
172 if (!currentAST.child)
174 // Add new child to current root
175 currentAST.root->setFirstChild(child);
179 currentAST.child->setNextSibling(child);
385 RefAST child = LoadAST(infile); variable
[all...]
/macosx-10.10.1/WebInspectorUI-7600.1.17/UserInterface/Views/
H A DLegacyTopDownProfileDataGridTree.js60 var child = this.childrenByCallUID[aCallUID];
62 if (child)
63 this._merge(child, true);
H A DTimelineOverview.css65 .timeline-overview > .graphs-container > .timeline-overview-graph:nth-child(even) {
70 .timeline-overview > .graphs-container > .timeline-overview-graph:not(:first-child) {
H A DDataGrid.js539 for (var child of this.children)
540 child.refresh();
707 appendChild: function(child)
709 this.insertChild(child, this.children.length);
712 insertChild: function(child, index)
714 if (!child)
716 if (child.parent === this)
717 throw("insertChild: Node is already a child of this node.");
719 if (child.parent)
720 child
[all...]
/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/API/gtk/
H A DWebKitWebViewBaseAccessible.cpp81 AtkObject* child = atk_object_ref_accessible_child(atkParent, i); local
82 bool childIsObject = child == atkObject;
83 g_object_unref(child);
/macosx-10.10.1/ruby-106/ruby/test/misc/
H A Dtest_ruby_mode.rb9 raise if IO.popen([e, "--version", :err=>[:child, :out]]) {|f| f.read}[/[0-9]+/].to_i < 23
10 IO.popen([*emacs, :err=>[:child, :out]]) {|f| f.read}
34 output = IO.popen([*EMACS, tmp.path, *exprs, err:[:child, :out]], "r") {|e| e.read}
/macosx-10.10.1/CPANInternal-159.1/HTTP-Proxy-0.25/lib/HTTP/Proxy/Engine/
H A DThreaded.pm37 my $child=threads->new(\&worker,$proxy,$conn);
38 if ( !defined $child ) {
43 $child->detach();
97 Reap remaining child processes.
/macosx-10.10.1/CPANInternal-159.1/HTTP-Proxy-0.300/lib/HTTP/Proxy/Engine/
H A DThreaded.pm37 my $child=threads->new(\&_worker,$proxy,$conn);
38 if ( !defined $child ) {
43 $child->detach();
97 Reap remaining child processes.
/macosx-10.10.1/apache-793/httpd/modules/dav/main/
H A Dutil_lock.c168 apr_xml_elem *child; local
193 for (child = doc->root->first_child; child; child = child->next) {
194 if (strcmp(child->name, "locktype") == 0
195 && child->first_child
197 if (strcmp(child->first_child->name, "write") == 0) {
202 if (strcmp(child->name, "lockscope") == 0
203 && child
[all...]
/macosx-10.10.1/libarchive-30/libarchive/libarchive/
H A Dfilter_fork.c59 pid_t child; local
80 switch ((child = vfork())) {
82 switch ((child = fork())) {
109 return child;
/macosx-10.10.1/ruby-106/ruby/ext/tk/sample/demos-en/
H A Dlabelframe.rb70 TkWinfo.children(w).each{|child|
71 next if child.path =~ /\.cb$/
73 child.state(:normal)
75 child.state(:disabled)
/macosx-10.10.1/ruby-106/ruby/ext/tk/sample/demos-jp/
H A Dlabelframe.rb77 TkWinfo.children(w).each{|child|
78 next if child.path =~ /\.cb$/
80 child.state(:normal)
82 child.state(:disabled)
/macosx-10.10.1/ruby-106/ruby/lib/rexml/formatters/
H A Ddefault.rb60 node.children.each { |child| write( child, output ) }
78 node.children.each { |child|
79 write( child, output )
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/modules/struct/tree/
H A Dds.h40 TNPtr* child; /* Array of children. Can member in struct:TN
58 int index; /* Index of node in 'child' array of its
62 int height; /* Distance to deepest child.
/macosx-10.10.1/tcl-105/tcl_ext/tclxml/tcldom/library/
H A Dxmlswitch.tcl375 child {
392 child {
481 child {
492 foreach child [dom::node children [dom::node parent $node]] {
493 if {![string compare [dom::node cget $child -nodeType] $typemap($name)]} {
494 lappend nodeset $child
503 foreach child [dom::node children [dom::node parent $node]] {
504 if {![string compare [lindex $step 1] [dom::node cget $child -nodeName]]} {
505 lappend nodeset $child
/macosx-10.10.1/tcl-105/tk84/tk/library/demos/
H A Dlabelframe.tcl55 foreach child [winfo children $w] {
56 if {$child == "$w.cb"} continue
58 $child configure -state normal
60 $child configure -state disabled
/macosx-10.10.1/xnu-2782.1.97/bsd/sys/
H A Ddtrace_ptss.h99 void dtrace_ptss_fork(struct proc* parent, struct proc* child);
/macosx-10.10.1/xnu-2782.1.97/bsd/kern/
H A Dkern_exit.c158 static int reap_child_locked(proc_t parent, proc_t child, int deadparent, int reparentedtoinit, int locked, int droplock);
243 * status and rusage for wait(). Check for child processes and orphan them.
721 panic("parent child linkage broken");
746 * Take a reference on the child process to
816 * Save exit status and final rusage info, adding in child rusage
906 * Add child resource usage to parent before giving
1012 * proc_t child Process to reap
1019 reap_child_locked(proc_t parent, proc_t child, int deadparent, int reparentedtoinit, int locked, int droplock) argument
1027 * If we got the child via a ptrace 'attach',
1036 if (child
1685 proc_reparentlocked(proc_t child, proc_t parent, int cansignal, int locked) argument
[all...]
/macosx-10.10.1/CPANInternal-159.1/Graph-0.94/lib/Heap071/
H A DFibonacci.pm70 hdump $ch1 = $el->{child},
116 $ch = $cur->{child} and bhcheck $ch, $cur;
195 if( $cur = $el->{child} ) {
226 $el->{left} = $el->{right} = $el->{p} = $el->{child} = $el->{val} =
317 child => undef,
334 $ch = $el->{child} and elem_DESTROY $ch;
338 $el->{child} = $el->{right} = $el->{left} = $el->{p} = $el->{val}
358 if( $pc = $p->{child} ) {
364 $p->{child} = $c;
422 $p->{child}
[all...]
/macosx-10.10.1/CPANInternal-159.1/Graph-0.96/lib/Heap071/
H A DFibonacci.pm70 hdump $ch1 = $el->{child},
116 $ch = $cur->{child} and bhcheck $ch, $cur;
195 if( $cur = $el->{child} ) {
226 $el->{left} = $el->{right} = $el->{p} = $el->{child} = $el->{val} =
317 child => undef,
334 $ch = $el->{child} and elem_DESTROY $ch;
338 $el->{child} = $el->{right} = $el->{left} = $el->{p} = $el->{val}
358 if( $pc = $p->{child} ) {
364 $p->{child} = $c;
422 $p->{child}
[all...]
/macosx-10.10.1/CPANInternal-159.1/Heap-0.80/lib/Heap/
H A DFibonacci.pm58 hdump $ch1 = $el->{child},
104 $ch = $cur->{child} and bhcheck $ch, $cur;
183 if( $cur = $el->{child} ) {
214 $el->{left} = $el->{right} = $el->{p} = $el->{child} = $el->{val} =
305 child => undef,
322 $ch = $el->{child} and elem_DESTROY $ch;
326 $el->{child} = $el->{right} = $el->{left} = $el->{p} = $el->{val}
346 if( $pc = $p->{child} ) {
352 $p->{child} = $c;
410 $p->{child}
[all...]
/macosx-10.10.1/IOStorageFamily-182.1.1/
H A DIOAppleLabelScheme.cpp513 IORegistryEntry * child; local
515 if ( (child = getParentEntry(gIOServicePlane)) )
519 if ( (parent = child->getParentEntry(gIODTPlane)) )
521 const char * location = child->getLocation(gIODTPlane);
522 const char * name = child->getName(gIODTPlane);
529 child->detachFromParent(parent, gIODTPlane);
545 IORegistryEntry * child; local
547 if ( (child = getParentEntry(gIOServicePlane)) )
556 if ( child->attachToParent(parent, gIODTPlane) )
558 child
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/tklib/tklib/modules/menubar/
H A Dtree.tcl59 foreach child [${pnode} children] {
60 my DumpSubtree [my Node2Name ${child}] ${indent}
122 foreach child ${children} {
123 if { ${filter} eq "" || [eval [list ${filter} [self object] ${child}]] == 0 } {
124 lappend subtree ${child}
125 lappend subtree {*}[my GetSubtree ${child} ${filter}]
147 # replace the child entry for 'name' in its parent
181 foreach child [my children ${name}] {
182 lappend children {*}[my SerializeNode ${stream} ${child}]
221 # children - recursive list of child nod
[all...]
/macosx-10.10.1/JavaScriptCore-7600.1.17/dfg/
H A DDFGAbstractInterpreterInlines.h247 JSValue child = forNode(node->child1()).value(); local
249 if (child && child.isInt32()) {
250 uint32_t value = child.asInt32();
257 if (child && child.isInt32()) {
258 int32_t value = child.asInt32();
290 JSValue child = forNode(node->child1()).value(); local
291 if (child && child
305 JSValue child = forNode(node->child1()).value(); local
329 JSValue child = forNode(node->child1()).value(); local
340 JSValue child = forNode(node->child1()).value(); local
474 JSValue child = forNode(node->child1()).value(); local
718 JSValue child = forNode(node->child1()).value(); local
746 JSValue child = forNode(node->child1()).value(); local
756 JSValue child = forNode(node->child1()).value(); local
766 JSValue child = forNode(node->child1()).value(); local
776 JSValue child = forNode(node->child1()).value(); local
823 JSValue child = forNode(node->child1()).value(); local
863 JSValue child = forNode(node->child1()).value(); local
1179 Node* child = node->child1().node(); local
1447 JSValue child = forNode(node->child1()).value(); local
[all...]
/macosx-10.10.1/BerkeleyDB-21/db/db_printlog/
H A Dstatus.awk21 / child:/ {

Completed in 307 milliseconds

1234567891011>>