/third_party/icu/tools/cldr/cldr-to-icu/src/test/java/org/unicode/icu/tool/cldrtoicu/testing/ |
H A D | FakeResult.java | 32 * @param isGrouped whether values in the result should be grouped into a separate sub-array. 41 * Returns a fallback result. Note that currently fallbacks are never "grouped". 51 private final boolean grouped; field in FakeResult 57 RbPath path, ImmutableList<String> values, boolean grouped, int index, boolean isFallback) { in FakeResult() 59 this.grouped = grouped; in FakeResult() 70 return grouped; in isGrouped() 56 FakeResult( RbPath path, ImmutableList<String> values, boolean grouped, int index, boolean isFallback) FakeResult() argument
|
H A D | ResultSubject.java | 28 public final void isGrouped(boolean grouped) { in isGrouped() argument 29 if (grouped != actual.isGrouped()) { in isGrouped() 30 check("isGrouped()").that(actual.isGrouped()).isEqualTo(grouped); in isGrouped()
|
/third_party/python/Tools/c-analyzer/cpython/ |
H A D | _capi.py | 548 for group, grouped in collated.items(): 556 if grouped: 558 grouped = sorted(grouped, key=sortkey) 559 for item in grouped: 566 subtotal = len(grouped) 589 for group, grouped in collated.items(): 591 yield f'# {group} ({len(grouped)})' 594 if not grouped: 597 grouped [all...] |
/third_party/mesa3d/src/intel/isl/ |
H A D | gen_format_layout.py | 159 grouped = self._splitter.match(line) 160 self.type = self._types[grouped.group('type')].upper() 161 self.size = int(grouped.group('size'))
|
/third_party/protobuf/python/google/protobuf/internal/ |
H A D | message_factory_test.py | 82 msg.grouped.add() 83 msg.grouped[0].part_1 = 'hello' 84 msg.grouped[0].part_2 = 'world' 85 msg.grouped.add(part_1='testing', part_2='123')
|
/third_party/icu/tools/cldr/cldr-to-icu/src/test/java/org/unicode/icu/tool/cldrtoicu/regex/ |
H A D | RegexTransformerTest.java | 496 Result grouped = transformSingleResult( in testResultGrouping() 503 assertThat(grouped).isGrouped(true); in testResultGrouping()
|
/third_party/python/Tools/c-analyzer/c_analyzer/ |
H A D | __main__.py | 351 grouped = group_by_storage(failed, ignore_non_match=False) 352 for group, decls in grouped.items():
|
/kernel/linux/linux-5.10/fs/ubifs/ |
H A D | recovery.c | 574 dbg_rcvry("dropping grouped node at %d:%d", in drop_last_group() 626 int grouped = jhead == -1 ? 0 : c->jheads[jhead].grouped; in ubifs_recover_leb() local 630 dbg_rcvry("%d:%d, jhead %d, grouped %d", lnum, offs, jhead, grouped); in ubifs_recover_leb() 703 if (grouped) in ubifs_recover_leb() 705 * If nodes are grouped, always drop the incomplete group at in ubifs_recover_leb()
|
H A D | super.c | 840 c->jheads[i].grouped = 1; in alloc_wbufs() 850 * Also GC head nodes are not grouped. in alloc_wbufs() 853 c->jheads[GCHD].grouped = 0; in alloc_wbufs()
|
H A D | ubifs.h | 724 * @grouped: non-zero if UBIFS groups nodes when writing to this journal head 732 unsigned int grouped:1; member
|
/kernel/linux/linux-6.6/fs/ubifs/ |
H A D | recovery.c | 574 dbg_rcvry("dropping grouped node at %d:%d", in drop_last_group() 626 int grouped = jhead == -1 ? 0 : c->jheads[jhead].grouped; in ubifs_recover_leb() local 630 dbg_rcvry("%d:%d, jhead %d, grouped %d", lnum, offs, jhead, grouped); in ubifs_recover_leb() 703 if (grouped) in ubifs_recover_leb() 705 * If nodes are grouped, always drop the incomplete group at in ubifs_recover_leb()
|
H A D | super.c | 840 c->jheads[i].grouped = 1; in alloc_wbufs() 850 * Also GC head nodes are not grouped. in alloc_wbufs() 853 c->jheads[GCHD].grouped = 0; in alloc_wbufs()
|
H A D | ubifs.h | 733 * @grouped: non-zero if UBIFS groups nodes when writing to this journal head 741 unsigned int grouped:1; member
|
/third_party/ffmpeg/libavcodec/ |
H A D | wmaprodec.c | 62 * same, the subframes of the channels can be grouped. 152 uint8_t grouped; ///< channel is part of a group member 832 if (!s->channel[channel_idx].grouped in decode_channel_transform() 835 s->channel[channel_idx].grouped = 1; in decode_channel_transform() 843 if (!s->channel[channel_idx].grouped) in decode_channel_transform() 845 s->channel[channel_idx].grouped = 1; in decode_channel_transform() 1216 s->channel[i].grouped = 0; in decode_subframe()
|
/third_party/python/Lib/importlib/metadata/ |
H A D | __init__.py | 477 grouped = itertools.groupby(ordered, by_group) 478 return cls((group, EntryPoints(eps)) for group, eps in grouped)
|
/third_party/python/Lib/ |
H A D | tracemalloc.py | 533 grouped = self._group_by(key_type, cumulative) 534 statistics = list(grouped.values()) 541 statistics as a sorted list of StatisticDiff instances, grouped by
|
/kernel/linux/linux-5.10/drivers/md/ |
H A D | dm-table.c | 763 unsigned *value, char **error, unsigned grouped) in validate_next_arg() 772 (grouped && arg_set->argc < *value)) { in validate_next_arg() 761 validate_next_arg(const struct dm_arg *arg, struct dm_arg_set *arg_set, unsigned *value, char **error, unsigned grouped) validate_next_arg() argument
|
/kernel/linux/linux-6.6/drivers/md/ |
H A D | dm-table.c | 753 unsigned int *value, char **error, unsigned int grouped) in validate_next_arg() 762 (grouped && arg_set->argc < *value)) { in validate_next_arg() 752 validate_next_arg(const struct dm_arg *arg, struct dm_arg_set *arg_set, unsigned int *value, char **error, unsigned int grouped) validate_next_arg() argument
|