/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
D | IntlTestDecimalFormatSymbols.java | 43 DecimalFormatSymbols fr = new DecimalFormatSymbols(Locale.FRENCH); in TestSymbols() local 47 if(en.equals(fr)) { in TestSymbols() 68 fr.setZeroDigit(zero); in TestSymbols() 69 if(fr.getZeroDigit() != en.getZeroDigit()) { in TestSymbols() 74 fr.setDigitStrings(digits); in TestSymbols() 75 if (!Arrays.equals(fr.getDigitStrings(), en.getDigitStrings())) { in TestSymbols() 80 fr.setSignificantDigit(sigDigit); in TestSymbols() 81 if(fr.getSignificantDigit() != en.getSignificantDigit()) { in TestSymbols() 86 fr.setCurrency(currency); in TestSymbols() 87 if (!fr.getCurrency().equals(currency)){ in TestSymbols() [all …]
|
D | IntlTestDecimalFormatSymbolsC.java | 38 DecimalFormatSymbols fr = new DecimalFormatSymbols(Locale.FRENCH); in TestSymbols() local 41 if (en.equals(fr)) { in TestSymbols() 48 fr.setZeroDigit(zero); in TestSymbols() 49 if (fr.getZeroDigit() != en.getZeroDigit()) { in TestSymbols() 54 fr.setGroupingSeparator(group); in TestSymbols() 55 if (fr.getGroupingSeparator() != en.getGroupingSeparator()) { in TestSymbols() 60 fr.setDecimalSeparator(decimal); in TestSymbols() 61 if (fr.getDecimalSeparator() != en.getDecimalSeparator()) { in TestSymbols() 66 fr.setPerMill(perMill); in TestSymbols() 67 if (fr.getPerMill() != en.getPerMill()) { in TestSymbols() [all …]
|
D | IntlTestDateFormatSymbols.java | 131 DateFormatSymbols fr = new DateFormatSymbols(Locale.FRENCH); in TestSymbols() local 138 if(en.equals(fr)) { in TestSymbols() 148 fr.setEras(erasEn); in TestSymbols() 149 fr.setNarrowEras(erasNarrowEn); in TestSymbols() 150 final String[] erasFr = fr.getEras(); in TestSymbols() 151 final String[] erasNarrowFr = fr.getNarrowEras(); in TestSymbols() 177 fr.setMonths(months); in TestSymbols() 178 final String[] months1 = fr.getMonths(); in TestSymbols() 192 fr.setShortMonths(shortMonths); in TestSymbols() 193 final String[] shortMonths1 = fr.getShortMonths(); in TestSymbols() [all …]
|
D | IntlTestNumberFormatAPI.java | 50 NumberFormat fr = NumberFormat.getInstance(Locale.FRENCH); in TestAPI() local 125 double d1 = ((Number)fr.parseObject(text, pos)).doubleValue(); in TestAPI() 131 double d2 = fr.parse(text, pos01).doubleValue(); in TestAPI() 139 d3 = fr.parse(text).doubleValue(); in TestAPI() 163 fr.setParseIntegerOnly( def.isParseIntegerOnly() ); in TestAPI() 164 if(fr.isParseIntegerOnly() != def.isParseIntegerOnly() ) { in TestAPI() 168 fr.setGroupingUsed( def.isGroupingUsed() ); in TestAPI() 169 if(fr.isGroupingUsed() != def.isGroupingUsed() ) { in TestAPI() 173 fr.setMaximumIntegerDigits( def.getMaximumIntegerDigits() ); in TestAPI() 174 if(fr.getMaximumIntegerDigits() != def.getMaximumIntegerDigits() ) { in TestAPI() [all …]
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/ |
D | IntlTestDecimalFormatSymbols.java | 46 DecimalFormatSymbols fr = new DecimalFormatSymbols(Locale.FRENCH); in TestSymbols() local 50 if(en.equals(fr)) { in TestSymbols() 71 fr.setZeroDigit(zero); in TestSymbols() 72 if(fr.getZeroDigit() != en.getZeroDigit()) { in TestSymbols() 77 fr.setDigitStrings(digits); in TestSymbols() 78 if (!Arrays.equals(fr.getDigitStrings(), en.getDigitStrings())) { in TestSymbols() 83 fr.setSignificantDigit(sigDigit); in TestSymbols() 84 if(fr.getSignificantDigit() != en.getSignificantDigit()) { in TestSymbols() 89 fr.setCurrency(currency); in TestSymbols() 90 if (!fr.getCurrency().equals(currency)){ in TestSymbols() [all …]
|
D | IntlTestDecimalFormatSymbolsC.java | 41 DecimalFormatSymbols fr = new DecimalFormatSymbols(Locale.FRENCH); in TestSymbols() local 44 if (en.equals(fr)) { in TestSymbols() 51 fr.setZeroDigit(zero); in TestSymbols() 52 if (fr.getZeroDigit() != en.getZeroDigit()) { in TestSymbols() 57 fr.setGroupingSeparator(group); in TestSymbols() 58 if (fr.getGroupingSeparator() != en.getGroupingSeparator()) { in TestSymbols() 63 fr.setDecimalSeparator(decimal); in TestSymbols() 64 if (fr.getDecimalSeparator() != en.getDecimalSeparator()) { in TestSymbols() 69 fr.setPerMill(perMill); in TestSymbols() 70 if (fr.getPerMill() != en.getPerMill()) { in TestSymbols() [all …]
|
D | IntlTestDateFormatSymbols.java | 134 DateFormatSymbols fr = new DateFormatSymbols(Locale.FRENCH); in TestSymbols() local 141 if(en.equals(fr)) { in TestSymbols() 151 fr.setEras(erasEn); in TestSymbols() 152 fr.setNarrowEras(erasNarrowEn); in TestSymbols() 153 final String[] erasFr = fr.getEras(); in TestSymbols() 154 final String[] erasNarrowFr = fr.getNarrowEras(); in TestSymbols() 180 fr.setMonths(months); in TestSymbols() 181 final String[] months1 = fr.getMonths(); in TestSymbols() 195 fr.setShortMonths(shortMonths); in TestSymbols() 196 final String[] shortMonths1 = fr.getShortMonths(); in TestSymbols() [all …]
|
D | IntlTestNumberFormatAPI.java | 53 NumberFormat fr = NumberFormat.getInstance(Locale.FRENCH); in TestAPI() local 128 double d1 = ((Number)fr.parseObject(text, pos)).doubleValue(); in TestAPI() 134 double d2 = fr.parse(text, pos01).doubleValue(); in TestAPI() 142 d3 = fr.parse(text).doubleValue(); in TestAPI() 166 fr.setParseIntegerOnly( def.isParseIntegerOnly() ); in TestAPI() 167 if(fr.isParseIntegerOnly() != def.isParseIntegerOnly() ) { in TestAPI() 171 fr.setGroupingUsed( def.isGroupingUsed() ); in TestAPI() 172 if(fr.isGroupingUsed() != def.isGroupingUsed() ) { in TestAPI() 176 fr.setMaximumIntegerDigits( def.getMaximumIntegerDigits() ); in TestAPI() 177 if(fr.getMaximumIntegerDigits() != def.getMaximumIntegerDigits() ) { in TestAPI() [all …]
|
/external/clang/test/CodeGenCXX/ |
D | lvalue-bitcasts.cpp | 7 void reinterpret_cast_test(int &ir, float &fr, X &xr) { in reinterpret_cast_test() argument 11 ir = reinterpret_cast<int&>(fr); in reinterpret_cast_test() 19 fr = reinterpret_cast<float&>(ir); in reinterpret_cast_test() 23 fr = reinterpret_cast<float&>(xr); in reinterpret_cast_test() 31 xr = reinterpret_cast<X&>(fr); in reinterpret_cast_test() 43 cfr = reinterpret_cast<_Complex float&>(fr); in reinterpret_cast_test() 52 void c_cast(int &ir, float &fr, X &xr) { in c_cast() argument 56 ir = (int&)fr; in c_cast() 64 fr = (float&)ir; in c_cast() 68 fr = (float&)xr; in c_cast() [all …]
|
/external/llvm-project/clang/test/CodeGenCXX/ |
D | lvalue-bitcasts.cpp | 7 void reinterpret_cast_test(int &ir, float &fr, X &xr) { in reinterpret_cast_test() argument 11 ir = reinterpret_cast<int&>(fr); in reinterpret_cast_test() 19 fr = reinterpret_cast<float&>(ir); in reinterpret_cast_test() 23 fr = reinterpret_cast<float&>(xr); in reinterpret_cast_test() 31 xr = reinterpret_cast<X&>(fr); in reinterpret_cast_test() 43 cfr = reinterpret_cast<_Complex float&>(fr); in reinterpret_cast_test() 52 void c_cast(int &ir, float &fr, X &xr) { in c_cast() argument 56 ir = (int&)fr; in c_cast() 64 fr = (float&)ir; in c_cast() 68 fr = (float&)xr; in c_cast() [all …]
|
/external/mesa3d/prebuilt-intermediates/xmlpool/ |
D | options.h | 62 DRI_CONF_DESC(fr,"Debogage") \ 71 DRI_CONF_DESC(fr,"Enable flushing batchbuffer after each draw call") \ 81 DRI_CONF_DESC(fr,"Enable flushing GPU caches with each draw call") \ 91 DRI_CONF_DESC(fr,"Disable throttling on first batch after flush") \ 101 DRI_CONF_DESC(fr,"Force GLSL extension default behavior to 'warn'") \ 111 DRI_CONF_DESC(fr,"Disable dual source blending") \ 126 DRI_CONF_DESC(fr,"Identify dual color blending sources by location rather than index") \ 136 DRI_CONF_DESC(fr,"Disable backslash-based line continuations in GLSL source") \ 146 … DRI_CONF_DESC(fr,"Force a default GLSL version for shaders that lack an explicit #version line") \ 156 DRI_CONF_DESC(fr,"Allow GLSL #extension directives in the middle of shaders") \ [all …]
|
/external/arm-trusted-firmware/common/backtrace/ |
D | backtrace.c | 157 static bool is_valid_frame_record(struct frame_record *fr) in is_valid_frame_record() argument 159 return is_valid_object((uintptr_t)fr, sizeof(struct frame_record)); in is_valid_frame_record() 166 static struct frame_record *adjust_frame_record(struct frame_record *fr) in adjust_frame_record() argument 169 return fr; in adjust_frame_record() 171 return (struct frame_record *)((uintptr_t)fr - 4U); in adjust_frame_record() 175 static void unwind_stack(struct frame_record *fr, uintptr_t current_pc, in unwind_stack() argument 182 if (!is_valid_frame_record(fr)) { in unwind_stack() 184 fr); in unwind_stack() 188 if (fr->return_addr != link_register) { in unwind_stack() 190 fr); in unwind_stack() [all …]
|
/external/icu/icu4c/source/test/testdata/ |
D | localeMatcherTest.txt | 166 @supported=fr, en, en-GB, es-419, es-MX, es 188 @supported=fr, en-GB, en 191 fr >> fr 192 ja >> fr # return first if no match 197 fr >> fr 198 ja >> fr 284 @supported=fr, i-klingon, en-Latn-US 291 @supported=fr, en-GB, ja, es-ES, es-MX 298 @supported=fr, en-GB, ja, es-ES, es-MX 303 de, zh >> fr [all …]
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/data/ |
D | localeMatcherTest.txt | 166 @supported=fr, en, en-GB, es-419, es-MX, es 188 @supported=fr, en-GB, en 191 fr >> fr 192 ja >> fr # return first if no match 197 fr >> fr 198 ja >> fr 284 @supported=fr, i-klingon, en-Latn-US 291 @supported=fr, en-GB, ja, es-ES, es-MX 298 @supported=fr, en-GB, ja, es-ES, es-MX 303 de, zh >> fr [all …]
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/data/ |
D | localeMatcherTest.txt | 166 @supported=fr, en, en-GB, es-419, es-MX, es 188 @supported=fr, en-GB, en 191 fr >> fr 192 ja >> fr # return first if no match 197 fr >> fr 198 ja >> fr 284 @supported=fr, i-klingon, en-Latn-US 291 @supported=fr, en-GB, ja, es-ES, es-MX 298 @supported=fr, en-GB, ja, es-ES, es-MX 303 de, zh >> fr [all …]
|
/external/libnl/lib/fib_lookup/ |
D | lookup.c | 77 struct fib_result_nl *fr; in result_msg_parser() local 91 fr = nlmsg_data(n); in result_msg_parser() 92 addr = nl_addr_build(AF_INET, &fr->fl_addr, 4); in result_msg_parser() 100 flnl_request_set_fwmark(res->fr_req, fr->fl_fwmark); in result_msg_parser() 101 flnl_request_set_tos(res->fr_req, fr->fl_tos); in result_msg_parser() 102 flnl_request_set_scope(res->fr_req, fr->fl_scope); in result_msg_parser() 103 flnl_request_set_table(res->fr_req, fr->tb_id_in); in result_msg_parser() 105 res->fr_table_id = fr->tb_id; in result_msg_parser() 106 res->fr_prefixlen = fr->prefixlen; in result_msg_parser() 107 res->fr_nh_sel = fr->nh_sel; in result_msg_parser() [all …]
|
/external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/data/ |
D | localeMatcherTest.txt | 8 # • The supported may have the threshold distance reset as a first item, eg 50, en, fr 73 fr, en, en-GB, es-419, es-MX, es ; en-NZ ; en-GB 74 fr, en, en-GB, es-419, es-MX, es ; es-ES ; es 75 fr, en, en-GB, es-419, es-MX, es ; es-AR ; es-419 76 fr, en, en-GB, es-419, es-MX, es ; es-MX ; es-MX 86 fr, en-GB, en ; en-GB ; en-GB 87 fr, en-GB, en ; en ; en 88 fr, en-GB, en ; fr ; fr 89 fr, en-GB, en ; ja ; fr # return first if no match 152 fr, i-klingon, en-Latn-US ; en-GB-oed ; en-Latn-US [all …]
|
/external/cldr/tools/java/org/unicode/cldr/util/data/ |
D | language_list.txt | 138 fr-AD French Andorra 139 fr-BE French Belgium 140 fr-BF French Burkina Faso 141 fr-BI French Burundi 142 fr-BJ French Benin 143 fr-CA French Canada 144 fr-CD French Democratic Republic of Congo 145 fr-CF French Central African Republic 146 fr-CG French Congo 147 fr-CH French Switzerland [all …]
|
/external/icu/icu4c/source/test/intltest/ |
D | tsdtfmsy.cpp | 175 DateFormatSymbols fr(Locale::getFrench(), status); in TestSymbols() local 195 if(en == fr || ! (en != fr) ) { in TestSymbols() 224 fr.setEras(eras, count); in TestSymbols() 225 if( *en.getEras(count) != *fr.getEras(count)) { in TestSymbols() 230 fr.setMonths(months, count); in TestSymbols() 231 if( *en.getMonths(count) != *fr.getMonths(count)) { in TestSymbols() 236 fr.setShortMonths(shortMonths, count); in TestSymbols() 237 if( *en.getShortMonths(count) != *fr.getShortMonths(count)) { in TestSymbols() 256 fr.setMonths(narrowMonths, count, DateFormatSymbols::FORMAT,DateFormatSymbols::NARROW); in TestSymbols() 258 *fr.getMonths(count,DateFormatSymbols::FORMAT,DateFormatSymbols::NARROW )) { in TestSymbols() [all …]
|
D | tsdcfmsy.cpp | 38 DecimalFormatSymbols fr(Locale::getFrench(), status); in testSymbols() local 51 if(en == fr || ! (en != fr) ) { in testSymbols() 58 fr.setSymbol(DecimalFormatSymbols::kZeroDigitSymbol, zero); in testSymbols() 59 …if(fr.getSymbol(DecimalFormatSymbols::kZeroDigitSymbol) != en.getSymbol(DecimalFormatSymbols::kZer… in testSymbols() 64 fr.setSymbol(DecimalFormatSymbols::kGroupingSeparatorSymbol, group); in testSymbols() 65 …if(fr.getSymbol(DecimalFormatSymbols::kGroupingSeparatorSymbol) != en.getSymbol(DecimalFormatSymbo… in testSymbols() 70 fr.setSymbol(DecimalFormatSymbols::kDecimalSeparatorSymbol, decimal); in testSymbols() 71 …if(fr.getSymbol(DecimalFormatSymbols::kDecimalSeparatorSymbol) != en.getSymbol(DecimalFormatSymbol… in testSymbols() 76 fr.setSymbol(DecimalFormatSymbols::kPerMillSymbol, perMill); in testSymbols() 77 …if(fr.getSymbol(DecimalFormatSymbols::kPerMillSymbol) != en.getSymbol(DecimalFormatSymbols::kPerMi… in testSymbols() [all …]
|
/external/icu/icu4c/source/layoutex/ |
D | plruns.cpp | 37 FontRuns *fr = (FontRuns *) fontRuns; in pl_closeFontRuns() local 39 delete fr; in pl_closeFontRuns() 45 const FontRuns *fr = (const FontRuns *) fontRuns; in pl_getFontRunCount() local 47 if (fr == NULL) { in pl_getFontRunCount() 51 return fr->getCount(); in pl_getFontRunCount() 57 FontRuns *fr = (FontRuns *) fontRuns; in pl_resetFontRuns() local 59 if (fr != NULL) { in pl_resetFontRuns() 60 fr->reset(); in pl_resetFontRuns() 67 const FontRuns *fr = (const FontRuns *) fontRuns; in pl_getFontRunLastLimit() local 69 if (fr == NULL) { in pl_getFontRunLastLimit() [all …]
|
/external/python/cpython2/Lib/plat-mac/ |
D | aetypes.py | 411 def __init__(self, want, form, seld, fr = None): argument 415 self.fr = fr 419 if self.fr: 420 s = s + ", %r)" % (self.fr,) 429 'from': self.fr}, 439 def __init__(self, which, fr = None, want='prop'): argument 440 ObjectSpecifier.__init__(self, want, 'prop', mktype(which), fr) 443 if self.fr: 444 return "Property(%r, %r)" % (self.seld.type, self.fr) 449 if self.fr: [all …]
|
D | findertools.py | 141 …bj_00 = aetypes.ObjectSpecifier(want=aetypes.Type('cobj'), form="alis", seld=object_alias, fr=None) 142 …pes.ObjectSpecifier(want=aetypes.Type('prop'), form="prop", seld=aetypes.Type('comt'), fr=aeobj_00) 155 …bj_00 = aetypes.ObjectSpecifier(want=aetypes.Type('cobj'), form="alis", seld=object_alias, fr=None) 156 …pes.ObjectSpecifier(want=aetypes.Type('prop'), form="prop", seld=aetypes.Type('comt'), fr=aeobj_00) 179 …ectSpecifier(want=aetypes.Type('prcs'), form="indx", seld=aetypes.Unknown('abso', "all "), fr=None) 197 …ectSpecifier(want=aetypes.Type('prcs'), form="indx", seld=aetypes.Unknown('abso', "all "), fr=None) 198 …ypes.ObjectSpecifier(want=aetypes.Type('prop'), form="prop", seld=aetypes.Type('fcrt'), fr=aeobj_0) 251 …aeobj_00 = aetypes.ObjectSpecifier(want=aetypes.Type('prcs'), form="name", seld=processname, fr=No… 252 …s.ObjectSpecifier(want=aetypes.Type('prop'), form="prop", seld=aetypes.Type(property), fr=aeobj_00) 273 …aeobj_0 = aetypes.ObjectSpecifier(want=aetypes.Type('cfol'), form="alis", seld=object_alias, fr=No… [all …]
|
/external/zstd/tests/ |
D | decodecorpus.c | 1169 static void initFrame(frame_t* fr) in initFrame() argument 1171 memset(fr, 0, sizeof(*fr)); in initFrame() 1172 fr->data = fr->dataStart = FRAME_BUFFER; in initFrame() 1173 fr->dataEnd = FRAME_BUFFER + sizeof(FRAME_BUFFER); in initFrame() 1174 fr->src = fr->srcStart = CONTENT_BUFFER; in initFrame() 1175 fr->srcEnd = CONTENT_BUFFER + sizeof(CONTENT_BUFFER); in initFrame() 1178 fr->stats.rep[0] = 1; in initFrame() 1179 fr->stats.rep[1] = 4; in initFrame() 1180 fr->stats.rep[2] = 8; in initFrame() 1237 static U32 generateFrame(U32 seed, frame_t* fr, dictInfo info) in generateFrame() argument [all …]
|
/external/llvm-project/llvm/test/Transforms/CodeGenPrepare/X86/ |
D | freeze-brcond.ll | 19 %fr = freeze i1 %c 20 br i1 %fr, label %A, label %B 42 %fr = freeze i1 %c 43 br i1 %fr, label %A, label %B 64 %fr = freeze i1 %c 65 br i1 %fr, label %A, label %B 81 %fr = freeze i1 %c 82 ret i1 %fr 93 %fr = freeze i1 %c 94 ret i1 %fr [all …]
|