/third_party/icu/tools/multi/proj/icu4jscan/src/com/ibm/icu/dev/scan/ |
H A D | ScanJava.java | 41 CapElement locs = addCapability(out, capabilities, CapScan.COLLATION); in addCollation() 45 locs.setAttribute("total", new Integer(available.length).toString()); in addCollation() 49 Spinner sp = new Spinner(locs.getNodeName(),available.length); in addCollation() 65 locs.appendChild(tt); in addCollation() 72 locs.appendChild(out.createComment("Note: Java locales have different conventions than ICU.")); in addCollation() 77 CapElement locs = addCapability(out, capabilities, CapScan.FORMATTING); in addFormatting() 81 locs.setAttribute("total", new Integer(available.length).toString()); in addFormatting() 85 Spinner sp = new Spinner(locs.getNodeName(),available.length); in addFormatting() 100 locs.appendChild(tt); in addFormatting() 107 locs in addFormatting() [all...] |
H A D | ScanICU.java | 91 Element locs = addCapability(out, capabilities, CapScan.FORMATTING); in addFormatting() 95 locs.setAttribute("total", new Integer(available.length).toString()); in addFormatting() 99 Spinner sp = new Spinner(locs.getNodeName(),available.length); in addFormatting() 119 locs.appendChild(tt); in addFormatting() 128 Element locs = addCapability(out, capabilities, CapScan.COLLATION); in addCollation() 132 Spinner sp = new Spinner(locs.getNodeName(),available.length); in addCollation() 133 locs.setAttribute("total", new Integer(available.length).toString()); in addCollation() 150 locs.appendChild(tt); in addCollation()
|
/third_party/rust/crates/regex/src/ |
H A D | re_trait.rs | 34 SubCapturesPosIter { idx: 0, locs: self } in iter() 60 locs: &'c Locations, 67 if self.idx >= self.locs.len() { in next() 70 let x = match self.locs.pos(self.idx) { in next() 79 let len = self.locs.len() - self.idx; in size_hint() 145 locs: &mut Locations, in captures_read_at() 267 let mut locs = self.0.re.locations(); in next() variables 269 &mut locs, in next() 285 Some(locs) in next()
|
/third_party/icu/icu4c/source/test/intltest/ |
H A D | nmfmapts.cpp | 313 LocalPointer<StringEnumeration> locs(NumberFormat::getAvailableLocales()); in testRegistration() 319 for (res = locs->snext(status); res; res = locs->snext(status)) { in testRegistration() 386 for (res = locs->snext(status); res; res = locs->snext(status)) { in testRegistration() 390 locs->reset(status); // now in synch again, we hope in testRegistration() 391 for (res = locs->snext(status); res; res = locs->snext(status)) { in testRegistration()
|
H A D | incaltst.cpp | 125 const char *locs [40] = { "en_US_VALLEYGIRL", in TestTypes() local 152 for(j=0;locs[j];j++) { in TestTypes() 153 logln(UnicodeString("Creating calendar of locale ") + locs[j]); in TestTypes() 155 c = Calendar::createInstance(locs[j], status); in TestTypes() 156 CHECK(status, "creating '" + UnicodeString(locs[j]) + "' calendar"); in TestTypes() 160 dataerrln(UnicodeString(locs[j]) + UnicodeString("Calendar type ") + c->getType() + " instead of " + types[j]); in TestTypes()
|
/third_party/elfutils/tests/ |
H A D | varlocs.c | 459 int locs = dwarf_getlocation_addr (&attrval, addr, in print_expr() local 461 if (locs == 0) in print_expr() 463 else if (locs == 1) in print_expr() 468 ", locs (%d): %s", addr, locs, dwarf_errmsg (-1)); in print_expr() 499 int locs = dwarf_getlocation_addr (&attrval, addr, in print_expr() local 501 if (locs == 0) in print_expr() 503 else if (locs == 1) in print_expr() 508 ", locs (%d): %s", addr, locs, dwarf_errms in print_expr() 850 int locs = dwarf_getlocation_addr (&attr, begin, print_varlocs() local [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/ |
H A D | PPCCCState.h | 33 SmallVectorImpl<CCValAssign> &locs, LLVMContext &C) in PPCCCState() 34 : CCState(CC, isVarArg, MF, locs, C) {} in PPCCCState() 32 PPCCCState(CallingConv::ID CC, bool isVarArg, MachineFunction &MF, SmallVectorImpl<CCValAssign> &locs, LLVMContext &C) PPCCCState() argument
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/format/ |
H A D | CompactDecimalFormatTest.java | 594 ULocale[] locs = new ULocale[] { in TestLongShortFallback() 611 for (int i=0; i<locs.length; i++) { in TestLongShortFallback() 612 ULocale loc = locs[i]; in TestLongShortFallback() 627 ULocale[] locs = ULocale.getAvailableLocales(); in TestLocales() 628 for (ULocale loc : locs) { in TestLocales() 653 ULocale[] locs = {new ULocale("en"), new ULocale("it"), new ULocale("en_US_POSIX"), new ULocale("en-IN")}; in TestLocaleGroupingForLargeNumbers() 655 for (int i=0; i<locs.length; i++) { in TestLocaleGroupingForLargeNumbers() 656 ULocale loc = locs[i]; in TestLocaleGroupingForLargeNumbers()
|
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/ |
H A D | TextFormatParseInfoTree.java | 71 Map<FieldDescriptor, List<TextFormatParseLocation>> locs = in TextFormatParseInfoTree() 74 locs.put(kv.getKey(), Collections.unmodifiableList(kv.getValue())); in TextFormatParseInfoTree() 76 this.locationsFromField = Collections.unmodifiableMap(locs); in TextFormatParseInfoTree()
|
/third_party/mesa3d/src/nouveau/codegen/ |
H A D | nv50_ir_target_nv50.cpp | 578 recordLocation(uint16_t *locs, uint8_t *masks, in recordLocation() argument 584 case TGSI_SEMANTIC_POSITION: locs[SV_POSITION] = addr; break; in recordLocation() 585 case TGSI_SEMANTIC_INSTANCEID: locs[SV_INSTANCE_ID] = addr; break; in recordLocation() 586 case TGSI_SEMANTIC_VERTEXID: locs[SV_VERTEX_ID] = addr; break; in recordLocation() 587 case TGSI_SEMANTIC_PRIMID: locs[SV_PRIMITIVE_ID] = addr; break; in recordLocation() 588 case TGSI_SEMANTIC_LAYER: locs[SV_LAYER] = addr; break; in recordLocation() 589 case TGSI_SEMANTIC_VIEWPORT_INDEX: locs[SV_VIEWPORT_INDEX] = addr; break; in recordLocation()
|
/third_party/elfutils/libdw/ |
H A D | dwarf_getlocation.c | 170 struct loc_block_s **found = tfind (&fake, &attr->cu->locs, loc_compare); in dwarf_getlocation_implicit_value() 214 struct loc_s **found = tfind (&fake, &attr->cu->locs, loc_compare); in is_constant_offset() 238 found = tsearch (newp, &attr->cu->locs, loc_compare); in is_constant_offset() 293 /* Stack allocate at most this many locs. */ in __libdw_intern_expression() 679 &cu->locs, block, in getlocation() 823 Dwarf_Addr address, const Elf_Data *locs, Dwarf_Op **expr, in getlocations_addr() 829 const unsigned char *readp = locs->d_buf + offset; in getlocations_addr() 830 const unsigned char *readendp = locs->d_buf + locs->d_size; in getlocations_addr() 885 return readp - (unsigned char *) locs in getlocations_addr() 821 getlocations_addr(Dwarf_Attribute *attr, ptrdiff_t offset, Dwarf_Addr *basep, Dwarf_Addr *startp, Dwarf_Addr *endp, Dwarf_Addr address, const Elf_Data *locs, Dwarf_Op **expr, size_t *exprlen) getlocations_addr() argument [all...] |
H A D | dwarf_begin_elf.c | 315 result->fake_loc_cu->locs = NULL; in valid_p() 343 result->fake_loclists_cu->locs = NULL; in valid_p() 376 result->fake_addr_cu->locs = NULL; in valid_p()
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
H A D | CompactDecimalFormatTest.java | 597 ULocale[] locs = new ULocale[] { in TestLongShortFallback() 614 for (int i=0; i<locs.length; i++) { in TestLongShortFallback() 615 ULocale loc = locs[i]; in TestLongShortFallback() 630 ULocale[] locs = ULocale.getAvailableLocales(); in TestLocales() 631 for (ULocale loc : locs) { in TestLocales() 656 ULocale[] locs = {new ULocale("en"), new ULocale("it"), new ULocale("en_US_POSIX"), new ULocale("en-IN")}; in TestLocaleGroupingForLargeNumbers() 658 for (int i=0; i<locs.length; i++) { in TestLocaleGroupingForLargeNumbers() 659 ULocale loc = locs[i]; in TestLocaleGroupingForLargeNumbers()
|
/third_party/node/test/parallel/ |
H A D | test-intl.js | 37 const locs = process.config.variables.icu_locales.split(','); 38 return locs.includes(loc);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/SystemZ/ |
H A D | SystemZCallingConv.h | 41 SmallVectorImpl<CCValAssign> &locs, LLVMContext &C) in SystemZCCState() 42 : CCState(CC, isVarArg, MF, locs, C) {} in SystemZCCState() 40 SystemZCCState(CallingConv::ID CC, bool isVarArg, MachineFunction &MF, SmallVectorImpl<CCValAssign> &locs, LLVMContext &C) SystemZCCState() argument
|
/third_party/icu/icu4c/source/test/perf/normperf/ |
H A D | dtfmtrtperf.h | 64 DateTimeRoundTripFunction(int locs) in DateTimeRoundTripFunction() argument 66 nLocales = locs; in DateTimeRoundTripFunction()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Mips/ |
H A D | MipsCCState.h | 84 SmallVectorImpl<CCValAssign> &locs, LLVMContext &C, in MipsCCState() 86 : CCState(CC, isVarArg, MF, locs, C), SpecialCallingConv(SpecialCC) {} in MipsCCState() 83 MipsCCState(CallingConv::ID CC, bool isVarArg, MachineFunction &MF, SmallVectorImpl<CCValAssign> &locs, LLVMContext &C, SpecialCallingConvType SpecialCC = NoSpecialCallingConv) MipsCCState() argument
|
/third_party/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/ |
H A D | CollationServiceTest.java | 326 Locale locs[] = Collator.getAvailableLocales(); in checkAvailable() 327 if (!assertTrue("getAvailableLocales != null", locs!=null)) return -1; in checkAvailable() 328 checkArray(msg, locs, null); in checkAvailable() 334 //assertTrue("getAvailableLocales().length == getAvailableULocales().length", locs.length == ulocs.length); in checkAvailable() 335 return locs.length; in checkAvailable()
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/collator/ |
H A D | CollationServiceTest.java | 329 Locale locs[] = Collator.getAvailableLocales(); in checkAvailable() 330 if (!assertTrue("getAvailableLocales != null", locs!=null)) return -1; in checkAvailable() 331 checkArray(msg, locs, null); in checkAvailable() 337 //assertTrue("getAvailableLocales().length == getAvailableULocales().length", locs.length == ulocs.length); in checkAvailable() 338 return locs.length; in checkAvailable()
|
/third_party/mesa3d/src/amd/vulkan/ |
H A D | radv_device_generated_commands.c | 51 struct radv_userdata_locations *locs = &pipeline->base.shaders[i]->info.user_sgprs_locs; in radv_get_sequence_size() local 52 if (locs->shader_data[AC_UD_PUSH_CONSTANTS].sgpr_idx >= 0) { in radv_get_sequence_size() 57 if (locs->shader_data[AC_UD_INLINE_PUSH_CONSTANTS].sgpr_idx >= 0) in radv_get_sequence_size() 59 *cmd_size += (2 + locs->shader_data[AC_UD_INLINE_PUSH_CONSTANTS].num_sgprs) * 4; in radv_get_sequence_size() 1244 struct radv_userdata_locations *locs = &graphics_pipeline->base.shaders[i]->info.user_sgprs_locs; in radv_prepare_dgc() local 1245 if (locs->shader_data[AC_UD_PUSH_CONSTANTS].sgpr_idx >= 0) in radv_prepare_dgc() 1248 if (locs->shader_data[AC_UD_PUSH_CONSTANTS].sgpr_idx >= 0 || in radv_prepare_dgc() 1249 locs->shader_data[AC_UD_INLINE_PUSH_CONSTANTS].sgpr_idx >= 0) { in radv_prepare_dgc() 1253 if (locs->shader_data[AC_UD_PUSH_CONSTANTS].sgpr_idx >= 0) { in radv_prepare_dgc() 1255 (graphics_pipeline->base.user_data_0[i] + 4 * locs in radv_prepare_dgc() [all...] |
/third_party/skia/third_party/externals/spirv-tools/source/val/ |
H A D | validate_interfaces.cpp | 369 auto locs = locations; in GetLocationsForVariable() local 370 if (has_index && index == 1) locs = output_index1_locations; in GetLocationsForVariable() 373 if (!locs->insert(i).second) { in GetLocationsForVariable()
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/val/ |
H A D | validate_interfaces.cpp | 369 auto locs = locations; in GetLocationsForVariable() local 370 if (has_index && index == 1) locs = output_index1_locations; in GetLocationsForVariable() 373 if (!locs->insert(i).second) { in GetLocationsForVariable()
|
/third_party/python/Lib/ |
H A D | symtable.py | 174 locs = (LOCAL, CELL) 175 test = lambda x: ((x >> SCOPE_OFF) & SCOPE_MASK) in locs
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
H A D | CallingConvLower.cpp | 30 SmallVectorImpl<CCValAssign> &locs, LLVMContext &C) in CCState() 32 TRI(*MF.getSubtarget().getRegisterInfo()), Locs(locs), Context(C) { in CCState() 29 CCState(CallingConv::ID CC, bool isVarArg, MachineFunction &mf, SmallVectorImpl<CCValAssign> &locs, LLVMContext &C) CCState() argument
|
/third_party/spirv-tools/source/val/ |
H A D | validate_interfaces.cpp | 404 auto locs = locations; in GetLocationsForVariable() local 405 if (has_index && index == 1) locs = output_index1_locations; in GetLocationsForVariable() 408 if (!locs->insert(i).second) { in GetLocationsForVariable()
|