/third_party/lwip/src/netif/ppp/ |
H A D | auth.c | 556 void start_link(unit) 557 int unit; 559 ppp_pcb *pcb = &ppp_pcb_list[unit]; 650 * can happen that another pppd gets the same unit and then in link_terminated() 658 * the ppp unit back to the loopback. Set the in link_terminated() 762 set_allowed_addrs(unit, NULL, NULL); in link_established() 786 set_allowed_addrs(unit, NULL, NULL); in link_established() 862 ppp_pcb *pcb = &ppp_pcb_list[unit]; in network_phase() 865 lcp_options *go = &lcp_gotoptions[unit]; in network_phase() 962 && !ecp_gotoptions[unit] in start_networks() [all...] |
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/impl/ |
H A D | PeriodFormatterData.java | 136 * Append the count and unit to the string builder. 138 * @param unit the unit to append 141 * @param uv the format to use for displaying the unit 142 * @param useCountSep if false, force no separator between count and unit 145 * @param last true if this is the last unit 146 * @param wasSkipped true if the unit(s) before this were skipped 151 public boolean appendUnit(TimeUnit unit, int count, int cv, in appendUnit() argument 156 int px = unit.ordinal(); in appendUnit() 174 appendCount(unit, fals in appendUnit() 257 appendCount(TimeUnit unit, boolean omitCount, boolean useDigitPrefix, int count, int cv, boolean useSep, String name, boolean last, StringBuffer sb) appendCount() argument 481 appendUnitSeparator(TimeUnit unit, boolean longSep, boolean afterFirst, boolean beforeLast, StringBuffer sb) appendUnitSeparator() argument 509 computeForm(TimeUnit unit, int count, int cv, boolean lastOfMultiple) computeForm() argument [all...] |
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/duration/impl/ |
H A D | PeriodFormatterData.java | 138 * Append the count and unit to the string builder. 140 * @param unit the unit to append 143 * @param uv the format to use for displaying the unit 144 * @param useCountSep if false, force no separator between count and unit 147 * @param last true if this is the last unit 148 * @param wasSkipped true if the unit(s) before this were skipped 153 public boolean appendUnit(TimeUnit unit, int count, int cv, in appendUnit() argument 158 int px = unit.ordinal(); in appendUnit() 176 appendCount(unit, fals in appendUnit() 259 appendCount(TimeUnit unit, boolean omitCount, boolean useDigitPrefix, int count, int cv, boolean useSep, String name, boolean last, StringBuffer sb) appendCount() argument 483 appendUnitSeparator(TimeUnit unit, boolean longSep, boolean afterFirst, boolean beforeLast, StringBuffer sb) appendUnitSeparator() argument 511 computeForm(TimeUnit unit, int count, int cv, boolean lastOfMultiple) computeForm() argument [all...] |
/third_party/node/deps/v8/src/objects/ |
H A D | js-relative-time-format.cc | 309 bool GetURelativeDateTimeUnit(Handle<String> unit, in GetURelativeDateTimeUnit() argument 311 std::unique_ptr<char[]> unit_str = unit->ToCString(); in GetURelativeDateTimeUnit() 354 // 4. Let unit be ? ToString(unit). in FormatCommon() 355 Handle<String> unit; in FormatCommon() local 356 ASSIGN_RETURN_ON_EXCEPTION(isolate, unit, Object::ToString(isolate, unit_obj), in FormatCommon() 369 if (!GetURelativeDateTimeUnit(unit, &unit_enum)) { in FormatCommon() 374 unit), in FormatCommon() 391 Handle<String> unit, bool is_nan) { in FormatToString() 414 const NumberFormatSpan& part, Handle<String> unit, in AddUnit() 389 FormatToString( Isolate* isolate, const icu::FormattedRelativeDateTime& formatted, Handle<String> unit, bool is_nan) FormatToString() argument 412 AddUnit(Isolate* isolate, Handle<JSArray> array, const icu::UnicodeString& string, int32_t index, const NumberFormatSpan& part, Handle<String> unit, bool is_nan) AddUnit() argument 427 FormatToJSArray( Isolate* isolate, const icu::FormattedRelativeDateTime& formatted, Handle<String> unit, bool is_nan) FormatToJSArray() argument [all...] |
/third_party/benchmark/src/ |
H A D | console_reporter.cc | 106 // them is a space and max two of them are the time unit (e.g ns). That puts in FormatTime() 181 const char* unit = ""; in PrintRunData() local 185 unit = "%"; in PrintRunData() 189 unit = (c.second.flags & Counter::kInvert) ? "s" : "/s"; in PrintRunData() 192 printer(Out, COLOR_DEFAULT, " %*s%s", cNameLen - strlen(unit), s.c_str(), in PrintRunData() 193 unit); in PrintRunData() 195 printer(Out, COLOR_DEFAULT, " %s=%s%s", c.first.c_str(), s.c_str(), unit); in PrintRunData()
|
/third_party/ffmpeg/libavfilter/ |
H A D | avf_showwaves.c | 110 { "point", "draw a point for each sample", 0, AV_OPT_TYPE_CONST, {.i64=MODE_POINT}, .flags=FLAGS, .unit="mode"}, 111 { "line", "draw a line for each sample", 0, AV_OPT_TYPE_CONST, {.i64=MODE_LINE}, .flags=FLAGS, .unit="mode"}, 112 { "p2p", "draw a line between samples", 0, AV_OPT_TYPE_CONST, {.i64=MODE_P2P}, .flags=FLAGS, .unit="mode"}, 113 { "cline", "draw a centered line for each sample", 0, AV_OPT_TYPE_CONST, {.i64=MODE_CENTERED_LINE}, .flags=FLAGS, .unit="mode"}, 119 { "scale", "set amplitude scale", OFFSET(scale), AV_OPT_TYPE_INT, {.i64 = 0 }, 0, SCALE_NB-1, FLAGS, .unit="scale" }, 120 { "lin", "linear", 0, AV_OPT_TYPE_CONST, {.i64=SCALE_LIN}, .flags=FLAGS, .unit="scale"}, 121 { "log", "logarithmic", 0, AV_OPT_TYPE_CONST, {.i64=SCALE_LOG}, .flags=FLAGS, .unit="scale"}, 122 { "sqrt", "square root", 0, AV_OPT_TYPE_CONST, {.i64=SCALE_SQRT}, .flags=FLAGS, .unit="scale"}, 123 { "cbrt", "cubic root", 0, AV_OPT_TYPE_CONST, {.i64=SCALE_CBRT}, .flags=FLAGS, .unit="scale"}, 124 { "draw", "set draw mode", OFFSET(draw_mode), AV_OPT_TYPE_INT, {.i64 = DRAW_SCALE}, 0, DRAW_NB-1, FLAGS, .unit [all...] |
H A D | vf_transpose_vaapi.c | 235 { "cclock_flip", "rotate counter-clockwise with vertical flip", 0, AV_OPT_TYPE_CONST, { .i64 = TRANSPOSE_CCLOCK_FLIP }, .flags=FLAGS, .unit = "dir" }, 236 { "clock", "rotate clockwise", 0, AV_OPT_TYPE_CONST, { .i64 = TRANSPOSE_CLOCK }, .flags=FLAGS, .unit = "dir" }, 237 { "cclock", "rotate counter-clockwise", 0, AV_OPT_TYPE_CONST, { .i64 = TRANSPOSE_CCLOCK }, .flags=FLAGS, .unit = "dir" }, 238 { "clock_flip", "rotate clockwise with vertical flip", 0, AV_OPT_TYPE_CONST, { .i64 = TRANSPOSE_CLOCK_FLIP }, .flags=FLAGS, .unit = "dir" }, 239 { "reversal", "rotate by half-turn", 0, AV_OPT_TYPE_CONST, { .i64 = TRANSPOSE_REVERSAL }, .flags=FLAGS, .unit = "dir" }, 240 { "hflip", "flip horizontally", 0, AV_OPT_TYPE_CONST, { .i64 = TRANSPOSE_HFLIP }, .flags=FLAGS, .unit = "dir" }, 241 { "vflip", "flip vertically", 0, AV_OPT_TYPE_CONST, { .i64 = TRANSPOSE_VFLIP }, .flags=FLAGS, .unit = "dir" },
|
/third_party/backends/backend/ |
H A D | snapscan-options.c | 344 po[OPT_COUNT].unit = SANE_UNIT_NONE; in init_options() 365 po[OPT_SCANRES].unit = SANE_UNIT_DPI; in init_options() 413 po[OPT_PREVIEW].unit = SANE_UNIT_NONE; in init_options() 424 po[OPT_HIGHQUALITY].unit = SANE_UNIT_NONE; in init_options() 441 po[OPT_BRIGHTNESS].unit = SANE_UNIT_PERCENT; in init_options() 452 po[OPT_CONTRAST].unit = SANE_UNIT_PERCENT; in init_options() 463 po[OPT_MODE].unit = SANE_UNIT_NONE; in init_options() 487 po[OPT_PREVIEW_MODE].unit = SANE_UNIT_NONE; in init_options() 560 po[OPT_TLX].unit = SANE_UNIT_MM; in init_options() 571 po[OPT_TLY].unit in init_options() [all...] |
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
H A D | MeasureUnitTest.java | 288 // modify certain CLDR unit names before generating functions 308 // The first two fix overly-generic CLDR unit names 325 // docs/processes/release/tasks/updating-measure-unit.md in testZZZ() 2956 // per unit pattern in testSimplePer() 2962 // per unit in testSimplePer() 2968 // per unit in testSimplePer() 3106 MeasureUnit unit = (MeasureUnit) test[0]; in testDisplayNames() 3112 String actual = mf.getUnitDisplayName(unit); in testDisplayNames() 3113 assertEquals(String.format("Unit Display Name for %s, %s, %s", unit, locale, formatWidth), in testDisplayNames() 3390 MeasureUnit unit in testCLDRUnitAvailability() 3543 checkForDup( Map<String, MeasureUnit> seen, String name, MeasureUnit unit) checkForDup() argument 3722 toCamelCase(MeasureUnit unit) toCamelCase() argument 3804 toJAVAName(MeasureUnit unit) toJAVAName() argument 4624 verifyCompoundUnit( MeasureUnit unit, String identifier, String subIdentifiers[], int subIdentifierCount) verifyCompoundUnit() argument 4653 verifyMixedUnit( MeasureUnit unit, String identifier, String subIdentifiers[], int subIdentifierCount) verifyMixedUnit() argument [all...] |
/third_party/ffmpeg/libavcodec/ |
H A D | cbs_vp9.c | 482 CodedBitstreamUnit *unit) in cbs_vp9_read_unit() 488 err = init_get_bits(&gbc, unit->data, 8 * unit->data_size); in cbs_vp9_read_unit() 492 err = ff_cbs_alloc_unit_content2(ctx, unit); in cbs_vp9_read_unit() 495 frame = unit->content; in cbs_vp9_read_unit() 504 av_assert0(pos <= unit->data_size); in cbs_vp9_read_unit() 506 if (pos == unit->data_size) { in cbs_vp9_read_unit() 509 frame->data_ref = av_buffer_ref(unit->data_ref); in cbs_vp9_read_unit() 513 frame->data = unit->data + pos; in cbs_vp9_read_unit() 514 frame->data_size = unit in cbs_vp9_read_unit() 481 cbs_vp9_read_unit(CodedBitstreamContext *ctx, CodedBitstreamUnit *unit) cbs_vp9_read_unit() argument 520 cbs_vp9_write_unit(CodedBitstreamContext *ctx, CodedBitstreamUnit *unit, PutBitContext *pbc) cbs_vp9_write_unit() argument [all...] |
H A D | dump_extradata_bsf.c | 87 { "k", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = DUMP_FREQ_KEYFRAME }, .flags = FLAGS, .unit = "freq" }, 88 { "keyframe", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = DUMP_FREQ_KEYFRAME }, .flags = FLAGS, .unit = "freq" }, 89 { "e", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = DUMP_FREQ_ALL }, .flags = FLAGS, .unit = "freq" }, 90 { "all", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = DUMP_FREQ_ALL }, .flags = FLAGS, .unit = "freq" },
|
H A D | cbs.h | 49 * The codec-specific type of a bitstream unit. 56 * VP9: unused, set to zero (every unit is a frame) 61 * Coded bitstream unit structure. 63 * A bitstream unit the smallest element of a bitstream which 64 * is meaningful on its own. For example, an H.264 NAL unit. 71 * Codec-specific type of this unit. 76 * Pointer to the directly-parsable bitstream form of this unit. 78 * May be NULL if the unit currently only exists in decomposed form. 100 * Pointer to the decomposed form of this unit. 103 * type of this unit [all...] |
/third_party/icu/icu4c/source/common/ |
H A D | stringtriebuilder.cpp | 140 // Branch on the middle unit. in writeBranchSubNode() 141 // First, find the middle unit. in writeBranchSubNode() 144 middleUnits[ltLength]=getElementUnit(i, unitIndex); // middle unit in writeBranchSubNode() 151 // For each unit, find its elements array start and whether it has a final value. in writeBranchSubNode() 157 UChar unit=getElementUnit(i++, unitIndex); in writeBranchSubNode() local 158 i=indexOfElementWithNextUnit(i, unitIndex, unit); in writeBranchSubNode() 181 // Write the rest of this node's unit-value pairs. in writeBranchSubNode() 186 // Write the final value for the one string ending with this unit. in writeBranchSubNode() 269 // Branch on the middle unit. in makeBranchSubNode() 270 // First, find the middle unit in makeBranchSubNode() 292 UChar unit=getElementUnit(i++, unitIndex); makeBranchSubNode() local 302 UChar unit=getElementUnit(start, unitIndex); makeBranchSubNode() local [all...] |
/third_party/node/deps/icu-small/source/common/ |
H A D | stringtriebuilder.cpp | 140 // Branch on the middle unit. in writeBranchSubNode() 141 // First, find the middle unit. in writeBranchSubNode() 144 middleUnits[ltLength]=getElementUnit(i, unitIndex); // middle unit in writeBranchSubNode() 151 // For each unit, find its elements array start and whether it has a final value. in writeBranchSubNode() 157 char16_t unit=getElementUnit(i++, unitIndex); in writeBranchSubNode() local 158 i=indexOfElementWithNextUnit(i, unitIndex, unit); in writeBranchSubNode() 181 // Write the rest of this node's unit-value pairs. in writeBranchSubNode() 186 // Write the final value for the one string ending with this unit. in writeBranchSubNode() 269 // Branch on the middle unit. in makeBranchSubNode() 270 // First, find the middle unit in makeBranchSubNode() 292 char16_t unit=getElementUnit(i++, unitIndex); makeBranchSubNode() local 302 char16_t unit=getElementUnit(start, unitIndex); makeBranchSubNode() local [all...] |
/third_party/skia/third_party/externals/icu/source/common/ |
H A D | stringtriebuilder.cpp | 140 // Branch on the middle unit. in writeBranchSubNode() 141 // First, find the middle unit. in writeBranchSubNode() 144 middleUnits[ltLength]=getElementUnit(i, unitIndex); // middle unit in writeBranchSubNode() 151 // For each unit, find its elements array start and whether it has a final value. in writeBranchSubNode() 157 UChar unit=getElementUnit(i++, unitIndex); in writeBranchSubNode() local 158 i=indexOfElementWithNextUnit(i, unitIndex, unit); in writeBranchSubNode() 181 // Write the rest of this node's unit-value pairs. in writeBranchSubNode() 186 // Write the final value for the one string ending with this unit. in writeBranchSubNode() 269 // Branch on the middle unit. in makeBranchSubNode() 270 // First, find the middle unit in makeBranchSubNode() 292 UChar unit=getElementUnit(i++, unitIndex); makeBranchSubNode() local 302 UChar unit=getElementUnit(start, unitIndex); makeBranchSubNode() local [all...] |
/third_party/node/deps/v8/tools/ |
H A D | avg.py | 9 <key> <number> <unit> 10 key and unit are optional, but only one number per line is processed. 106 def __init__(self, key, unit): 108 self.unit = unit 144 if not self.unit: 146 return self.unit 171 "id", "avg", "stddev", "min", "max", "unit", widths) 188 def record(self, key, value, unit): 192 self.all[key] = Measurement(key, unit) [all...] |
/third_party/protobuf/js/binary/ |
H A D | arith.js | 238 var unit = new jspb.arith.UInt64(1, 0); 240 // Left-shift the divisor and unit until the high bit of divisor is set. 243 unit = unit.leftShift(); 247 while (!unit.zero()) { 248 // If divisor < remainder, add unit to quotient and subtract divisor from 251 quotient = quotient.add(unit); 254 // Right-shift the divisor and unit. 256 unit = unit [all...] |
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/number/ |
H A D | NumberSkeletonImpl.java | 163 b.add("base-unit", StemEnum.STEM_BASE_UNIT.ordinal()); in buildStemTrie() 185 b.add("unit-width-narrow", StemEnum.STEM_UNIT_WIDTH_NARROW.ordinal()); in buildStemTrie() 186 b.add("unit-width-short", StemEnum.STEM_UNIT_WIDTH_SHORT.ordinal()); in buildStemTrie() 187 b.add("unit-width-full-name", StemEnum.STEM_UNIT_WIDTH_FULL_NAME.ordinal()); in buildStemTrie() 188 b.add("unit-width-iso-code", StemEnum.STEM_UNIT_WIDTH_ISO_CODE.ordinal()); in buildStemTrie() 189 b.add("unit-width-formal", StemEnum.STEM_UNIT_WIDTH_FORMAL.ordinal()); in buildStemTrie() 190 b.add("unit-width-variant", StemEnum.STEM_UNIT_WIDTH_VARIANT.ordinal()); in buildStemTrie() 191 b.add("unit-width-hidden", StemEnum.STEM_UNIT_WIDTH_HIDDEN.ordinal()); in buildStemTrie() 206 b.add("measure-unit", StemEnum.STEM_MEASURE_UNIT.ordinal()); in buildStemTrie() 207 b.add("per-measure-unit", StemEnu in buildStemTrie() 260 private static MeasureUnit unit(StemEnum stem) { unit() method in NumberSkeletonImpl.StemToObject 1529 private static boolean unit(MacroProps macros, StringBuilder sb) { unit() method in NumberSkeletonImpl.GeneratorHelpers [all...] |
/third_party/ltp/testcases/lib/ |
H A D | tst_sleep.c | 14 printf(" If no unit is specified the interval is in seconds\n"); in print_help() 17 static struct unit { struct 18 const char *unit; member 63 if (!strcmp(units[i].unit, end)) in main() 68 fprintf(stderr, "ERROR: Invalid interval unit '%s'\n\n", end); in main()
|
/third_party/ltp/testcases/kernel/mem/ksm/ |
H A D | ksm04.c | 79 create_same_memory(size, num, unit); in verify_ksm() 82 create_same_memory(size, num, unit); in verify_ksm() 87 parse_ksm_options(opt_sizestr, &size, opt_numstr, &num, opt_unitstr, &unit); in setup() 101 {"u:", &opt_unitstr, "Memory allocation unit in MB"},
|
H A D | ksm02.c | 77 create_same_memory(size, num, unit); in verify_ksm() 81 create_same_memory(size, num, unit); in verify_ksm() 87 parse_ksm_options(opt_sizestr, &size, opt_numstr, &num, opt_unitstr, &unit); in setup() 99 {"u:", &opt_unitstr, "Memory allocation unit in MB"},
|
/third_party/ffmpeg/tools/ |
H A D | enum_options.c | 67 if (o->unit) { in print_option() 72 if (u->type == AV_OPT_TYPE_CONST && u->unit && !strcmp(u->unit, o->unit)) in print_option()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/number/ |
H A D | NumberSkeletonImpl.java | 154 b.add("base-unit", StemEnum.STEM_BASE_UNIT.ordinal()); in buildStemTrie() 175 b.add("unit-width-narrow", StemEnum.STEM_UNIT_WIDTH_NARROW.ordinal()); in buildStemTrie() 176 b.add("unit-width-short", StemEnum.STEM_UNIT_WIDTH_SHORT.ordinal()); in buildStemTrie() 177 b.add("unit-width-full-name", StemEnum.STEM_UNIT_WIDTH_FULL_NAME.ordinal()); in buildStemTrie() 178 b.add("unit-width-iso-code", StemEnum.STEM_UNIT_WIDTH_ISO_CODE.ordinal()); in buildStemTrie() 179 b.add("unit-width-formal", StemEnum.STEM_UNIT_WIDTH_FORMAL.ordinal()); in buildStemTrie() 180 b.add("unit-width-variant", StemEnum.STEM_UNIT_WIDTH_VARIANT.ordinal()); in buildStemTrie() 181 b.add("unit-width-hidden", StemEnum.STEM_UNIT_WIDTH_HIDDEN.ordinal()); in buildStemTrie() 194 b.add("measure-unit", StemEnum.STEM_MEASURE_UNIT.ordinal()); in buildStemTrie() 195 b.add("per-measure-unit", StemEnu in buildStemTrie() 245 private static MeasureUnit unit(StemEnum stem) { unit() method in NumberSkeletonImpl.StemToObject 1036 generateMeasureUnitOption(MeasureUnit unit, StringBuilder sb) generateMeasureUnitOption() argument 1435 private static boolean unit(MacroProps macros, StringBuilder sb) { unit() method in NumberSkeletonImpl.GeneratorHelpers [all...] |
/third_party/icu/icu4c/source/i18n/ |
H A D | number_skeletons.cpp | 59 b.add(u"base-unit", STEM_BASE_UNIT, status); in initNumberSkeletons() 84 b.add(u"unit-width-narrow", STEM_UNIT_WIDTH_NARROW, status); in initNumberSkeletons() 85 b.add(u"unit-width-short", STEM_UNIT_WIDTH_SHORT, status); in initNumberSkeletons() 86 b.add(u"unit-width-full-name", STEM_UNIT_WIDTH_FULL_NAME, status); in initNumberSkeletons() 87 b.add(u"unit-width-iso-code", STEM_UNIT_WIDTH_ISO_CODE, status); in initNumberSkeletons() 88 b.add(u"unit-width-formal", STEM_UNIT_WIDTH_FORMAL, status); in initNumberSkeletons() 89 b.add(u"unit-width-variant", STEM_UNIT_WIDTH_VARIANT, status); in initNumberSkeletons() 90 b.add(u"unit-width-hidden", STEM_UNIT_WIDTH_HIDDEN, status); in initNumberSkeletons() 106 b.add(u"measure-unit", STEM_MEASURE_UNIT, status); in initNumberSkeletons() 107 b.add(u"per-measure-unit", STEM_PER_MEASURE_UNI in initNumberSkeletons() 184 MeasureUnit stem_to_object::unit(skeleton::StemEnum stem) { unit() function in stem_to_object 1077 auto& unit = units[i]; parseMeasureUnitOption() local 1566 bool GeneratorHelpers::unit(const MacroProps& macros, UnicodeString& sb, UErrorCode& status) { unit() function in GeneratorHelpers 1567 MeasureUnit unit = macros.unit; unit() local [all...] |
/third_party/node/deps/icu-small/source/i18n/ |
H A D | number_skeletons.cpp | 59 b.add(u"base-unit", STEM_BASE_UNIT, status); in initNumberSkeletons() 84 b.add(u"unit-width-narrow", STEM_UNIT_WIDTH_NARROW, status); in initNumberSkeletons() 85 b.add(u"unit-width-short", STEM_UNIT_WIDTH_SHORT, status); in initNumberSkeletons() 86 b.add(u"unit-width-full-name", STEM_UNIT_WIDTH_FULL_NAME, status); in initNumberSkeletons() 87 b.add(u"unit-width-iso-code", STEM_UNIT_WIDTH_ISO_CODE, status); in initNumberSkeletons() 88 b.add(u"unit-width-formal", STEM_UNIT_WIDTH_FORMAL, status); in initNumberSkeletons() 89 b.add(u"unit-width-variant", STEM_UNIT_WIDTH_VARIANT, status); in initNumberSkeletons() 90 b.add(u"unit-width-hidden", STEM_UNIT_WIDTH_HIDDEN, status); in initNumberSkeletons() 106 b.add(u"measure-unit", STEM_MEASURE_UNIT, status); in initNumberSkeletons() 107 b.add(u"per-measure-unit", STEM_PER_MEASURE_UNI in initNumberSkeletons() 184 MeasureUnit stem_to_object::unit(skeleton::StemEnum stem) { unit() function in stem_to_object 1077 auto& unit = units[i]; parseMeasureUnitOption() local 1566 bool GeneratorHelpers::unit(const MacroProps& macros, UnicodeString& sb, UErrorCode& status) { unit() function in GeneratorHelpers 1567 MeasureUnit unit = macros.unit; unit() local [all...] |