Lines Matching +full:interface +full:- +full:node
7 function populate_tree_services(node, cb, bus) argument
27 function populate_tree_objects(node, cb) argument
29 var ctx = node.original;
48 function populate_tree_interfaces(node, cb) argument
50 var ctx = node.original;
61 'type': 'interface',
65 'interface': iface, property in AnonymousClass9ebe46fd0601
105 if (--n == 0)
127 if (--n == 0)
172 return '<span class="method-arg">' +
173 '<span class="method-arg-type">' + format_type(arg.type) +
175 '<span class="method-arg-name">' + arg.name + '</span></span>';
191 '<span class="method-name">' + method.name + "</span>" +
192 '<span class="method-args">(' + in_args.join(', ') + ')</span>' +
194 '<span class="method-args">' + out_args.join(', ') + '</span>' +
201 '<span class="property-name">' + name + '</span>' +
203 '<span class="property-value">' + value + '</span>' +
207 function populate_tree_interface_items(node, cb) argument
209 var ctx = node.original;
211 ctx.object.path + '/' + ctx.interface.name,
225 'interface': ctx.interface, property in AnonymousClass9ebe46fd0801
238 function populate_tree(node, cb) argument
240 if (!node.original) {
241 populate_tree_services(node, cb, g_bus);
245 var type = node.original.type;
247 populate_tree_objects(node, cb);
249 populate_tree_interfaces(node, cb);
250 } else if (type == 'interface') {
251 populate_tree_interface_items(node, cb);
257 var ctx = data.node.original;
262 jQuery("#method-call-ui").remove();
264 var container = data.instance.get_node(data.node, true);
278 var template = jQuery.templates('#method-call-ui-template');
302 jQuery('#method-call-ui-result').text(data);
327 select.append(jQuery('<option>').text('---'));