/third_party/elfutils/libdw/ |
H A D | dwarf_getsrcfiles.c | 76 Dwarf_CU *skel = __libdw_find_split_unit (cu); in dwarf_getsrcfiles() local 77 if (skel != NULL) in dwarf_getsrcfiles() 79 Dwarf_Die skeldie = CUDIE (skel); in dwarf_getsrcfiles() 81 cu->files = skel->files; in dwarf_getsrcfiles()
|
H A D | dwarf_formudata.c | 46 Dwarf_CU *skel = NULL; /* See below, needed for GNU DebugFission. */ in __libdw_formptr() local 52 skel = __libdw_find_split_unit (attr->cu); in __libdw_formptr() 53 if (skel != NULL) in __libdw_formptr() 54 d = skel->dbg->sectiondata[IDX_debug_ranges]; in __libdw_formptr() 73 if (unlikely (skel != NULL)) in __libdw_formptr() 91 offset += __libdw_cu_ranges_base (skel); in __libdw_formptr()
|
H A D | libdwP.h | 1311 __libdw_link_skel_split (Dwarf_CU *skel, Dwarf_CU *split) in __libdw_link_skel_split() argument 1313 skel->split = split; in __libdw_link_skel_split() 1314 split->split = skel; in __libdw_link_skel_split() 1319 Dwarf *dbg = skel->dbg; in __libdw_link_skel_split() 1326 split->addr_base = __libdw_cu_addr_base (skel); in __libdw_link_skel_split()
|
H A D | dwarf_ranges.c | 494 Dwarf_CU *skel = __libdw_find_split_unit (cu); in dwarf_ranges() local 495 if (skel != NULL) in dwarf_ranges() 497 cu = skel; in dwarf_ranges()
|
H A D | dwarf_getsrclines.c | 1211 Dwarf_CU *skel = __libdw_find_split_unit (cu); in dwarf_getsrclines() local 1212 if (skel != NULL) in dwarf_getsrclines() 1214 Dwarf_Die skeldie = CUDIE (skel); in dwarf_getsrclines() 1218 cu->lines = skel->lines; in dwarf_getsrclines()
|
/third_party/toybox/toys/pending/ |
H A D | useradd.c | 114 * 2. Copy /etc/skel dir contents to use home dir in useradd_main() 133 // create home dir & copy skel dir to home in useradd_main() 135 char *skel = "/etc/skel", *p = pwd.pw_dir; in useradd_main() local 139 if (!access(skel, R_OK)) in useradd_main() 140 toys.exitval = xrun((char *[]){"cp", "-R", skel, p, 0}); in useradd_main() 146 } else fprintf(stderr, "'%s' exists, not copying '%s'", p, skel); in useradd_main()
|
/third_party/icu/icu4c/source/i18n/ |
H A D | udateintervalformat.cpp | 54 UnicodeString skel((UBool)(skeletonLength == -1), skeleton, skeletonLength); in udtitvfmt_open() 56 DateIntervalFormat::createInstance(skel, Locale(locale), *status)); in udtitvfmt_open()
|
/third_party/node/deps/icu-small/source/i18n/ |
H A D | udateintervalformat.cpp | 54 UnicodeString skel((UBool)(skeletonLength == -1), skeleton, skeletonLength); in udtitvfmt_open() 56 DateIntervalFormat::createInstance(skel, Locale(locale), *status)); in udtitvfmt_open()
|
/third_party/skia/third_party/externals/icu/source/i18n/ |
H A D | udateintervalformat.cpp | 54 UnicodeString skel((UBool)(skeletonLength == -1), skeleton, skeletonLength); in udtitvfmt_open() 56 DateIntervalFormat::createInstance(skel, Locale(locale), *status)); in udtitvfmt_open()
|
/third_party/icu/icu4c/source/test/cintltst/ |
H A D | udatpg_test.c | 395 const UChar * skel; member 414 /*loc skel options expectedPattern */ in TestOptions() 437 int32_t patLen = udatpg_getBestPatternWithOptions(dtpgen, testDataPtr->skel, -1, in TestOptions() 445 testDataPtr->locale, u_austrncpy(skelBytes,testDataPtr->skel,kTestOptionsPatLenMax), testDataPtr->options, in TestOptions()
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/number/ |
H A D | NumberFormatterApiTest.java | 2339 String skel; in runTest() 2342 skel = "unit/" + unitIdentifier + " " + skeleton; in runTest() 2346 skel = null; in runTest() 2351 skel, skel, unf, new ULocale(this.locale), this.value, this.expected); in runTest() 2356 String skel; in runTestWithDisplayOptions() 2362 skel = "unit/" + unitIdentifier + " " + skeleton; in runTestWithDisplayOptions() 2368 skel = null; in runTestWithDisplayOptions() 2373 skel, skel, un in runTestWithDisplayOptions() [all...] |
/third_party/icu/icu4c/source/test/intltest/ |
H A D | dtptngts.cpp | 922 const char *skel; member 929 // locale skel expectedPattern options in testOptions() 974 UnicodeString skel(testDataPtr->skel); in testOptions() 984 UnicodeString pattern = dtpgen->getBestPattern(skel, options, status); in testOptions() 987 UnicodeString(", skeleton ") + skel + in testOptions() 1223 // skel pattern in testSkeletonsWithDayPeriods()
|
H A D | numbertest_api.cpp | 2313 const UChar *skel; in runUnitInflectionsTestCases() local 2316 skel = skelString.getTerminatedBuffer(); in runUnitInflectionsTestCases() 2320 skel = nullptr; in runUnitInflectionsTestCases() 2326 skel, skel, unf, Locale(t.locale), t.value, t.expected); in runUnitInflectionsTestCases() 2340 const UChar *skel; in runUnitInflectionsTestCases() local 2345 skel = skelString.getTerminatedBuffer(); in runUnitInflectionsTestCases() 2353 skel = nullptr; in runUnitInflectionsTestCases() 2359 skel, skel, un in runUnitInflectionsTestCases() [all...] |
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
H A D | DateIntervalFormatTest.java | 1000 public DateIntervalContextItem(String loc, String skel, DisplayContext ctxt, long delta, String expect) { in TestContext() 1002 skeleton = skel; in TestContext() 2000 public LocaleAndSkeletonItem(String loc, String skel, int field, ExpectPosAndFormat[] exp) { in TestFPos_SkelWithSeconds() 2002 skeleton = skel; in TestFPos_SkelWithSeconds()
|
H A D | DateTimeGeneratorTest.java | 95 // skel (base) pattern in TestSkeletonsWithDayPeriods() 102 // skel pattern in TestSkeletonsWithDayPeriods() 1375 public TestOptionsItem(String loc, String skel, String expectedPat, int opts) { in TestOptionsItem() argument 1377 skeleton = skel; in TestOptionsItem()
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/format/ |
H A D | DateTimeGeneratorTest.java | 98 // skel (base) pattern in TestSkeletonsWithDayPeriods() 105 // skel pattern in TestSkeletonsWithDayPeriods() 1378 public TestOptionsItem(String loc, String skel, String expectedPat, int opts) { in TestOptionsItem() argument 1380 skeleton = skel; in TestOptionsItem()
|
H A D | DateIntervalFormatTest.java | 1818 public LocaleAndSkeletonItem(String loc, String skel, int field, ExpectPosAndFormat[] exp) { in TestFPos_SkelWithSeconds() 1820 skeleton = skel; in TestFPos_SkelWithSeconds()
|
/third_party/mksh/ |
H A D | Build.sh | 2871 Copy dot.mkshrc to /etc/skel/.mkshrc; install mksh into $prefix/bin; or 2873 using $NROFF. Consider using a forward script as /etc/skel/.mkshrc like
|