Home
last modified time | relevance | path

Searched refs:colon_idx (Results 1 – 2 of 2) sorted by relevance

/external/yapf/yapf/yapflib/
Dsplit_penalty.py94 colon_idx = 1
95 while pytree_utils.NodeName(node.children[colon_idx]) == 'simple_stmt':
96 colon_idx += 1
97 _SetUnbreakable(node.children[colon_idx])
99 while colon_idx < len(node.children):
100 if isinstance(node.children[colon_idx], pytree.Leaf):
101 if node.children[colon_idx].value == ':':
103 if node.children[colon_idx].value == '->':
104 arrow_idx = colon_idx
105 colon_idx += 1
[all …]
/external/tensorflow/tensorflow/contrib/bigtable/kernels/test_kernels/
Dbigtable_test_client.cc142 auto colon_idx = col_itr->first.find(":"); in Read() local
143 CHECK(colon_idx != string::npos) in Read()
146 string(col_itr->first, 0, colon_idx)); in Read()
148 string(col_itr->first, ++colon_idx)); in Read()