Searched refs:nf (Results 1 - 25 of 261) sorted by relevance

1234567891011

/macosx-10.10.1/bash-94.1.2/bash-3.2/examples/functions/
H A Dlowercase18 nf=$(echo $filename | tr A-Z a-z)
19 newname="${dirname}/${nf}"
20 if [ "$nf" != "$filename" ]; then
/macosx-10.10.1/bash-94.1.2/bash-3.2/examples/scripts.v2/
H A Dlowercase36 nf=$(echo $filename | tr A-Z a-z)
37 newname="${dirname}/${nf}"
38 if [ "$nf" != "$filename" ]; then
/macosx-10.10.1/vim-55/runtime/doc/
H A Dmaketags.awk3 NR == 1 { nf=split(FILENAME,f,".")
23 nf=split($0,tag," ");
/macosx-10.10.1/mail_cmds-30/mail/
H A Dedit.c152 FILE *nf = NULL; local
161 (nf = Fdopen(t, "w")) == NULL) {
172 (void)putc(t, nf);
175 (void)putc(t, nf);
176 (void)fflush(nf);
177 if (fstat(fileno(nf), &statb) < 0)
181 if (ferror(nf)) {
182 (void)Fclose(nf);
185 nf = NULL;
188 if (Fclose(nf) <
[all...]
H A Dcollect.c629 FILE *nf = run_editor(fp, (off_t)-1, c, 0); local
631 if (nf != NULL) {
632 (void)fseeko(nf, (off_t)0, SEEK_END);
633 collf = nf;
822 FILE *nf; local
830 (nf = Fdopen(fd, "w+")) == NULL) {
842 0, fileno(fp), fileno(nf), "-c", cmd, NULL) < 0) {
843 (void)Fclose(nf);
846 if (fsize(nf) == 0) {
848 (void)Fclose(nf);
[all...]
/macosx-10.10.1/BerkeleyDB-21/db/db_codegen/
H A Dcode_parse.c72 int nf; local
75 nf = __config_split(s, argv); /* Split the line by white-space. */
81 if (nf != 3 ||
101 if (nf != 2 || parse_status != PS_ENV_SET)
108 if (nf != 4 || parse_status != PS_ENV_SET)
119 if (nf != 1 || parse_status != PS_ENV_SET)
129 if (nf != 3 ||
160 if (nf != 1 || parse_status != PS_DB_SET)
166 if (nf != 1 || parse_status != PS_DB_SET)
172 if (nf !
[all...]
/macosx-10.10.1/ICU-531.30/icuSources/samples/numfmt/
H A Dmain.cpp92 * @param nf The NumberFormat on which to set the currency; takes effect on
95 * The display style of the output is controlled by nf (its pattern,
103 setNumberFormatCurrency_2_4(NumberFormat &nf, const char *currency, UErrorCode &errorCode) { argument
116 DecimalFormat *dnf=dynamic_cast<DecimalFormat *>(&nf);
169 nf.setMinimumFractionDigits(currencyMap[i].fractionDigits);
170 nf.setMaximumFractionDigits(currencyMap[i].fractionDigits);
182 * @param nf The NumberFormat on which to set the currency; takes effect on
184 * The display style of the output is controlled by nf (its pattern,
192 setNumberFormatCurrency_2_6(NumberFormat &nf, const char *currency, UErrorCode &errorCode) { argument
208 nf
228 NumberFormat *nf; local
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/sdx/sdx/lib/app-sdx/
H A Dversion.tcl69 set nf $fn
70 catch { set nf [file normalize [file join \
72 vfs::mk4::Mount $nf $nf -readonly
73 set mod [showvers $nf $fn]
74 vfs::unmount $nf
/macosx-10.10.1/cups-408/cups/vcnet/regex/
H A Dsplit.c188 register int nf; local
190 nf = split(string, fields, NF, seps);
191 print(nf, NF, fields);
194 print(nf, nfp, fields)
195 int nf;
202 bound = (nf > nfp) ? nfp : nf;
203 printf("%d:\t", nf);
205 printf("\"%s\"%s", fields[fn], (fn+1 < nf) ? ", " : "\n");
212 int nf; member in struct:__anon7019
282 register int nf; local
[all...]
/macosx-10.10.1/BerkeleyDB-21/db/env/
H A Denv_config.c88 if (nf != 2) \
103 if (nf != 2) \
127 int nf; local
132 if ((nf = __config_split(s, argv)) < 2) {
144 if (nf != 3)
153 if (nf != 2)
176 if (nf != 3)
185 if (nf != 2)
193 if (nf != 2)
201 if (nf !
[all...]
/macosx-10.10.1/ICU-531.30/icuSources/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 Dpptest.cpp179 NumberFormat *nf = NumberFormat::createInstance(status); local
181 delete nf;
185 DecimalFormat *fmt = dynamic_cast<DecimalFormat *>(nf);
213 delete nf;
H A Duobjtest.cpp586 NumberFormat *nf = NumberFormat::createInstance("de", errorCode); local
591 if (dynamic_cast<DecimalFormat *>(nf) == NULL || dynamic_cast<ChoiceFormat *>(nf) != NULL) {
595 if (&typeid(*nf) == NULL || typeid(*nf) == typeid(UObject) || typeid(*nf) == typeid(Format) ||
596 typeid(*nf) != typeid(DecimalFormat) || typeid(*nf) == typeid(ChoiceFormat) ||
597 typeid(*nf) == typeid(emptySet)
601 delete nf;
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/snack/snack/generic/
H A DjkSynthesis.c125 int i,nf = 0; local
142 nf = (*inFrames)<(*outFrames)?(*inFrames):(*outFrames);
143 if (nf != 0) {
144 z = 1.0/nf;
145 if (nf>=1) {
148 if (nf>=2) {
151 for (i=2;i<nf;i++) {
156 if (nf>=1) mf->mem[0]=out[nf-1];
157 if (nf>
[all...]
/macosx-10.10.1/ICU-531.30/icuSources/i18n/
H A Dunum.cpp142 const NumberFormat* nf = reinterpret_cast<const NumberFormat*>(fmt); local
143 const DecimalFormat* df = dynamic_cast<const DecimalFormat*>(nf);
147 const RuleBasedNumberFormat* rbnf = dynamic_cast<const RuleBasedNumberFormat*>(nf);
470 const NumberFormat* nf = reinterpret_cast<const NumberFormat*>(fmt); local
473 return nf->isLenient();
477 const DecimalFormat* df = dynamic_cast<const DecimalFormat*>(nf);
491 NumberFormat* nf = reinterpret_cast<NumberFormat*>(fmt); local
495 return nf->setLenient(newValue != 0);
498 DecimalFormat* df = dynamic_cast<DecimalFormat*>(nf);
509 const NumberFormat* nf local
523 NumberFormat* nf = reinterpret_cast<NumberFormat*>(fmt); local
547 const NumberFormat* nf = reinterpret_cast<const NumberFormat*>(fmt); local
610 NumberFormat* nf = reinterpret_cast<NumberFormat*>(fmt); local
670 const NumberFormat* nf = reinterpret_cast<const NumberFormat*>(fmt); local
699 const NumberFormat *nf = reinterpret_cast<const NumberFormat *>(fmt); local
726 NumberFormat *nf = reinterpret_cast<NumberFormat *>(fmt); local
762 NumberFormat* nf = reinterpret_cast<NumberFormat*>(fmt); local
[all...]
H A Dmeasfmt.cpp610 const NumberFormat *nf = cache->getIntegerFormat(); local
612 nf = numberFormat->get();
616 *nf,
632 LocalPointer<NumberFormat> nf(nfToAdopt);
651 if (nf.isNull()) {
661 adoptNumberFormat(nf.orphan(), status);
676 LocalPointer<NumberFormat> nf(nfToAdopt);
680 SharedNumberFormat *shared = new SharedNumberFormat(nf.getAlias());
685 nf.orphan();
715 const NumberFormat &nf,
713 formatMeasure( const Measure &measure, const NumberFormat &nf, UnicodeString &appendTo, FieldPosition &pos, UErrorCode &status) const argument
912 const NumberFormat *nf = cache->getIntegerFormat(); local
[all...]
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/libraries/libldap/
H A Dschema.c84 ldap_nameform2name( LDAPNameForm * nf )
86 if (!nf) return NULL;
87 return( choose_name( nf->nf_names, nf->nf_oid ) );
787 ldap_nameform2str( LDAPNameForm * nf )
790 if (ldap_nameform2bv( nf, &bv ))
797 ldap_nameform2bv( LDAPNameForm * nf, struct berval *bv ) argument
801 if ( !nf || !bv )
811 print_numericoid(ss, nf->nf_oid);
814 if ( nf
3141 ldap_nameform_free(LDAPNameForm * nf) argument
3169 LDAPNameForm * nf; local
[all...]
/macosx-10.10.1/JavaScriptCore-7600.1.17/tests/stress/
H A Dmulti-put-by-offset-reallocation-butterfly-cse.js33 o.nf = 6;
65 if (o.nf != 6)
H A Dmulti-put-by-offset-reallocation-cases.js33 o.nf = 6;
65 if (o.nf != 6)
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/modules/doctools/mpformats/
H A D_nroff.tcl30 proc nr_nofill {} {return \n.nf}
100 set nfMode [list .nf .CS] ; # commands which start no-fill mode
/macosx-10.10.1/lsof-53/lsof/tests/
H A DLTlib.c418 int nf; /* number of files */ local
498 for (fd = 0, nf = getdtablesize(); fd < nf; fd++) {
827 RdFrLsof(nf, em)
828 int *nf; /* number of fields receiver */
846 if (!nf) {
851 *nf = 0;
905 *nf = -1;
931 *nf = -1;
945 *nf
[all...]
H A DLTdnlc.c291 int nf; /* number of fields */ local
321 while (!*ff && (fop = RdFrLsof(&nf, &cem))) {
337 for (fop++, ti = 1; ti < nf; fop++, ti++) {
361 for (fop++, ti = 1; ti < nf; fop++, ti++) {
H A DLTunix.c228 int nf; /* number of fields */ local
258 while (((ff[0] + ff[1]) < 2) && (fop = RdFrLsof(&nf, &cem))) {
273 for (fop++, ti = 1; ti < nf; fop++, ti++) {
316 for (fop++, ti = 1; ti < nf; fop++, ti++) {
/macosx-10.10.1/Libnotify-133.1.1/notifyd/
H A Dtimer.h56 timer_t *timer_calendar_long(uint32_t yf, uint32_t mf, uint32_t df, uint32_t hf, uint32_t nf, uint32_t sf, time_t fm, int d, uint32_t ye, uint32_t me, uint32_t de, uint32_t he, uint32_t ne, uint32_t se, dispatch_queue_t queue);
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/include/
H A Dldap_schema.h195 LDAPNameForm * nf ));
227 LDAPNameForm * nf ));
299 LDAPNameForm * nf ));
303 LDAPNameForm * nf, struct berval *bv ));

Completed in 289 milliseconds

1234567891011