Searched defs:nf (Results 51 - 75 of 77) sorted by relevance

1234

/external/chromium_org/third_party/icu/source/test/intltest/
H A Dnumrgts.cpp477 NumberFormat *nf = NumberFormat::createInstance(status); local
479 delete nf;
482 nf->setMaximumFractionDigits(4);
485 out = nf->format(x, out, pos);
491 delete nf;
513 DecimalFormat *nf = dynamic_cast<DecimalFormat *>(nf1); local
514 if(nf == NULL) {
520 logln("nf toPattern1: " + nf->toPattern(temp));
521 logln("nf toLocPattern
843 NumberFormat *nf = NumberFormat::createCurrencyInstance(*de, status); local
1615 NumberFormat *nf = NumberFormat::createInstance(status); local
1790 DecimalFormat *nf = new DecimalFormat("##,###,###.00", status); local
1921 DecimalFormat *nf = dynamic_cast<DecimalFormat *>(nff); local
2193 NumberFormat *nf = NumberFormat::createInstance(Locale::getUS(), status); local
2398 NumberFormat *nf; local
2543 NumberFormat *nf = NumberFormat::createInstance(Locale::getUS(), status); local
2661 NumberFormat *nf = NumberFormat::createInstance(loc, status); local
2719 NumberFormat *nf = NumberFormat::createInstance(Locale::getEnglish(), status); local
2865 NumberFormat *nf = NumberFormat::createInstance(Locale::getUS(), status); local
[all...]
H A Dtsmthred.cpp766 const NumberFormat *nf = NULL; // only operate on it as const. local
768 case 0: f = gYDDThing; o = &gYDDStr; nf = gFormat.getAlias(); break;
769 case 1: f = gBBDThing; o = &gBBDStr; nf = gFormat.getAlias(); break;
770 case 2: f = gYDDThing; o = &gYDDStr; nf = fFormat.getAlias(); break;
771 case 3: f = gBBDThing; o = &gBBDStr; nf = fFormat.getAlias(); break;
773 nf->format(f, str, NULL, status);
H A Dnumfmtst.cpp1126 NumberFormat *nf = NumberFormat::createInstance(status); local
1132 roundingTest(*nf, 0.00159999, 4, "0.0016");
1133 roundingTest(*nf, 0.00995, 4, "0.01");
1135 roundingTest(*nf, 12.3995, 3, "12.4");
1137 roundingTest(*nf, 12.4999, 0, "12");
1138 roundingTest(*nf, - 19.5, 0, "-20");
1139 delete nf;
1244 NumberFormatTest::roundingTest(NumberFormat& nf, double x, int32_t maxFractionDigits, const char* expected) argument
1246 nf.setMaximumFractionDigits(maxFractionDigits);
1247 UnicodeString out; nf
1703 NumberFormat* nf = NumberFormat::createCurrencyInstance(locs[i], ec); local
2541 expectCurrency(NumberFormat& nf, const Locale& locale, double value, const UnicodeString& string) argument
[all...]
/external/icu/icu4c/source/i18n/
H A Dmsgfmt.cpp1032 const NumberFormat* nf = getDefaultNumberFormat(success); local
1033 appendTo.formatAndAppend(nf, pluralNumber.number, success);
1107 const NumberFormat* nf = getDefaultNumberFormat(success); local
1108 appendTo.formatAndAppend(nf, *arg, success);
1197 const NumberFormat* nf = getDefaultNumberFormat(success); local
1198 sb.append(nf->format(pluralNumber.number, sb, success));
H A Dnumfmt.cpp482 ArgExtractor(const NumberFormat& nf, const Formattable& obj, UErrorCode& status);
505 ArgExtractor::ArgExtractor(const NumberFormat& /*nf*/, const Formattable& obj, UErrorCode& /*status*/)
1249 NumberFormat *nf = NumberFormat::internalCreateInstance( local
1254 SharedObject *result = new SharedNumberFormat(nf);
1257 delete nf;
H A Dsmpdtfmt.cpp239 delete cur->nf;
1126 NumberFormat *nf = NULL; local
1130 nf = cur->nf;
1144 nf = NumberFormat::createInstance(ovrLoc,status);
1151 nf->setGroupingUsed(FALSE);
1152 DecimalFormat* decfmt = dynamic_cast<DecimalFormat*>(nf);
1156 nf->setParseIntegerOnly(TRUE);
1157 nf->setMinimumFractionDigits(0); // To prevent "Jan 1.00, 1997.00"
1159 cur->nf
[all...]
/external/icu/icu4c/source/test/cintltst/
H A Dcnumtst.c103 UNumberFormat* nf; local
108 nf = unum_open(UNUM_DEFAULT, NULL, -1, NULL, NULL, status);
118 a = unum_parseInt64(nf, text, size, 0, status);
131 unum_close(nf);
1157 UNumberFormat *nf = unum_open(UNUM_SPELLOUT, NULL, 0, testPtr->locale, NULL, &status); local
1162 value = unum_parse(nf, testPtr->source, -1, &position, &status);
1169 unum_close(nf);
1845 UNumberFormat *nf = unum_open(UNUM_CURRENCY, NULL, 0, "en_US", NULL, &status); local
1850 unum_setTextAttribute(nf, UNUM_CURRENCY_CODE, ubuffer, 3, &status);
1855 used = unum_getTextAttribute(nf, UNUM_NEGATIVE_PREFI
1880 TestNBSPPatternRtNum(const char *testcase, int line, UNumberFormat *nf, double myNumber) argument
1903 TestNBSPPatternRT(const char *testcase, UNumberFormat *nf) argument
1910 UNumberFormat* nf = NULL; local
[all...]
/external/icu/icu4c/source/test/intltest/
H A Dloctest.cpp1205 NumberFormat *nf = NumberFormat::createCurrencyInstance(loc, status); local
1213 nf->format(271828.182845, pos);
1215 nf->format(-271828.182845, neg);
1228 delete nf;
1869 NumberFormat* nf = NumberFormat::createInstance(Locale::createFromName(req), ec); local
1873 DecimalFormat* dec = dynamic_cast<DecimalFormat*>(nf);
1899 delete nf;
H A Dnumrgts.cpp477 NumberFormat *nf = NumberFormat::createInstance(status); local
479 delete nf;
482 nf->setMaximumFractionDigits(4);
485 out = nf->format(x, out, pos);
491 delete nf;
513 DecimalFormat *nf = dynamic_cast<DecimalFormat *>(nf1); local
514 if(nf == NULL) {
520 logln("nf toPattern1: " + nf->toPattern(temp));
521 logln("nf toLocPattern
843 NumberFormat *nf = NumberFormat::createCurrencyInstance(*de, status); local
1615 NumberFormat *nf = NumberFormat::createInstance(status); local
1790 DecimalFormat *nf = new DecimalFormat("##,###,###.00", status); local
1921 DecimalFormat *nf = dynamic_cast<DecimalFormat *>(nff); local
2193 NumberFormat *nf = NumberFormat::createInstance(Locale::getUS(), status); local
2398 NumberFormat *nf; local
2543 NumberFormat *nf = NumberFormat::createInstance(Locale::getUS(), status); local
2661 NumberFormat *nf = NumberFormat::createInstance(loc, status); local
2719 NumberFormat *nf = NumberFormat::createInstance(Locale::getEnglish(), status); local
2865 NumberFormat *nf = NumberFormat::createInstance(Locale::getUS(), status); local
[all...]
H A Dtsmthred.cpp771 const NumberFormat *nf = NULL; // only operate on it as const. local
773 case 0: f = gYDDThing; o = &gYDDStr; nf = gFormat.getAlias(); break;
774 case 1: f = gBBDThing; o = &gBBDStr; nf = gFormat.getAlias(); break;
775 case 2: f = gYDDThing; o = &gYDDStr; nf = fFormat.getAlias(); break;
776 case 3: f = gBBDThing; o = &gBBDStr; nf = fFormat.getAlias(); break;
778 nf->format(f, str, NULL, status);
H A Dnumfmtst.cpp1130 NumberFormat *nf = NumberFormat::createInstance(status); local
1136 roundingTest(*nf, 0.00159999, 4, "0.0016");
1137 roundingTest(*nf, 0.00995, 4, "0.01");
1139 roundingTest(*nf, 12.3995, 3, "12.4");
1141 roundingTest(*nf, 12.4999, 0, "12");
1142 roundingTest(*nf, - 19.5, 0, "-20");
1143 delete nf;
1248 NumberFormatTest::roundingTest(NumberFormat& nf, double x, int32_t maxFractionDigits, const char* expected) argument
1250 nf.setMaximumFractionDigits(maxFractionDigits);
1251 UnicodeString out; nf
1707 NumberFormat* nf = NumberFormat::createCurrencyInstance(locs[i], ec); local
2564 expectCurrency(NumberFormat& nf, const Locale& locale, double value, const UnicodeString& string) argument
[all...]
/external/chromium_org/base/third_party/dmg_fp/
H A Ddtoa.cc2451 int esign, i, j, k, nd, nd0, nf, nz, nz0, sign; variable
2521 for(nd = nf = 0; (c = *s) >= '0' && c <= '9'; nd++, s++)
2556 nf += nz;
2566 nf += nz;
2626 if (match(&s,"nf")) {
2654 bc.e0 = e1 = e -= nf;
/external/kernel-headers/original/uapi/linux/
H A Domap3isp.h625 * @nf: Pointer to structure for Noise Filter
642 struct omap3isp_prev_nf __user *nf; member in struct:omap3isp_prev_update_config
/external/netperf/
H A Dnettest_bsd.c456 nf_to_af(int nf) {
457 switch(nf) {
454 nf_to_af(int nf) argument
/external/svox/pico/lib/
H A Dpicoos.c934 picopal_File nf; member in struct:picoos_file
997 (*f)->nf = picopal_get_fnil();
1001 (*f)->nf = picopal_fopen((*f)->name, mode);
1002 done = !(picopal_is_fnil((*f)->nf));
1004 (*f)->lFileLen = picopal_flength((*f)->nf);
1026 done = (PICO_OK == picopal_fclose((*f)->nf));
1054 res = picopal_fread_bytes(f->nf, (void *) &bytes[(0)], 1, (*len));
1080 res = picopal_fwrite_bytes(f->nf, (void *) bytes, 1, *len);
1111 done = (PICO_OK == picopal_fseek(f->nf, pos, PICOPAL_SEEK_SET));
1140 isEof = picopal_feof(f->nf);
[all...]
/external/owasp/sanitizer/tools/findbugs/lib/
H A Djdepend-2.9.jarMETA-INF/ META-INF/MANIFEST.MF jdepend/ jdepend/framework/ jdepend/framework/AbstractParser.class AbstractParser. ...
/external/wpa_supplicant_8/hostapd/src/drivers/
H A Ddriver.h3510 * @nf: Channel noise floor in dBm
3523 s8 nf; member in struct:freq_survey
/external/wpa_supplicant_8/src/drivers/
H A Ddriver.h3510 * @nf: Channel noise floor in dBm
3523 s8 nf; member in struct:freq_survey
/external/wpa_supplicant_8/wpa_supplicant/src/drivers/
H A Ddriver.h3510 * @nf: Channel noise floor in dBm
3523 s8 nf; member in struct:freq_survey
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant-junit.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.test.performance_3.6.0.v20091014.jarMETA-INF/MANIFEST.MF plugin.properties about.html scripts/cs.sh scripts/derby. ...
H A Dcom.ibm.icu_4.2.1.v20100412.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.equinox.p2.metadata_2.0.0.v20100601.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/
H A Dperformanceui.jarMETA-INF/MANIFEST.MF .project about.html plugin.xml build.properties images/FAIL ...

Completed in 811 milliseconds

1234