| /third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/number/parse/ |
| D | AffixMatcher.java | 25 private final AffixPatternMatcher suffix; field in AffixMatcher 30 * suffixes, ensuring that the longest prefix/suffix pair is always chosen. 37 } else if (length(lhs.suffix) != length(rhs.suffix)) { 38 return length(lhs.suffix) > length(rhs.suffix) ? -1 : 1; 40 // If the prefix and suffix are the same length, arbitrarily break ties. 122 // Generate Suffix in createMatchers() 129 AffixPatternMatcher suffix = AffixPatternMatcher in createMatchers() local 134 posSuffix = suffix; in createMatchers() 135 } else if (Objects.equals(prefix, posPrefix) && Objects.equals(suffix, posSuffix)) { in createMatchers() 145 matchers.add(getInstance(prefix, suffix, flags)); in createMatchers() [all …]
|
| /third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/parse/ |
| D | AffixMatcher.java | 23 private final AffixPatternMatcher suffix; field in AffixMatcher 28 * suffixes, ensuring that the longest prefix/suffix pair is always chosen. 35 } else if (length(lhs.suffix) != length(rhs.suffix)) { 36 return length(lhs.suffix) > length(rhs.suffix) ? -1 : 1; 38 // If the prefix and suffix are the same length, arbitrarily break ties. 122 // Generate Suffix in createMatchers() 131 AffixPatternMatcher suffix = AffixPatternMatcher in createMatchers() local 136 posSuffix = suffix; in createMatchers() 137 } else if (Objects.equals(prefix, posPrefix) && Objects.equals(suffix, posSuffix)) { in createMatchers() 147 matchers.add(getInstance(prefix, suffix, flags)); in createMatchers() [all …]
|
| /third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/number/ |
| D | ConstantAffixModifier.java | 11 * The canonical implementation of {@link Modifier}, containing a prefix and suffix string. 16 // TODO: Avoid making a new instance by default if prefix and suffix are empty 20 private final String suffix; field in ConstantAffixModifier 33 * @param suffix 34 * The suffix string. 41 public ConstantAffixModifier(String prefix, String suffix, Field field, boolean strong) { in ConstantAffixModifier() argument 43 // TODO: Consider returning a null modifier if both prefix and suffix are empty. in ConstantAffixModifier() 45 this.suffix = (suffix == null ? "" : suffix); in ConstantAffixModifier() 50 /** Constructs a new instance with an empty prefix, suffix, and field. */ 53 suffix = ""; in ConstantAffixModifier() [all …]
|
| /third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/ |
| D | ConstantAffixModifier.java | 10 * The canonical implementation of {@link Modifier}, containing a prefix and suffix string. 14 // TODO: Avoid making a new instance by default if prefix and suffix are empty 18 private final String suffix; field in ConstantAffixModifier 31 * @param suffix 32 * The suffix string. 39 public ConstantAffixModifier(String prefix, String suffix, Field field, boolean strong) { in ConstantAffixModifier() argument 41 // TODO: Consider returning a null modifier if both prefix and suffix are empty. in ConstantAffixModifier() 43 this.suffix = (suffix == null ? "" : suffix); in ConstantAffixModifier() 48 /** Constructs a new instance with an empty prefix, suffix, and field. */ 51 suffix = ""; in ConstantAffixModifier() [all …]
|
| /third_party/toybox/tests/ |
| D | basename.test | 12 # Standard suffix behavior. 13 testcmd "suffix" "a/b/c/d.suffix .suffix" "d\n" "" "" 15 # A suffix cannot be the entire result. 16 testcmd "suffix=result" ".txt .txt" ".txt\n" "" "" 18 # Deal with suffix appearing in the filename 19 testcmd "reappearing suffix 1" "a.txt.txt .txt" "a.txt\n" "" "" 20 testcmd "reappearing suffix 2" "a.txt.old .txt" "a.txt.old\n" "" "" 22 # A suffix should be a real suffix, only a the end. 23 testcmd "invalid suffix" "isthisasuffix? suffix" "isthisasuffix?\n" "" "" 25 # Zero-length suffix [all …]
|
| /third_party/icu/icu4c/source/data/rbnf/ |
| D | bg.txt | 7 "%%digits-ordinal-masculine-larger-suffix:", 9 "1: >%%digits-ordinal-masculine-suffix>;", 11 "%%digits-ordinal-masculine-suffix:", 18 "100: >%%digits-ordinal-masculine-larger-suffix>;", 22 "0: =#,##0=-=%%digits-ordinal-masculine-suffix=;", 23 "%%digits-ordinal-feminine-larger-suffix:", 25 "1: >%%digits-ordinal-feminine-suffix>;", 27 "%%digits-ordinal-feminine-suffix:", 34 "100: >%%digits-ordinal-feminine-larger-suffix>;", 38 "0: =#,##0=-=%%digits-ordinal-feminine-suffix=;", [all …]
|
| D | kk.txt | 78 "11: \u043E\u043D>%%ordinal-yeru-suffix>;", 81 "30: \u043E\u0442\u044B\u0437>%%ordinal-yeru-suffix>;", 82 "40: \u049B\u044B\u0440\u044B\u049B>%%ordinal-yeru-suffix>;", 83 "50: \u0435\u043B\u0443>%%ordinal-i-suffix>;", 84 "60: \u0430\u043B\u043F\u044B\u0441>%%ordinal-yeru-suffix>;", 85 "70: \u0436\u0435\u0442\u043F\u0456\u0441>%%ordinal-i-suffix>;", 86 "80: \u0441\u0435\u043A\u0441\u0435\u043D>%%ordinal-i-suffix>;", 87 "90: \u0442\u043E\u049B\u0441\u0430\u043D>%%ordinal-yeru-suffix>;", 88 "100: \u0436\u04AF\u0437>%%ordinal-i-suffix>;", 89 "200: <%spellout-cardinal< \u0436\u04AF\u0437>%%ordinal-i-suffix>;", [all …]
|
| /third_party/python/Tools/c-analyzer/c_common/ |
| D | fsutil.py | 201 suffix=None, argument 206 If "suffix" is provided then only files with that suffix will 209 if suffix and not isinstance(suffix, str): 210 raise ValueError('suffix must be a string') 213 if suffix and not filename.endswith(suffix): 219 suffix=None, argument 224 If "suffix" is provided then only files with that suffix will 227 suffix = suffix or '' 228 if not isinstance(suffix, str): 229 raise ValueError('suffix must be a string') [all …]
|
| /third_party/glslang/.github/workflows/ |
| D | continuous_deployment.yml | 80 lib/libGenericCodeGen${SUFFIX}.a \ 81 lib/libglslang${SUFFIX}.a \ 82 lib/libglslang-default-resource-limits${SUFFIX}.a \ 83 lib/libHLSL${SUFFIX}.a \ 84 lib/libMachineIndependent${SUFFIX}.a \ 85 lib/libOGLCompiler${SUFFIX}.a \ 86 lib/libOSDependent${SUFFIX}.a \ 87 lib/libSPIRV${SUFFIX}.a \ 88 lib/libSPVRemapper${SUFFIX}.a \ 89 lib/libSPIRV-Tools${SUFFIX}.a \ [all …]
|
| /third_party/node/deps/openssl/openssl/crypto/ |
| D | trace.c | 178 char *suffix; member 190 SUFFIX enumerator 204 case SUFFIX: in trace_attach_cb() 205 OSSL_TRACE2(TRACE, "Attach suffix \"%s\" to category '%s'\n", in trace_attach_cb() 225 case SUFFIX: in trace_detach_cb() 226 OSSL_TRACE2(TRACE, "Detach suffix \"%s\" from category '%s'\n", in trace_detach_cb() 243 const char **prefix, const char **suffix, in set_trace_data() argument 257 curr_suffix = trace_channels[category].suffix; in set_trace_data() 264 if (suffix != NULL && curr_suffix != NULL) { in set_trace_data() 265 detach_cb(category, SUFFIX, curr_suffix); in set_trace_data() [all …]
|
| /third_party/openssl/crypto/ |
| D | trace.c | 178 char *suffix; member 190 SUFFIX enumerator 204 case SUFFIX: in trace_attach_cb() 205 OSSL_TRACE2(TRACE, "Attach suffix \"%s\" to category '%s'\n", in trace_attach_cb() 225 case SUFFIX: in trace_detach_cb() 226 OSSL_TRACE2(TRACE, "Detach suffix \"%s\" from category '%s'\n", in trace_detach_cb() 243 const char **prefix, const char **suffix, in set_trace_data() argument 257 curr_suffix = trace_channels[category].suffix; in set_trace_data() 264 if (suffix != NULL && curr_suffix != NULL) { in set_trace_data() 265 detach_cb(category, SUFFIX, curr_suffix); in set_trace_data() [all …]
|
| /third_party/elfutils/libcpu/ |
| D | i386_dis.h | 140 …{ .mnemonic = MNE_aaa, .rep = 0, .repe = 0, .suffix = 0, .modrm = 0, .fct1 = 0, .str1 = 0, .off1_1… 141 …{ .mnemonic = MNE_aad, .rep = 0, .repe = 0, .suffix = 0, .modrm = 0, .fct1 = 0, .str1 = 0, .off1_1… 142 …{ .mnemonic = MNE_aam, .rep = 0, .repe = 0, .suffix = 0, .modrm = 0, .fct1 = 0, .str1 = 0, .off1_1… 143 …{ .mnemonic = MNE_aas, .rep = 0, .repe = 0, .suffix = 0, .modrm = 0, .fct1 = 0, .str1 = 0, .off1_1… 144 …{ .mnemonic = MNE_adc, .rep = 0, .repe = 0, .suffix = 0, .modrm = 0, .fct1 = 15, .str1 = 0, .off1_… 145 …{ .mnemonic = MNE_adc, .rep = 0, .repe = 0, .suffix = 1, .modrm = 1, .fct1 = 15, .str1 = 0, .off1_… 146 …{ .mnemonic = MNE_adc, .rep = 0, .repe = 0, .suffix = 1, .modrm = 1, .fct1 = 18, .str1 = 0, .off1_… 147 …{ .mnemonic = MNE_adc, .rep = 0, .repe = 0, .suffix = 0, .modrm = 1, .fct1 = 26, .str1 = 0, .off1_… 148 …{ .mnemonic = MNE_adc, .rep = 0, .repe = 0, .suffix = 0, .modrm = 1, .fct1 = 24, .str1 = 0, .off1_… 149 …{ .mnemonic = MNE_add, .rep = 0, .repe = 0, .suffix = 0, .modrm = 0, .fct1 = 15, .str1 = 0, .off1_… [all …]
|
| D | x86_64_dis.h | 141 …{ .mnemonic = MNE_adc, .rep = 0, .repe = 0, .suffix = 0, .modrm = 0, .fct1 = 15, .str1 = 0, .off1_… 142 …{ .mnemonic = MNE_adc, .rep = 0, .repe = 0, .suffix = 1, .modrm = 1, .fct1 = 15, .str1 = 0, .off1_… 143 …{ .mnemonic = MNE_adc, .rep = 0, .repe = 0, .suffix = 1, .modrm = 1, .fct1 = 19, .str1 = 0, .off1_… 144 …{ .mnemonic = MNE_adc, .rep = 0, .repe = 0, .suffix = 0, .modrm = 1, .fct1 = 27, .str1 = 0, .off1_… 145 …{ .mnemonic = MNE_adc, .rep = 0, .repe = 0, .suffix = 0, .modrm = 1, .fct1 = 25, .str1 = 0, .off1_… 146 …{ .mnemonic = MNE_add, .rep = 0, .repe = 0, .suffix = 0, .modrm = 0, .fct1 = 15, .str1 = 0, .off1_… 147 …{ .mnemonic = MNE_add, .rep = 0, .repe = 0, .suffix = 1, .modrm = 1, .fct1 = 15, .str1 = 0, .off1_… 148 …{ .mnemonic = MNE_add, .rep = 0, .repe = 0, .suffix = 1, .modrm = 1, .fct1 = 19, .str1 = 0, .off1_… 149 …{ .mnemonic = MNE_add, .rep = 0, .repe = 0, .suffix = 0, .modrm = 1, .fct1 = 27, .str1 = 0, .off1_… 150 …{ .mnemonic = MNE_add, .rep = 0, .repe = 0, .suffix = 0, .modrm = 1, .fct1 = 25, .str1 = 0, .off1_… [all …]
|
| /third_party/rust/crates/memchr/src/memmem/ |
| D | twoway.rs | 64 /// to beginning of either the minimal or maximal suffix in needle. (N.B. 86 let min_suffix = Suffix::forward(needle, SuffixKind::Minimal); in new() 87 let max_suffix = Suffix::forward(needle, SuffixKind::Maximal); in new() 253 let min_suffix = Suffix::reverse(needle, SuffixKind::Minimal); in new() 254 let max_suffix = Suffix::reverse(needle, SuffixKind::Maximal); in new() 398 /// suffix, along with the period of that suffix. It turns out that the period 399 /// of that suffix is a lower bound on the period of the needle itself. 403 /// `x = uv` and `v` is the lexicographic maximal suffix of `v`. The lower 406 /// where `u` is a suffix of `v[0..period(v)]`. 435 /// The lower bound on the period is then the period of the chosen suffix. [all …]
|
| /third_party/ffmpeg/libavcodec/ppc/ |
| D | fft_altivec.S | 230 .macro PASS interleave, suffix argument 231 fft_pass\suffix\()_altivec: 397 .macro DECL_FFT suffix, bits, n, n2, n4 398 fft\n\suffix\()_altivec: 411 b fft_pass\suffix\()_altivec 414 .macro DECL_FFTS interleave, suffix argument 416 def_fft4 \suffix 417 def_fft8 \suffix 418 def_fft16 \suffix 419 PASS \interleave, \suffix [all …]
|
| /third_party/skia/third_party/externals/spirv-tools/test/tools/ |
| D | placeholder.py | 63 def __init__(self, source, suffix, assembly_substr=None): argument 65 assert isinstance(suffix, str) 67 self.suffix = suffix 80 dir=testcase.directory, suffix=self.suffix) 94 def __init__(self, content, suffix): argument 96 assert isinstance(suffix, str) 98 self.suffix = suffix 108 dir=testcase.directory, suffix=self.suffix) 122 def __init__(self, source, suffix, assembly_substr=None): argument 124 assert isinstance(suffix, str) [all …]
|
| /third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/tools/ |
| D | placeholder.py | 63 def __init__(self, source, suffix, assembly_substr=None): argument 65 assert isinstance(suffix, str) 67 self.suffix = suffix 80 dir=testcase.directory, suffix=self.suffix) 94 def __init__(self, content, suffix): argument 96 assert isinstance(suffix, str) 98 self.suffix = suffix 108 dir=testcase.directory, suffix=self.suffix) 122 def __init__(self, source, suffix, assembly_substr=None): argument 124 assert isinstance(suffix, str) [all …]
|
| /third_party/spirv-tools/test/tools/ |
| D | placeholder.py | 63 def __init__(self, source, suffix, assembly_substr=None): argument 65 assert isinstance(suffix, str) 67 self.suffix = suffix 80 dir=testcase.directory, suffix=self.suffix) 94 def __init__(self, content, suffix): argument 96 assert isinstance(suffix, str) 98 self.suffix = suffix 108 dir=testcase.directory, suffix=self.suffix) 122 def __init__(self, source, suffix, assembly_substr=None): argument 124 assert isinstance(suffix, str) [all …]
|
| /third_party/rust/crates/syn/src/ |
| D | lit.rs | 82 suffix: Box<str>, field 95 suffix: Box<str>, field 110 suffix: Box<str>, field 128 suffix: Box::<str>::default(), in new() 233 let suffix = self.suffix(); in parse_with() localVariable 234 if !suffix.is_empty() { in parse_with() 237 format!("unexpected suffix `{}` on string literal", suffix), in parse_with() 252 pub fn suffix(&self) -> &str { in suffix() method 253 &self.repr.suffix in suffix() 268 suffix: Box::<str>::default(), in new() [all …]
|
| /third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/impl/data/ |
| D | pfd_hi.xml | 77 <suffix> पहले</suffix> 82 <suffix> बाद</suffix> 86 <suffix> से कम</suffix> 90 <suffix> से कम पहले</suffix> 94 <suffix> से कम from now</suffix> 98 <suffix> से ज़्यादा</suffix> 102 <suffix> से ज़्यादा ago</suffix> 106 <suffix> से ज़्यादा from now</suffix>
|
| D | pfd_ja.xml | 97 <suffix>前</suffix> 102 <suffix>後</suffix> 106 <suffix>以内</suffix> 111 <suffix>以内</suffix> 116 <suffix>以内</suffix> 120 <suffix>以上</suffix> 124 <suffix>以上前</suffix> 129 <suffix>以上後</suffix>
|
| /third_party/icu/ohos_icu4j/resources/ohos/global/icu/impl/duration/impl/data/ |
| D | pfd_hi.xml | 77 <suffix> पहले</suffix> 82 <suffix> बाद</suffix> 86 <suffix> से कम</suffix> 90 <suffix> से कम पहले</suffix> 94 <suffix> से कम from now</suffix> 98 <suffix> से ज़्यादा</suffix> 102 <suffix> से ज़्यादा ago</suffix> 106 <suffix> से ज़्यादा from now</suffix>
|
| D | pfd_ja.xml | 97 <suffix>前</suffix> 102 <suffix>後</suffix> 106 <suffix>以内</suffix> 111 <suffix>以内</suffix> 116 <suffix>以内</suffix> 120 <suffix>以上</suffix> 124 <suffix>以上前</suffix> 129 <suffix>以上後</suffix>
|
| /third_party/node/deps/v8/infra/testing/ |
| D | builders.pyl | 11 # * suffix 85 'suffix': 'noavx', 90 'suffix': 'noavx', 96 'suffix': 'noavx', 161 {'name': 'v8testing', 'suffix': 'isolates', 'test_args': ['--isolates'], 'shards': 2}, 179 'suffix': 'nosse3', 187 'suffix': 'nosse3', 196 'suffix': 'nosse3', 206 'suffix': 'nossse3', 214 'suffix': 'nossse3', [all …]
|
| /third_party/skia/third_party/externals/tint/src/writer/msl/ |
| D | generator_impl_type_test.cc | 278 // ALL_FIELDS() calls the macro FIELD(ADDR, TYPE, NAME, SUFFIX) in TEST_F() 281 FIELD(0x0000, int, a, /*NO SUFFIX*/) \ in TEST_F() 283 FIELD(0x0080, float, b, /*NO SUFFIX*/) \ in TEST_F() 285 FIELD(0x0100, float2, c, /*NO SUFFIX*/) \ in TEST_F() 286 FIELD(0x0108, uint, d, /*NO SUFFIX*/) \ in TEST_F() 288 FIELD(0x0110, packed_float3, e, /*NO SUFFIX*/) \ in TEST_F() 289 FIELD(0x011c, uint, f, /*NO SUFFIX*/) \ in TEST_F() 290 FIELD(0x0120, float4, g, /*NO SUFFIX*/) \ in TEST_F() 291 FIELD(0x0130, uint, h, /*NO SUFFIX*/) \ in TEST_F() 293 FIELD(0x0138, float2x2, i, /*NO SUFFIX*/) \ in TEST_F() [all …]
|