Searched refs:root (Results 51 - 75 of 1687) sorted by relevance

1234567891011>>

/macosx-10.10/tcl-105/tcl_ext/snack/snack/demos/python/
H A Dnotescale.py6 root = Tkinter.Tk() variable
8 initializeSnack(root)
44 Button(root, text='C4', command=beepC4).pack(side='left')
45 Button(root, text='D4', command=beepD4).pack(side='left')
46 Button(root, text='E4', command=beepE4).pack(side='left')
47 Button(root, text='F4', command=beepF4).pack(side='left')
48 Button(root, text='G4', command=beepG4).pack(side='left')
49 Button(root, text='A4', command=beepA4).pack(side='left')
50 Button(root, text='B4', command=beepB4).pack(side='left')
51 Button(root, tex
[all...]
/macosx-10.10/JavaScriptCore-7600.1.17/heap/
H A DOpaqueRootSet.h42 bool contains(void* root) const
44 if (root != m_lastQueriedRoot) {
45 m_lastQueriedRoot = root;
46 m_containsLastQueriedRoot = m_roots.contains(root);
63 void add(void* root) argument
65 if (root == m_lastQueriedRoot)
67 m_roots.add(root);
/macosx-10.10/ksh-23/ksh/src/lib/libast/hash/
H A Dhashdump.c75 if (n = tab->root->namesize)
130 * dump hash table root info
134 dumproot(register Hash_root_t* root, register int flags) argument
138 sfprintf(sfstderr, " root\n");
139 sfprintf(sfstderr, " address: 0x%08lx\n", (unsigned long)root);
141 dumpflags(root->flags);
142 if (root->namesize) sfprintf(sfstderr, "namesize=%d ", root->namesize);
143 if (root->local->alloc) sfprintf(sfstderr, "alloc=0x%08lx ", (unsigned long)root
166 register Hash_root_t* root; local
[all...]
H A Dhashfree.c36 * root info freed when last reference freed
58 if (tab->root->local->free)
60 if (tab->root->flags & HASH_BUCKET) freebucket = tab->root->local->free;
61 else freevalue = tab->root->local->free;
63 if (region = tab->root->local->region)
64 handle = tab->root->local->handle;
101 if (tab->root)
109 if ((tp = tab->root->references) != tab)
118 else if (!(tab->root
[all...]
/macosx-10.10/ruby-106/ruby/ext/tk/sample/
H A Dtktimer.rb46 root = Tk.root
47 root.bind "Control-c", proc{root.destroy}
48 root.bind "Control-q", proc{root.destroy}
49 Tk.root.focus
/macosx-10.10/OpenSSH-189/openssh/contrib/suse/
H A Dopenssh.spec196 %defattr(-,root,root)
199 %attr(0755,root,root) %dir %{_sysconfdir}/ssh
200 %attr(0644,root,root) %config(noreplace) %{_sysconfdir}/ssh/ssh_config
201 %attr(0600,root,root) %config(noreplace) %{_sysconfdir}/ssh/sshd_config
202 %attr(0600,root,root)
[all...]
/macosx-10.10/Security-57031.1.35/SecurityTests/clxutils/certcrl/testSubjects/parasiticKeys/
H A DparasiteEnableLargeKeys.scr4 # run it like this as root:
17 root = ssRootCert.der
24 root = shroot.pem
33 root = shroot.pem
42 root = shroot.pem
48 test = "test2a, bad pkint8k.pem CA, wrong root"
51 root = root.pem
59 root = shroot.pem
65 test = "test2b, bad pkint16k.pem CA, wrong root"
[all...]
H A DparasiteErrDetect.scr14 root = ssRootCert.der
23 root = shroot.pem
32 root = shroot.pem
41 root = shroot.pem
47 test = "test2a, bad pkint8k.pem CA, wrong root"
50 root = root.pem
58 root = shroot.pem
64 test = "test2b, bad pkint16k.pem CA, wrong root"
67 root
[all...]
/macosx-10.10/bash-94.1.2/bash-3.2/lib/intl/
H A Dos2compat.c51 char *root = getenv ("UNIXROOT"); local
57 if (root)
59 size_t sl = strlen (root);
61 memcpy (_nlos2_libdir, root, sl);
71 if (root)
73 size_t sl = strlen (root);
75 memcpy (_nlos2_localealiaspath, root, sl);
85 if (root)
87 size_t sl = strlen (root);
89 memcpy (_nlos2_localedir, root, s
[all...]
/macosx-10.10/ruby-106/ruby/test/rexml/
H A Dtest_elements.rb8 assert_equal 'b', doc.root.elements[1].name
9 assert_equal '1', doc.root.elements['c'].attributes['id']
10 assert_equal '2', doc.root.elements[2,'c'].attributes['id']
15 doc.root.elements[10] = Element.new('b')
16 assert_equal 'b', doc.root.elements[1].name
17 doc.root.elements[1] = Element.new('c')
18 assert_equal 'c', doc.root.elements[1].name
19 doc.root.elements['c'] = Element.new('d')
20 assert_equal 'd', doc.root.elements[1].name
30 b = doc.root
[all...]
/macosx-10.10/libxml2-26/libxml2/python/tests/
H A Dtst.py12 root = doc.children variable
13 if root.name != "doc":
14 print("root.name failed")
16 child = root.children
H A Dresolver.py20 root = doc.children variable
21 if root.name != "foo":
22 print("root element name error")
29 root = doc.children
30 if root.name != "foo":
31 print("root element name error")
/macosx-10.10/msdosfs-209.1.1/
H A Dcopy_kext.sh22 # Also note that this script assumes it can SSH as root to the target
23 # machine. In a default install, root has no password, and no SSH keys,
24 # so SSH to root fails unless you give root a password or SSH keys. I prefer
25 # to set up root's SSH authorized keys to be my user's keys, so my user
26 # can SSH to root without any prompt. Here's how I do it:
30 # ~ # cd ~root
31 # ~root # mkdir .ssh
32 # ~root # cp ~mark/.ssh/authorized_keys* .ssh
33 # ~root # exi
[all...]
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-core/libxml2-src/python/tests/
H A Dtst.py12 root = doc.children variable
13 if root.name != "doc":
14 print "root.name failed"
16 child = root.children
H A Dresolver.py15 root = doc.children variable
16 if root.name != "foo":
17 print "root element name error"
24 root = doc.children
25 if root.name != "foo":
26 print "root element name error"
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/page/
H A Danalysis_peg_reachable.tcl46 if {[$t keyexists root page::analysis::peg::reachable]} return
49 # root node of the start expression. This is a simple topdown walk
56 # Initialize walking state: 2 arrays, all nodes (except root) are
63 unset unreach(root)
69 page::util::flow [list [$t get root start]] flow n {
95 $t set root page::analysis::peg::reachable [array names reach]
96 $t set root page::analysis::peg::unreachable [array names unreach]
102 # Determine which nonterminal symbols are reachable from the root
109 set unreach [$t get root page::analysis::peg::unreachable]
120 foreach {sym def} [$t get root definition
[all...]
/macosx-10.10/IOHIDFamily-606.1.7/IOHIDSystem/
H A DIOFixed64.cpp98 UInt64 root = 0; local
102 root <<= 1;
106 root++;
108 if (root <= rem) {
109 rem -= root;
110 root++;
112 root--;
116 return(UInt32)(root >> 1);
122 UInt32 root = 0; local
126 root <<
[all...]
/macosx-10.10/Libnotify-133.1.1/notifyd/xcodescripts/
H A Dmk_notify_conf.sh3 install -d -o root -g wheel -m 0755 "$ETCDIR"
4 install -c -o root -g wheel -m 0644 \
/macosx-10.10/Security-57031.1.35/SecurityTests/clxutils/certcrl/testSubjects/miscPolicies/
H A DmiscPolicies.scr14 root = miscPoliciesRoot.cer
20 root = miscPoliciesRoot.cer
/macosx-10.10/WebCore-7600.1.25/bindings/js/
H A DJSAttrCustom.cpp39 visitor.addOpaqueRoot(root(element));
H A DJSAudioTrackListCustom.cpp41 visitor.addOpaqueRoot(root(impl().element()));
H A DJSSVGElementInstanceCustom.cpp36 visitor.addOpaqueRoot(root(impl().correspondingElement()));
H A DJSTextTrackListCustom.cpp41 visitor.addOpaqueRoot(root(impl().element()));
H A DJSVideoTrackListCustom.cpp40 visitor.addOpaqueRoot(root(impl().element()));
/macosx-10.10/bootstrap_cmds-91/xcodescripts/
H A Dinstall-mig.sh5 install -d -o root -g wheel -m 0755 "$BINDIR"
6 install -c -o root -g wheel -m 0755 \

Completed in 145 milliseconds

1234567891011>>