Home
last modified time | relevance | path

Searched refs:next_sibling (Results 1 – 7 of 7) sorted by relevance

/third_party/python/Lib/lib2to3/fixes/
Dfix_idioms.py145 assert list_call.next_sibling is None
149 assert list_call.next_sibling is end_line
Dfix_set_literal.py42 literal[-1].prefix = items.next_sibling.prefix
/third_party/python/Lib/lib2to3/tests/
Dtest_pytree.py328 self.assertIs(n1.next_sibling, n2)
329 self.assertEqual(n2.next_sibling, None)
330 self.assertEqual(p1.next_sibling, None)
337 self.assertIs(l1.next_sibling, l2)
338 self.assertEqual(l2.next_sibling, None)
339 self.assertEqual(p1.next_sibling, None)
/third_party/cef/tools/yapf/yapf/yapflib/
Dcomment_splicer.py344 if node.parent.next_sibling is not None:
345 return node.parent.next_sibling
Dsubtype_assigner.py369 last = first.next_sibling
/third_party/mesa3d/src/compiler/glsl/
Dgl_nir_link_uniforms.c624 struct type_tree_entry *next_sibling; member
953 state->current_type = state->current_type->next_sibling; in find_and_update_named_uniform_storage()
1100 entry->next_sibling = NULL; in build_type_tree_for_type()
1118 last->next_sibling = field_entry; in build_type_tree_for_type()
1135 next = p->next_sibling; in free_type_tree()
1317 state->current_type = state->current_type->next_sibling; in nir_link_uniform()
/third_party/python/Lib/lib2to3/
Dpytree.py152 def next_sibling(self): member in Base
198 next_sib = self.next_sibling