Searched refs:parent (Results 176 - 200 of 1474) sorted by relevance

1234567891011>>

/macosx-10.10.1/tcl-105/tcl_ext/tklib/tklib/modules/menubar/
H A Dtree.tcl55 method DumpSubtree { parent {indent 0} } {
56 set pnode [my Name2Node ${parent}]
57 puts "[format "%-12s" ${pnode}]- [string repeat { } ${indent}]${parent}"
115 # return the list of all nodes below parent node
117 method GetSubtree { parent {filter ""} } {
119 set pnode [my Name2Node ${parent}]
147 # replace the child entry for 'name' in its parent
151 set pnode [${cnode} parent]
201 ${pnode} parent ""
218 # pnode - parent nod
[all...]
/macosx-10.10.1/WebInspectorUI-7600.1.17/UserInterface/Views/
H A DSourceCodeTreeElement.js81 for (var currentFolder = bottomFolder; currentFolder !== topFolder; currentFolder = currentFolder.parent)
88 var folderIndex = topFolder.parent.children.indexOf(topFolder);
89 topFolder.parent.insertChild(newFolder, folderIndex);
90 topFolder.parent.removeChild(topFolder);
101 if (previousSingleTreeElement && previousSingleTreeElement !== treeElement.parent)
102 combineFolderChain(previousSingleTreeElement, treeElement.parent);
181 var parentTreeElement = childTreeElement.parent;
/macosx-10.10.1/llvmCore-3425.0.34/utils/lit/lit/
H A DTestingConfig.py10 def frompath(path, parent, litConfig, mustExist, config = None):
31 config = TestingConfig(parent,
71 def __init__(self, parent, name, suffixes, test_format,
75 self.parent = parent
121 if self.parent is None:
124 return self.parent.root
/macosx-10.10.1/tcl-105/tcl_ext/tclsoap/tclsoap/
H A Dxpath.tcl213 set parent [dom::node parent $node]
214 while { [dom::node cget $parent -nodeType] == "element" } {
215 set result [concat [xmlnsGet $parent] $result]
216 set parent [dom::node parent $parent]
/macosx-10.10.1/tcl-105/tcl_ext/tclxml/tclxml/library/
H A Dtclparser-8.0.tcl99 set sgml_ns [namespace parent]::sgml
187 set parent [namespace parent]
188 if {![string compare :: $parent]} {
189 set parent {}
193 [${parent}::sgml::tokenise $xml \
199 eval ${parent}::sgml::parseEvent \
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/libraries/libldap/
H A Drb.c125 struct rb_node *parent = rbt->rbt_root; local
127 while (!RB_SENTINEL_P(parent)) {
128 const signed int diff = (*compare_key)(parent, key);
130 return parent;
131 parent = parent->rb_nodes[diff > 0];
141 struct rb_node *parent = rbt->rbt_root; local
144 while (!RB_SENTINEL_P(parent)) {
145 const signed int diff = (*compare_key)(parent, key);
147 return parent;
160 struct rb_node *parent = rbt->rbt_root; local
179 struct rb_node *parent, *tmp; local
791 rb_tree_removal_rebalance(struct rb_tree *rbt, struct rb_node *parent, unsigned int which) argument
[all...]
/macosx-10.10.1/cups-408/cups/scheduler/
H A Dtype.c205 if (current == NULL || current->parent == NULL)
208 current = current->parent;
210 if (current->parent == NULL)
213 logic = current->parent->op;
232 temp->parent = current->parent;
237 current->parent = temp;
241 else if (current->parent)
244 current->parent));
245 current->parent
[all...]
/macosx-10.10.1/ruby-106/ruby/ext/tk/lib/tk/
H A Dmenuspec.rb61 def _create_menu(parent, menu_info, menu_name = nil,
84 #menu = Tk::Menu.new(parent, :widgetname=>menu_name, :tearoff=>tearoff)
86 menu = TkMenu.new(parent, :widgetname=>menu_name, :tearoff=>tearoff)
88 #menu = Tk::Menu.new(parent, :tearoff=>tearoff)
90 menu = TkMenu.new(parent, :tearoff=>tearoff)
211 def _use_menubar?(parent)
213 if parent.kind_of?(Tk::Root) || parent.kind_of?(Tk::Toplevel)
215 elsif parent.current_configinfo.has_key?('menu')
223 def _create_menu_for_menubar(parent)
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/tclvfs/tclvfs/library/
H A Dmk4vfs.tcl320 {name:S parent:I {files {name:S size:I date:I contents:M}}}
323 mk::row append $db.dirs name <root> parent -1
374 set parent 0
379 if {[info exists v::cache($db,$parent,$ele)]} {
380 set parent $v::cache($db,$parent,$ele)
382 set row [mk::select $view -count 1 parent $parent name $ele]
386 set v::cache($db,$parent,$ele) $row
387 set parent
[all...]
/macosx-10.10.1/Libc-1044.1.2/gen/NetBSD/
H A Drb.c118 * rb_info contains the two flags and the parent back pointer.
212 struct rb_node *parent = rbt->rbt_root; local
214 while (!RB_SENTINEL_P(parent)) {
215 void *pobj = RB_NODETOITEM(rbto, parent);
220 parent = parent->rb_nodes[diff < 0];
231 struct rb_node *parent = rbt->rbt_root, *last = NULL; local
233 while (!RB_SENTINEL_P(parent)) {
234 void *pobj = RB_NODETOITEM(rbto, parent);
240 last = parent;
252 struct rb_node *parent = rbt->rbt_root, *last = NULL; local
273 struct rb_node *parent, *tmp, *self = RB_ITEMTONODE(rbto, object); local
899 rb_tree_removal_rebalance(struct rb_tree *rbt, struct rb_node *parent, unsigned int which) argument
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/tclxml/tcldom/examples/
H A Ddomtext.tcl599 # Remove parent's content and then render new content
600 set parent [dom::node parent $node]
601 set tags [$path.text tag ranges $parent]
611 set end [_refresh $path $parent]
614 set parent [::dom::node parent $parent]
615 while {[string length $parent]} {
616 set ranges [$path.text tag ranges $parent]
[all...]
/macosx-10.10.1/apache-793/httpd/server/
H A Dutil_filter.c73 /* Link a trie node to its parent
75 static void trie_node_link(apr_pool_t *p, filter_trie_node *parent, argument
80 if (parent->nchildren == parent->size) {
82 parent->size *= 2;
83 new = (filter_trie_child_ptr *)apr_palloc(p, parent->size *
85 memcpy(new, parent->children, parent->nchildren *
87 parent->children = new;
90 for (i = 0; i < parent
112 trie_node_alloc(apr_pool_t *p, filter_trie_node *parent, char c) argument
[all...]
/macosx-10.10.1/xnu-2782.1.97/bsd/net/
H A Dpf_ruleset.c253 struct pf_anchor *anchor = 0, *dup, *parent = NULL; local
265 while (parent == NULL && (q = strrchr(p, '/')) != NULL) {
268 parent = ruleset->anchor;
285 (parent != NULL && strlen(parent->path) >=
298 if (parent != NULL) {
299 strlcpy(anchor->path, parent->path,
313 if (parent != NULL) {
314 anchor->parent = parent;
343 struct pf_anchor *parent; local
[all...]
/macosx-10.10.1/IOPCIFamily-239.1.2/
H A DIOPCIDevice.cpp221 if (parent) parent->removeDevice(this);
474 parent->updateWakeReason(this);
500 ret = parent->setDevicePowerState(this, kIOPCIConfigShadowVolatile,
509 ret = parent->setDevicePowerState(this, 0,
517 ret = parent->setDevicePowerState(this, 0,
526 return (parent->matchNubWithPropertyTable(this, table, score));
531 return (parent->compareNubName(this, name, matched));
536 return (parent->getNubResources(this));
544 return (parent
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/bwidget/bwidget/
H A Ddialog.tcl40 {-parent String "" 0}
94 set parent [Widget::cget $path -parent]
95 if { ![winfo exists $parent] } {
96 set parent [winfo parent $path]
100 wm transient $path [winfo toplevel $parent]
255 set parent [Widget::getoption $path -parent]
287 if { [winfo exists $parent] } {
[all...]
/macosx-10.10.1/ruby-106/ruby/ext/tk/lib/tkextlib/tcllib/
H A Dplotchart.rb337 def initialize(*args) # args := ([parent,] xaxis, yaxis [, keys])
346 parent = args.shift
351 if parent.kind_of?(Tk::Canvas)
352 @path = parent.path
354 super(parent, *args) # create canvas widget
535 def initialize(*args) # args := ([parent,] radius_data [, keys])
542 parent = args.shift
546 if parent.kind_of?(Tk::Canvas)
547 @path = parent.path
549 super(parent, *arg
[all...]
/macosx-10.10.1/BerkeleyDB-21/db/txn/
H A Dtxn.c87 __txn_begin_pp(dbenv, parent, txnpp, flags)
89 DB_TXN *parent, **txnpp;
112 if (parent != NULL && !F_ISSET(parent, TXN_SNAPSHOT) &&
115 "Child transaction snapshot setting must match parent");
121 if (parent == NULL) {
127 ret = __txn_begin(env, ip, parent, txnpp, flags);
156 __txn_begin(env, ip, parent, txnpp, flags)
159 DB_TXN *parent, **txnpp;
174 txn->parent
[all...]
/macosx-10.10.1/bind9-45.101/bind9/lib/dns/
H A Drbt.c48 * XXXDCL Since parent pointers were added in again, I could remove all of the
79 #define PARENT(node) ((node)->parent)
133 * being wholly handled by parent pointers (which didn't exist, because
372 dns_rbtnode_t **root, *parent, *child, *current, *new_current; local
416 parent = NULL;
442 parent = current;
446 parent = current;
484 parent = NULL;
552 if (parent != NULL) {
553 if (LEFT(parent)
1280 dns_rbtnode_t *parent; local
1666 dns_rbtnode_t *child, *root, *parent, *grandparent; local
1771 dns_rbtnode_t *child, *sibling, *parent; local
2063 dns_rbtnode_t *parent; local
2141 dns_rbt_printtree(dns_rbtnode_t *root, dns_rbtnode_t *parent, int depth) argument
[all...]
/macosx-10.10.1/cxxfilt-11/cxxfilt/libiberty/
H A Dfibheap.c216 y = node->parent;
296 x->parent = NULL;
397 fibnode_t node, fibnode_t parent)
399 if (parent->child == NULL)
400 parent->child = node;
402 fibnode_insert_before (parent->child, node);
403 node->parent = parent;
404 parent->degree++;
410 fibheap_cut (fibheap_t heap, fibnode_t node, fibnode_t parent)
395 fibheap_link(fibheap_t heap ATTRIBUTE_UNUSED, fibnode_t node, fibnode_t parent) argument
409 fibheap_cut(fibheap_t heap, fibnode_t node, fibnode_t parent) argument
[all...]
/macosx-10.10.1/ruby-106/ruby/ext/tk/lib/tkextlib/bwidget/
H A Dtree.rb206 def insert(idx, parent, node, keys={})
207 tk_send('insert', idx, tagid(parent), tagid(node), *hash_kv(keys))
215 def move(parent, node, idx)
216 tk_send('move', tagid(parent), tagid(node), idx)
239 def parent(node) method in class:Tk
240 Tk::BWidget::Tree::Node.id2obj(self, tk_send('parent', tagid(node)))
336 parent = args.shift
337 if parent.kind_of?(Tk::BWidget::Tree::Node)
338 if parent.tree.path != @tree.path
339 fail RuntimeError, 'tree of parent nod
465 def parent method in class:Tk
[all...]
/macosx-10.10.1/WebKit-7600.1.25/win/WebCoreSupport/
H A DEmbeddedWidget.cpp93 if (!parent())
96 ASSERT(parent()->isFrameView());
97 FrameView* frameView = toFrameView(parent());
174 void EmbeddedWidget::setParent(ScrollView* parent) argument
176 Widget::setParent(parent);
181 if (parent)
/macosx-10.10.1/ruby-106/ruby/lib/rexml/
H A Ddoctype.rb1 require "rexml/parent"
41 def initialize( first, parent=nil )
47 @external_id = parent
49 super( parent )
53 super( parent )
59 super( parent )
129 @parent.context
201 # parent class for the specific declarations.
/macosx-10.10.1/libxml2-26/libxml2/
H A Dtree.c130 ulccur->parent = (n); \
133 ulccur->parent = (n); \
996 cur->parent = doc;
1404 temp->parent = (xmlNodePtr)ent;
1596 temp->parent = (xmlNodePtr)ent;
1669 if ((list->parent != NULL) && (list->parent->type == XML_ATTRIBUTE_NODE))
1851 cur->parent = node;
1879 tmp->parent = (xmlNodePtr) cur;
2032 tmp->parent
2468 xmlNewTextChild(xmlNodePtr parent, xmlNsPtr ns, const xmlChar *name, const xmlChar *content) argument
2848 xmlNewChild(xmlNodePtr parent, xmlNsPtr ns, const xmlChar *name, const xmlChar *content) argument
3130 xmlNodePtr parent; local
3205 xmlAddChildList(xmlNodePtr parent, xmlNodePtr cur) argument
3291 xmlAddChild(xmlNodePtr parent, xmlNodePtr cur) argument
3415 xmlGetLastChild(xmlNodePtr parent) argument
3444 xmlChildElementCount(xmlNodePtr parent) argument
3480 xmlFirstElementChild(xmlNodePtr parent) argument
3515 xmlLastElementChild(xmlNodePtr parent) argument
3815 xmlNodePtr parent; local
4131 xmlStaticCopyNode(const xmlNodePtr node, xmlDocPtr doc, xmlNodePtr parent, int extended) argument
4284 xmlStaticCopyNodeList(xmlNodePtr node, xmlDocPtr doc, xmlNodePtr parent) argument
[all...]
/macosx-10.10.1/Security-57031.1.35/SecurityTests/regressions/test/
H A Dtestleaks.c47 pid_t parent;
54 ok_unix(parent = getpid(), "getpid");
67 ok_unix(close(cld_stdout[0]), "close parent end of pipe");
79 sprintf(pidstr, "%d", parent);
/macosx-10.10.1/dcerpc-61/dcerpc/idl_compiler/
H A Dnamdump.c170 if (node->parent != NULL) {
172 node->parent, /* The address of the parent */
173 node->parent->id); /* The id string of parent */

Completed in 590 milliseconds

1234567891011>>