Searched refs:parent (Results 1 - 25 of 1474) sorted by relevance

1234567891011>>

/macosx-10.10.1/ruby-106/ruby/lib/rexml/
H A Dchild.rb5 # A Child object is something contained by a parent, and this class
10 attr_reader :parent # The Parent of this object
14 # parent::
15 # if supplied, the parent of this child will be set to the
16 # supplied value, and self will be added to the parent
17 def initialize( parent = nil )
18 @parent = nil
19 # Declare @parent, but don't define it. The next line sets the
20 # parent.
21 parent
[all...]
/macosx-10.10.1/apache-793/httpd/server/
H A Dutil_cfgtree.c20 ap_directive_t *ap_add_node(ap_directive_t **parent, ap_directive_t *current, argument
24 /* we just started a new parent */
25 if (*parent != NULL) {
26 (*parent)->first_child = toadd;
27 toadd->parent = *parent;
31 *parent = toadd;
37 toadd->parent = *parent;
40 *parent
[all...]
/macosx-10.10.1/ruby-106/ruby/tool/
H A Drmdirs4 parent=`expr "$dir" : '\(.*\)/[^/][^/]*'`; do
5 case "$parent" in
7 *) dir="$parent";;
/macosx-10.10.1/dtrace-147/libelf/
H A Dnext.c39 Elf *parent; local
44 if ((parent = elf->ed_parent) == 0) {
48 ELFWLOCK(parent)
49 if (elf->ed_siboff >= parent->ed_fsz) {
50 ELFUNLOCK(parent)
55 parent->ed_nextoff = elf->ed_siboff;
56 ELFUNLOCK(parent)
/macosx-10.10.1/top-100.1.2/
H A Dmemstats.h29 struct statistic *top_rsize_create(WINDOW *parent, const char *name);
31 struct statistic *top_vsize_create(WINDOW *parent, const char *name);
32 struct statistic *top_rprvt_create(WINDOW *parent, const char *name);
33 struct statistic *top_vprvt_create(WINDOW *parent, const char *name);
35 struct statistic *top_rshrd_create(WINDOW *parent, const char *name);
37 struct statistic *top_mregion_create(WINDOW *parent, const char *name);
38 struct statistic *top_pageins_create(WINDOW *parent, const char *name);
39 struct statistic *top_kprvt_create(WINDOW *parent, const char *name);
40 struct statistic *top_kshrd_create(WINDOW *parent, const char *name);
42 struct statistic *top_rmem_create(WINDOW *parent, cons
[all...]
H A Dfaults.h27 struct statistic *top_faults_create(WINDOW *parent, const char *name);
29 struct statistic *top_cow_faults_create(WINDOW *parent, const char *name);
H A Dmessages.h27 struct statistic *top_messages_sent_create(WINDOW *parent, const char *name);
28 struct statistic *top_messages_received_create(WINDOW *parent, const char *name);
H A Dpower.h28 struct statistic *top_idlewake_create(WINDOW *parent, const char *name);
29 struct statistic *top_powerscore_create(WINDOW *parent, const char *name);
H A Dsyscalls.h27 struct statistic *top_sysbsd_create(WINDOW *parent, const char *name);
28 struct statistic *top_sysmach_create(WINDOW *parent, const char *name);
H A Dcommand.h27 struct statistic *top_command_create(WINDOW *parent, const char *name);
H A Dcpu.h28 struct statistic *top_cpu_create(WINDOW *parent, const char *name);
29 struct statistic *top_cpu_me_create(WINDOW *parent, const char *name);
30 struct statistic *top_cpu_others_create(WINDOW *parent, const char *name);
31 struct statistic *top_boosts_create(WINDOW *parent, const char *name);
H A Dcsw.h27 struct statistic *top_csw_create(WINDOW *parent, const char *name);
H A Dpgrp.h27 struct statistic *top_pgrp_create(WINDOW *parent, const char *name);
H A Dpid.h27 struct statistic *top_pid_create(WINDOW *parent, const char *name);
H A Dports.h28 struct statistic *top_ports_create(WINDOW *parent, const char *name);
H A Dppid.h27 struct statistic *top_ppid_create(WINDOW *parent, const char *name);
H A Dpstate.h30 struct statistic *top_pstate_create(WINDOW *parent, const char *name);
H A Dthreads.h28 struct statistic *top_threadcount_create(WINDOW *parent, const char *name);
H A Dtimestat.h28 struct statistic *top_time_create(WINDOW *parent, const char *name);
H A Duid.h27 struct statistic *top_uid_create(WINDOW *parent, const char *name);
H A Duser.h27 struct statistic *top_user_create(WINDOW *parent, const char *name);
H A Dworkqueue.h27 struct statistic *top_workqueue_create(WINDOW *parent, const char *name);
/macosx-10.10.1/sudo-73/src/
H A Dredblack.c101 tree->nil.left = tree->nil.right = tree->nil.parent = &tree->nil;
109 tree->root.left = tree->root.right = tree->root.parent = &tree->nil;
130 child->left->parent = node;
131 child->parent = node->parent;
133 if (node == node->parent->left)
134 node->parent->left = child;
136 node->parent->right = child;
138 node->parent = child;
155 child->right->parent
177 struct rbnode *parent = rbroot(tree); local
[all...]
/macosx-10.10.1/bind9-45.101/bind9/contrib/zkt/
H A Ddomaincmp.h41 extern int isparentdomain (const char *child, const char *parent, int level);
42 extern int issubdomain (const char *child, const char *parent);
/macosx-10.10.1/IOHIDFamily-606.1.7/IOHIDSystem/IOHIDDescriptorParser/
H A DHIDProcessCollection.c72 int parent; local
96 * Set up the relationship with the parent Collection
98 parent = ptDescriptor->parent;
99 ptCollection->parent = parent;
100 collections[parent].firstChild = iCollection;
101 collections[parent].children++;
102 ptDescriptor->parent = iCollection;
104 * Save the parent Collectio
[all...]

Completed in 133 milliseconds

1234567891011>>