Home
last modified time | relevance | path

Searched refs:must_split (Results 1 – 4 of 4) sorted by relevance

/external/yapf/yapf/yapflib/
Dreformatter.py81 elif _CanPlaceOnSingleLine(uwline) and not any(tok.must_split
378 must_split = previous_node.state.MustSplit()
379 if newline and not previous_node.state.CanSplit(must_split):
382 if not newline and must_split:
388 newline=newline, dry_run=True, must_split=must_split)
Dformat_decision_state.py123 def CanSplit(self, must_split): argument
138 if (not must_split and
146 if (not must_split and
484 def AddTokenToState(self, newline, dry_run, must_split=False): argument
501 penalty = self._AddTokenOnNewline(dry_run, must_split)
542 def _AddTokenOnNewline(self, dry_run, must_split): argument
584 if must_split:
Dformat_token.py244 def must_split(self): member in FormatToken
/external/libvpx/libvpx/vp9/encoder/
Dvp9_encodeframe.c3855 int must_split = 0; in rd_pick_partition() local
3903 must_split = (min_energy < -3) && (max_energy - min_energy > 2); in rd_pick_partition()
4142 if (do_split || must_split) { in rd_pick_partition()
4164 for (i = 0; (i < 4) && ((sum_rdc.rdcost < best_rdc.rdcost) || must_split); in rd_pick_partition()
4214 if (((sum_rdc.rdcost < best_rdc.rdcost) || must_split) && i == 4) { in rd_pick_partition()
4219 (must_split && (sum_rdc.dist < best_rdc.dist))) { in rd_pick_partition()