Searched refs:fr (Results 1 - 25 of 179) sorted by relevance

12345678

/external/clang/test/CodeGenCXX/
H A Dlvalue-bitcasts.cpp7 void reinterpret_cast_test(int &ir, float &fr, X &xr) { argument
11 ir = reinterpret_cast<int&>(fr);
19 fr = reinterpret_cast<float&>(ir);
23 fr = reinterpret_cast<float&>(xr);
31 xr = reinterpret_cast<X&>(fr);
43 cfr = reinterpret_cast<_Complex float&>(fr);
52 void c_cast(int &ir, float &fr, X &xr) { argument
56 ir = (int&)fr;
64 fr = (float&)ir;
68 fr
97 functional_cast(int &ir, float &fr, X &xr) argument
[all...]
/external/svox/pico/lang/
H A DPicoLangFrFrInSystem.mk2 # Installation of fr-FR for the Pico TTS engine in the system image
4 # Include this file in a product makefile to include the language files for fr-FR
10 external/svox/pico/lang/fr-FR_nk0_sg.bin:system/tts/lang_pico/fr-FR_nk0_sg.bin \
11 external/svox/pico/lang/fr-FR_ta.bin:system/tts/lang_pico/fr-FR_ta.bin
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
H A DIntlTestDecimalFormatSymbols.java34 DecimalFormatSymbols fr = new DecimalFormatSymbols(Locale.FRENCH);
38 if(en.equals(fr)) {
45 fr.setZeroDigit(zero);
46 if(fr.getZeroDigit() != en.getZeroDigit()) {
51 fr.setSignificantDigit(sigDigit);
52 if(fr.getSignificantDigit() != en.getSignificantDigit()) {
57 fr.setCurrency(currency);
58 if (!fr.getCurrency().equals(currency)){
63 fr.setGroupingSeparator(group);
64 if(fr
[all...]
H A DIntlTestDecimalFormatSymbolsC.java34 DecimalFormatSymbols fr = new DecimalFormatSymbols(Locale.FRENCH);
37 if (en.equals(fr)) {
44 fr.setZeroDigit(zero);
45 if (fr.getZeroDigit() != en.getZeroDigit()) {
50 fr.setGroupingSeparator(group);
51 if (fr.getGroupingSeparator() != en.getGroupingSeparator()) {
56 fr.setDecimalSeparator(decimal);
57 if (fr.getDecimalSeparator() != en.getDecimalSeparator()) {
62 fr.setPerMill(perMill);
63 if (fr
[all...]
H A DIntlTestNumberFormatAPI.java45 NumberFormat fr = NumberFormat.getInstance(Locale.FRENCH);
120 double d1 = ((Number)fr.parseObject(text, pos)).doubleValue();
126 double d2 = fr.parse(text, pos01).doubleValue();
134 d3 = fr.parse(text).doubleValue();
158 fr.setParseIntegerOnly( def.isParseIntegerOnly() );
159 if(fr.isParseIntegerOnly() != def.isParseIntegerOnly() ) {
163 fr.setGroupingUsed( def.isGroupingUsed() );
164 if(fr.isGroupingUsed() != def.isGroupingUsed() ) {
168 fr.setMaximumIntegerDigits( def.getMaximumIntegerDigits() );
169 if(fr
[all...]
H A DIntlTestDateFormatSymbols.java122 DateFormatSymbols fr = new DateFormatSymbols(Locale.FRENCH);
129 if(en.equals(fr)) {
137 fr.setEras(eras);
138 final String[] eras1 = fr.getEras();
153 fr.setMonths(months);
154 final String[] months1 = fr.getMonths();
168 fr.setShortMonths(shortMonths);
169 final String[] shortMonths1 = fr.getShortMonths();
213 fr.setMonths(narrowMonths,DateFormatSymbols.FORMAT,DateFormatSymbols.NARROW);
214 final String[] narrowMonths1 = fr
[all...]
/external/clang/test/CXX/over/over.match/over.match.best/
H A Dp1.cpp12 float &fr = f0(vp, 0); local
/external/doclava/
H A Dmoe.sh23 rm -fr res/ src/ && svn export --force https://doclava.googlecode.com/svn/trunk/ . && rm -fr lib/ samples/ src/com/google/doclava/DoclavaTask.java
/external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
H A Dp7.cpp26 float &fr = check_const_int(ic); local
31 float &fr = check_const_int(ic); local
36 float &fr = check_const_int(ic); local
41 float &fr = check_const_int(ic); local
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DANTLRFileStream.cs106 StreamReader fr = null;
113 fr = new StreamReader(fileName, encoding);
115 fr = new StreamReader(fileName, Encoding.Default);
116 n = fr.Read((Char[])data, 0, data.Length);
120 if (fr != null)
122 fr.Close();
/external/icu/icu4c/source/test/intltest/
H A Dtsdcfmsy.cpp34 DecimalFormatSymbols fr(Locale::getFrench(), status);
47 if(en == fr || ! (en != fr) ) {
54 fr.setSymbol(DecimalFormatSymbols::kZeroDigitSymbol, zero);
55 if(fr.getSymbol(DecimalFormatSymbols::kZeroDigitSymbol) != en.getSymbol(DecimalFormatSymbols::kZeroDigitSymbol)) {
60 fr.setSymbol(DecimalFormatSymbols::kGroupingSeparatorSymbol, group);
61 if(fr.getSymbol(DecimalFormatSymbols::kGroupingSeparatorSymbol) != en.getSymbol(DecimalFormatSymbols::kGroupingSeparatorSymbol)) {
66 fr.setSymbol(DecimalFormatSymbols::kDecimalSeparatorSymbol, decimal);
67 if(fr.getSymbol(DecimalFormatSymbols::kDecimalSeparatorSymbol) != en.getSymbol(DecimalFormatSymbols::kDecimalSeparatorSymbol)) {
72 fr
[all...]
H A Dtsdtfmsy.cpp172 DateFormatSymbols fr(Locale::getFrench(), status);
192 if(en == fr || ! (en != fr) ) {
221 fr.setEras(eras, count);
222 if( *en.getEras(count) != *fr.getEras(count)) {
227 fr.setMonths(months, count);
228 if( *en.getMonths(count) != *fr.getMonths(count)) {
233 fr.setShortMonths(shortMonths, count);
234 if( *en.getShortMonths(count) != *fr.getShortMonths(count)) {
253 fr
[all...]
H A Dnmfmapts.cpp75 NumberFormat *fr = NumberFormat::createInstance(Locale::getFrench(), status); local
153 if (fr != NULL)
161 fr->parseObject(text, result1, pos);
167 fr->parse(text, result2, pos01);
174 fr->parse(text, result3, status);
185 if (fr != NULL && def != NULL)
197 fr->setParseIntegerOnly( def->isParseIntegerOnly() );
198 if(fr->isParseIntegerOnly() != def->isParseIntegerOnly() ) {
202 fr->setGroupingUsed( def->isGroupingUsed() );
203 if(fr
[all...]
/external/libnl/lib/fib_lookup/
H A Dlookup.c74 struct fib_result_nl *fr; local
88 fr = nlmsg_data(n);
89 addr = nl_addr_build(AF_INET, &fr->fl_addr, 4);
97 flnl_request_set_fwmark(res->fr_req, fr->fl_fwmark);
98 flnl_request_set_tos(res->fr_req, fr->fl_tos);
99 flnl_request_set_scope(res->fr_req, fr->fl_scope);
100 flnl_request_set_table(res->fr_req, fr->tb_id_in);
102 res->fr_table_id = fr->tb_id;
103 res->fr_prefixlen = fr->prefixlen;
104 res->fr_nh_sel = fr
215 struct fib_result_nl fr = {0}; local
[all...]
/external/mesa3d/src/mesa/drivers/dri/common/xmlpool/
H A Doptions.h61 DRI_CONF_DESC(fr,"Debogage") \
70 DRI_CONF_DESC(fr,"Désactiver l'accélération 3D") \
80 DRI_CONF_DESC(fr,"Afficher les boîtes de performance") \
92 DRI_CONF_DESC(fr,"Qualité d'image") \
130 DRI_CONF_DESC_BEGIN(fr,"Profondeur de texture") \
150 DRI_CONF_DESC(fr,"Valeur maximale initiale pour le filtrage anisotropique de texture") \
160 DRI_CONF_DESC(fr,"Interdire le LOD bias negatif") \
170 DRI_CONF_DESC(fr,"Activer la compression de texture S3TC même si le support logiciel est absent") \
194 DRI_CONF_DESC_BEGIN(fr,"Technique de réduction de couleurs") \
224 DRI_CONF_DESC_BEGIN(fr,"
[all...]
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.conv/
H A Dp3.cpp29 const float &fr = ar; local
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_tools_windows/tools/
H A Dbuildall.sh7 ./buildpkb.sh fr FR nk0
14 ./buildbin.sh fr-FR nk0
/external/icu/icu4c/source/layoutex/
H A Dplruns.cpp35 FontRuns *fr = (FontRuns *) fontRuns; local
37 delete fr;
43 const FontRuns *fr = (const FontRuns *) fontRuns; local
45 if (fr == NULL) {
49 return fr->getCount();
55 FontRuns *fr = (FontRuns *) fontRuns; local
57 if (fr != NULL) {
58 fr->reset();
65 const FontRuns *fr = (const FontRuns *) fontRuns; local
67 if (fr
78 const FontRuns *fr = (const FontRuns *) fontRuns; local
91 const FontRuns *fr = (const FontRuns *) fontRuns; local
105 FontRuns *fr = (FontRuns *) fontRuns; local
[all...]
/external/clang/test/SemaTemplate/
H A Dtemp_func_order.cpp10 float &fr = f0(ip); local
39 float &fr = f2(aif); local
51 float &fr = f3(i, fp); local
84 float &fr = f6(ic, ic); local
H A Ddefault-arguments-cxx0x.cpp25 float &fr = f1(15); local
H A Dmetafun-apply.cpp32 apply1<add_reference, float>::type fr = i; // expected-error{{non-const lvalue reference to type 'float' cannot bind to a value of unrelated type 'int'}} variable
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/threegpp26245/
H A DFontTableBox.java37 FontRecord fr = new FontRecord();
38 fr.parse(content);
39 entries.add(fr);
/external/lldb/test/terminal/
H A DTestSTTYBeforeAndAfter.py92 with open('child_read1.txt', 'r') as fr:
93 from_child1 = fr.read()
102 with open('child_read2.txt', 'r') as fr:
103 from_child2 = fr.read()
/external/valgrind/coregrind/m_debuginfo/
H A Dimage.c272 static void free_Frame ( Frame* fr )
274 vg_assert(fr && fr->data);
275 ML_(dinfo_free)(fr->data);
276 ML_(dinfo_free)(fr);
316 static Bool parse_Frame_le64 ( const Frame* fr, const HChar* tag, argument
320 if (!fr || !fr->data) return False;
321 if (fr->n_data < 4) return False;
322 if (VG_(memcmp)(&fr
328 parse_Frame_le64_le64( const Frame* fr, const HChar* tag, ULong* n1, ULong* n2 ) argument
341 parse_Frame_asciiz( const Frame* fr, const HChar* tag, UChar** str ) argument
367 parse_Frame_le64_le64_le64_bytes( const Frame* fr, const HChar* tag, ULong* n1, ULong* n2, ULong* n3, UChar** data, ULong* n_data ) argument
[all...]
/external/aac/libAACenc/src/
H A Dtransform.cpp119 fr: right window slope length
122 int tl, fl, nl, fr, nr; local
142 fr = frameLength - offset;
147 fr = frameLength;
151 fr = frameLength >> 3;
154 fl = fr = frameLength >> 3;
165 nr = (tl - fr)>>1;
169 pRightWindowPart = FDKgetWindowSlope(fr, windowShape);
201 for (i=0; i<fr/2; i++)

Completed in 3778 milliseconds

12345678