Searched refs:remaining_list (Results 1 - 3 of 3) sorted by last modified time

/external/chromium_org/third_party/markdown/extensions/
H A Dtoc.py65 def build_correct(remaining_list, prev_elements=[{'level': 1000}]):
67 if not remaining_list:
70 current = remaining_list.pop(0)
78 next_elements, children = build_correct(remaining_list, [current])
91 next_elements2, children2 = build_correct(remaining_list, prev_elements)
100 next_elements2, children2 = build_correct(remaining_list, prev_elements)
104 remaining_list.insert(0, current)
105 next_elements2, children2 = build_correct(remaining_list, prev_elements)
/external/bison/lib/
H A Dfd-hook.c34 execute_close_hooks (const struct fd_hook *remaining_list, gl_close_fn primary, argument
37 if (remaining_list == &anchor)
41 return remaining_list->private_close_fn (remaining_list->private_next,
52 execute_ioctl_hooks (const struct fd_hook *remaining_list, gl_ioctl_fn primary, argument
55 if (remaining_list == &anchor)
59 return remaining_list->private_ioctl_fn (remaining_list->private_next,
H A Dfd-hook.h49 int (*private_close_fn) (const struct fd_hook *remaining_list,
55 int (*private_ioctl_fn) (const struct fd_hook *remaining_list,
66 typedef int (*close_hook_fn) (const struct fd_hook *remaining_list,
72 extern int execute_close_hooks (const struct fd_hook *remaining_list,
86 typedef int (*ioctl_hook_fn) (const struct fd_hook *remaining_list,
92 extern int execute_ioctl_hooks (const struct fd_hook *remaining_list,

Completed in 112 milliseconds