/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
H A D | MessagePattern.java | 43 * as a list of "parts" for fast and simple parsing and to minimize object allocations. 48 * List of "parts": 65 * <li>Literal output text is not represented directly by "parts" but accessed 66 * between parts of a message, from one part's getLimit() to the next part's getIndex(). 256 parts.clear(); in clear() 290 parts.equals(o.parts); in equals() 291 // No need to compare numericValues if msg and parts are the same. in equals() 300 return (aposMode.hashCode()*37+(msg!=null ? msg.hashCode() : 0))*37+parts.hashCode(); in hashCode() 422 * Returns the number of "parts" create 1607 private ArrayList<Part> parts=new ArrayList<Part>(); global() field in MessagePattern [all...] |
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/ |
H A D | MessagePattern.java | 44 * as a list of "parts" for fast and simple parsing and to minimize object allocations. 49 * List of "parts": 66 * <li>Literal output text is not represented directly by "parts" but accessed 67 * between parts of a message, from one part's getLimit() to the next part's getIndex(). 245 parts.clear(); in clear() 277 parts.equals(o.parts); in equals() 278 // No need to compare numericValues if msg and parts are the same. in equals() 286 return (aposMode.hashCode()*37+(msg!=null ? msg.hashCode() : 0))*37+parts.hashCode(); in hashCode() 399 * Returns the number of "parts" create 1536 private ArrayList<Part> parts=new ArrayList<Part>(); global() field in MessagePattern [all...] |
/third_party/typescript/tests/baselines/reference/ |
H A D | globalThisCapture.js | 5 var parts = []; variable 8 parts[0]; 15 var parts = [];
variable 17 parts[0];
|
/third_party/mesa3d/bin/ |
H A D | refcnt-log-helper.py | 54 parts = line.split(' ') 56 cur_object = parts[1] 57 if parts[3].strip() == 'Destroy': 61 if parts[3].strip() == 'Create': 62 if (not args.filter) or (args.filter in parts[0]):
|
/third_party/skia/infra/bots/buildstats/ |
H A D | buildstats_cpp.py | 63 parts = section_row.split(',') 64 if len(parts) < 3 or parts[0] == 'sections': 67 section = parts[0] 72 vmsize = parts[1] # In bytes 73 filesize = parts[2] # In bytes
|
/third_party/node/deps/minimatch/ |
H A D | index.js | 117 var parts = []; 131 parts.push.apply(parts, p); 132 return parts; 466 push(...parts) { 467 for (const p of parts) { 584 // to know whether it's going to be used joined or in parts. 785 const parts = []; 822 parts.push(part); 832 ast.push(...parts, par [all...] |
/third_party/skia/third_party/externals/abseil-cpp/absl/time/ |
H A D | format.cc | 65 absl::Time Join(const cctz_parts& parts) { in Join() argument 66 const int64_t rep_hi = (parts.sec - unix_epoch()).count(); in Join() 67 const uint32_t rep_lo = parts.fem.count() / (1000 * 1000 / 4); in Join() 78 const auto parts = Split(t); in FormatTime() local 79 return cctz::detail::format(std::string(format), parts.sec, parts.fem, in FormatTime() 131 cctz_parts parts; in ParseTime() local 134 cctz::time_zone(tz), &parts.sec, &parts.fem, &error); in ParseTime() 136 *time = Join(parts); in ParseTime() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/ |
H A D | APInt.cpp | 628 // We can check that all parts of an integer are equal by making use of a 2300 zeroes out higher parts. */ 2302 APInt::tcSet(integerPart *dst, integerPart part, unsigned int parts) 2306 assert(parts > 0); 2309 for (i = 1; i < parts; i++) 2315 APInt::tcAssign(integerPart *dst, const integerPart *src, unsigned int parts) 2319 for (i = 0; i < parts; i++) 2325 APInt::tcIsZero(const integerPart *src, unsigned int parts) 2329 for (i = 0; i < parts; i++) 2338 APInt::tcExtractBit(const integerPart *parts, unsigne [all...] |
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/spec_tools/ |
H A D | attributes.py | 20 parts = [] 26 parts.append('member of') 28 parts.append('each element of') 29 parts.append('the') 30 parts.append(name) 31 parts.append('parameter') 32 return ' '.join(parts)
|
/kernel/linux/linux-6.6/drivers/mtd/parsers/ |
H A D | ofpart_bcm4908.c | 50 int bcm4908_partitions_post_parse(struct mtd_info *mtd, struct mtd_partition *parts, int nr_parts) in bcm4908_partitions_post_parse() argument 58 if (of_device_is_compatible(parts[i].of_node, "brcm,bcm4908-firmware")) { in bcm4908_partitions_post_parse() 59 if (fw_offset < 0 || parts[i].offset == fw_offset) in bcm4908_partitions_post_parse() 60 parts[i].name = "firmware"; in bcm4908_partitions_post_parse() 62 parts[i].name = "backup"; in bcm4908_partitions_post_parse()
|
H A D | ofpart_linksys_ns.c | 33 struct mtd_partition *parts, in linksys_ns_partitions_post_parse() 41 if (of_device_is_compatible(parts[i].of_node, "linksys,ns-firmware")) { in linksys_ns_partitions_post_parse() 43 parts[i].name = "firmware"; in linksys_ns_partitions_post_parse() 45 parts[i].name = "backup"; in linksys_ns_partitions_post_parse() 32 linksys_ns_partitions_post_parse(struct mtd_info *mtd, struct mtd_partition *parts, int nr_parts) linksys_ns_partitions_post_parse() argument
|
/kernel/linux/linux-6.6/scripts/gdb/linux/ |
H A D | stackdepot.py | 26 parts = handle.cast(handle_parts_t) 27 offset = parts['offset'] << DEPOT_STACK_ALIGN 30 if parts['pool_index'] > pool_index_cached: 31 gdb.write("pool index %d out of bounds (%d) for stack id 0x%08x\n" % (parts['pool_index'], pool_index_cached, handle)) 37 pool = stack_pools[parts['pool_index']]
|
/third_party/mesa3d/src/panfrost/bifrost/valhall/ |
H A D | asm.py | 126 parts = op.split(".") 127 reg = parts[0] 132 if len(parts) > 1: 134 die_if(len(parts) > 2, "Too many modifiers") 135 mask = parts[1]; 179 parts = op[1:].split(':') 182 parts = [] 184 die_if(any([x[0] != 'r' for x in parts]), f'Expected registers, got {op}') 185 regs = [parse_int(x[1:], 0, 63) for x in parts] 222 parts [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/bloat/ |
H A D | bloat.py | 199 parts = [] 203 parts.append(part) 204 return parts 218 parts = parse_cpp_name(sym, cppfilt) 219 if len(parts) == 1: 222 parts = path + parts 232 if parts[0].startswith(prefix): 233 parts[0] = parts[ [all...] |
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/packaging/ |
H A D | version.py | 238 parts = [] 242 parts.append(f"{self.epoch}!") 245 parts.append(".".join(str(x) for x in self.release)) 249 parts.append("".join(str(x) for x in self.pre)) 253 parts.append(f".post{self.post}") 257 parts.append(f".dev{self.dev}") 261 parts.append(f"+{self.local}") 263 return "".join(parts) 370 parts = [] 374 parts [all...] |
/kernel/linux/linux-5.10/include/linux/ |
H A D | cmdline-parser.h | 34 void cmdline_parts_free(struct cmdline_parts **parts); 36 int cmdline_parts_parse(struct cmdline_parts **parts, const char *cmdline); 38 struct cmdline_parts *cmdline_parts_find(struct cmdline_parts *parts, 41 int cmdline_parts_set(struct cmdline_parts *parts, sector_t disk_size,
|
/third_party/node/deps/npm/node_modules/@tufjs/models/dist/utils/ |
H A D | oid.js | 6 const parts = oid.split('.'); 8 const first = parseInt(parts[0], 10) * 40 + parseInt(parts[1], 10); 10 parts.slice(2).forEach((part) => {
|
/third_party/skia/third_party/externals/tint/test/ |
H A D | extract-spvasm.py | 32 parts = [] 39 parts = [] 44 for l in parts: 48 parts.append(line)
|
/third_party/protobuf/java/util/src/main/java/com/google/protobuf/util/ |
H A D | FieldMaskTree.java | 103 String[] parts = path.split(FIELD_PATH_SEPARATOR_REGEX); in addFieldPath() 104 if (parts.length == 0) { in addFieldPath() 110 for (String part : parts) { in addFieldPath() 148 List<String> parts = Splitter.onPattern(FIELD_PATH_SEPARATOR_REGEX).splitToList(path); in removeFieldPath() 149 if (parts.isEmpty()) { in removeFieldPath() 153 for (int i = 0; i < parts.size(); i++) { in removeFieldPath() 154 String key = parts.get(i); in removeFieldPath() 159 if (i == parts.size() - 1) { in removeFieldPath() 211 String[] parts = path.split(FIELD_PATH_SEPARATOR_REGEX); in intersectFieldPath() 212 if (parts in intersectFieldPath() [all...] |
/third_party/skia/infra/bots/gen_tasks_logic/ |
H A D | gen_tasks_logic.go | 259 InternalHardwareLabel func(parts map[string]string) *int `json:"-"` 284 // from parts of task names. 285 SwarmDimensions func(parts map[string]string) []string `json:"-"` 620 return b.cfg.InternalHardwareLabel(b.parts) 642 task_os := b.parts["os"] 644 if val := b.parts["extra_config"]; val != "" { 686 "compiler": b.parts["compiler"], 687 "target_arch": b.parts["arch"], 688 "configuration": b.parts["configuration"], 709 } else if b.parts["rol [all...] |
/third_party/skia/third_party/externals/harfbuzz/src/ |
H A D | hb-aat-layout-bsln-table.hh | 129 case 0: return_trace (parts.format0.sanitize (c)); in sanitize() 130 case 1: return_trace (parts.format1.sanitize (c)); in sanitize() 131 case 2: return_trace (parts.format2.sanitize (c)); in sanitize() 132 case 3: return_trace (parts.format3.sanitize (c)); in sanitize() 150 } parts; member
|
/third_party/icu/tools/cldr/cldr-to-icu/src/test/java/org/unicode/icu/tool/cldrtoicu/localedistance/ |
H A D | TestData.java | 30 List<String> parts = Splitter.on('-').splitToList(s); in lsr() 31 checkArgument(parts.size() <= 3); in lsr() 33 parts.get(0), in lsr() 34 parts.size() > 1 ? parts.get(1) : "", in lsr() 35 parts.size() > 2 ? parts.get(2) : "", in lsr()
|
/kernel/linux/linux-5.10/arch/mips/txx9/rbtx4939/ |
H A D | setup.c | 383 static struct mtd_partition parts[4]; in rbtx4939_mtd_init() local 392 parts[i].name = names[i]; in rbtx4939_mtd_init() 393 parts[i].size = 0x400000; in rbtx4939_mtd_init() 394 parts[i].offset = MTDPART_OFS_NXTBLK; in rbtx4939_mtd_init() 402 parts[i].name = names[i]; in rbtx4939_mtd_init() 403 parts[i].size = 0x400000; in rbtx4939_mtd_init() 404 parts[i].offset = MTDPART_OFS_NXTBLK; in rbtx4939_mtd_init() 409 parts[0].name = "boot"; in rbtx4939_mtd_init() 410 parts[0].offset = 0xc00000; in rbtx4939_mtd_init() 411 parts[ in rbtx4939_mtd_init() [all...] |
/kernel/linux/linux-5.10/drivers/net/ethernet/sfc/falcon/ |
H A D | mtd.c | 54 int ef4_mtd_add(struct ef4_nic *efx, struct ef4_mtd_partition *parts, in ef4_mtd_add() argument 61 part = (struct ef4_mtd_partition *)((char *)parts + in ef4_mtd_add() 87 part = (struct ef4_mtd_partition *)((char *)parts + in ef4_mtd_add() 97 struct ef4_mtd_partition *parts, *part, *next; in ef4_mtd_remove() local 104 parts = list_first_entry(&efx->mtd_list, struct ef4_mtd_partition, in ef4_mtd_remove() 110 kfree(parts); in ef4_mtd_remove()
|
/kernel/linux/linux-5.10/drivers/net/ethernet/sfc/ |
H A D | mtd.c | 54 int efx_mtd_add(struct efx_nic *efx, struct efx_mtd_partition *parts, in efx_mtd_add() argument 61 part = (struct efx_mtd_partition *)((char *)parts + in efx_mtd_add() 90 part = (struct efx_mtd_partition *)((char *)parts + in efx_mtd_add() 100 struct efx_mtd_partition *parts, *part, *next; in efx_mtd_remove() local 107 parts = list_first_entry(&efx->mtd_list, struct efx_mtd_partition, in efx_mtd_remove() 113 kfree(parts); in efx_mtd_remove()
|