Lines Matching refs:path
25 GtkTreePath *path);
251 * ast_get_iter: converts a tree path (physical position) into a
262 GtkTreePath *path)
269 indices = gtk_tree_path_get_indices(path);
270 depth = gtk_tree_path_get_depth(path);
281 * ast_get_path: converts a tree iter into a tree path (ie. the
290 GtkTreePath *path;
294 path = gtk_tree_path_new();
296 gtk_tree_path_prepend_index(path, node->index);
299 return path;