Searched refs:mf (Results 1 - 25 of 143) sorted by relevance

123456

/external/clang/test/Frontend/
H A Dast-main.cpp9 T *mf();
12 T *S<T>::mf() { function in class:S
17 S<int>().mf();
/external/clang/test/CXX/temp/temp.spec/temp.explicit/
H A Dp5.cpp5 void mf() { } function in class:N::Y
17 template void N::Y<double>::mf();
H A Dp2.cpp4 template<class T> class Array { void mf() { } }; function in class:Array
7 template void Array<int>::mf();
/external/eigen/doc/snippets/
H A DMatrixBase_cast.cpp2 Matrix2f mf = Matrix2f::Identity(); variable
3 cout << md + mf.cast<double>() << endl;
/external/clang/test/CXX/temp/temp.spec/temp.expl.spec/
H A Dp17.cpp5 void mf();
10 template<> template<> void A<char>::B<char>::mf();
12 template<> void A<char>::B<int>::mf(); // expected-error{{requires 'template<>'}}
/external/eigen/test/eigen2/
H A Deigen2_mixingtypes.cpp33 Mat_f mf(size,size);
42 mf+mf; local
43 VERIFY_RAISES_ASSERT(mf+md);
44 VERIFY_RAISES_ASSERT(mf+mcf);
49 mf*mf; local
52 mf*vcf;
54 mcf *= mf;
59 VERIFY_RAISES_ASSERT(mf*m
[all...]
/external/eigen/test/
H A Dmixingtypes.cpp39 Mat_f mf = Mat_f::Random(size,size); local
40 Mat_d md = mf.template cast<double>();
53 mf+mf; local
54 VERIFY_RAISES_ASSERT(mf+md);
55 VERIFY_RAISES_ASSERT(mf+mcf);
78 // vd.asDiagonal() * mf; // does not even compile
79 // vcd.asDiagonal() * mf; // does not even compile
101 VERIFY_IS_APPROX(sf*mf*mcf, sf*mf
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DCurrencyFormat.java38 private transient final MeasureFormat mf; field in class:CurrencyFormat
43 mf = MeasureFormat.getInstance(locale, FormatWidth.WIDE);
89 return mf.formatMeasures(appendTo, fieldPosition, measures);
97 return mf.getWidth();
105 return mf.getNumberFormat();
113 return mf.toCurrencyProxy();
H A DTimeUnitFormat.java85 // These fields are supposed to be the same as the fields in mf. They
96 private transient MeasureFormat mf; field in class:TimeUnitFormat
117 mf = MeasureFormat.getInstance(ULocale.getDefault(), FormatWidth.WIDE);
155 mf = MeasureFormat.getInstance(
190 mf = mf.withLocale(locale);
226 mf = mf.withLocale(ULocale.getDefault());
229 mf = mf
[all...]
/external/skia/samplecode/
H A DSampleBigBlur.cpp33 SkMaskFilter* mf = SkBlurMaskFilter::Create( local
37 paint.setMaskFilter(mf)->unref();
H A DSampleTextureDomain.cpp80 SkMaskFilter* mf = SkBlurMaskFilter::Create( local
85 paint.setMaskFilter(mf)->unref();
93 mf = SkBlurMaskFilter::Create(kNormal_SkBlurStyle,
96 paint.setMaskFilter(mf)->unref();
H A DSampleAnimBlur.cpp49 SkMaskFilter* mf = SkBlurMaskFilter::Create( variable
54 SkSafeUnref(paint.setMaskFilter(mf));
/external/harfbuzz_ng/src/
H A Dtest-size-params.cc62 GMappedFile *mf = g_mapped_file_new (argv[1], false, NULL); local
63 font_data = g_mapped_file_get_contents (mf);
64 len = g_mapped_file_get_length (mf);
66 user_data = (void *) mf;
H A Dtest-would-substitute.cc66 GMappedFile *mf = g_mapped_file_new (argv[1], false, NULL); local
67 font_data = g_mapped_file_get_contents (mf);
68 len = g_mapped_file_get_length (mf);
70 user_data = (void *) mf;
H A Dtest-buffer-serialize.cc64 GMappedFile *mf = g_mapped_file_new (argv[1], false, NULL); local
65 font_data = g_mapped_file_get_contents (mf);
66 len = g_mapped_file_get_length (mf);
68 user_data = (void *) mf;
H A Dtest.cc65 GMappedFile *mf = g_mapped_file_new (argv[1], false, NULL); local
66 font_data = g_mapped_file_get_contents (mf);
67 len = g_mapped_file_get_length (mf);
69 user_data = (void *) mf;
/external/llvm/lib/CodeGen/
H A DSpiller.h37 MachineFunction &mf,
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
H A DMessageRegression.java293 MessageFormat mf = new MessageFormat(originalPattern);
296 mf.applyPattern(illegalPattern);
299 if (illegalPattern.equals(mf.toPattern()))
300 errln("pattern after: \"" + mf.toPattern() + "\"");
310 MessageFormat mf = new MessageFormat("");
314 mf.applyPattern(pattern);
316 Object[] array = mf.parse(null, new ParsePosition(0));
346 MessageFormat mf = new MessageFormat("<{0}>");
351 logln("pattern: \"" + mf.toPattern() + "\"");
353 logln("\"" + mf
[all...]
H A DMeasureUnitTest.java555 MeasureFormat mf = MeasureFormat.getInstance(ULocale.ENGLISH, FormatWidth.WIDE, nf);
556 verifyFormatPeriod("en FULL", mf, fullData);
557 mf = MeasureFormat.getInstance(ULocale.ENGLISH, FormatWidth.SHORT, nf);
558 verifyFormatPeriod("en SHORT", mf, abbrevData);
559 mf = MeasureFormat.getInstance(ULocale.ENGLISH, FormatWidth.NARROW, nf);
560 verifyFormatPeriod("en NARROW", mf, narrowData);
561 mf = MeasureFormat.getInstance(ULocale.ENGLISH, FormatWidth.NUMERIC, nf);
562 verifyFormatPeriod("en NUMERIC", mf, numericData);
566 mf = MeasureFormat.getInstance(ULocale.GERMAN, FormatWidth.WIDE, nf);
567 verifyFormatPeriod("de FULL", mf, fullDataD
581 verifyFormatPeriod(String desc, MeasureFormat mf, Object[][] testData) argument
[all...]
/external/llvm/include/llvm/CodeGen/
H A DCalcSpillWeights.h60 VirtRegAuxInfo(MachineFunction &mf, LiveIntervals &lis, argument
64 : MF(mf), LIS(lis), Loops(loops), MBFI(mbfi), normalize(norm) {}
/external/skia/bench/
H A DMorphologyBench.cpp66 SkMorphologyImageFilter* mf = NULL; local
69 mf = SkDilateImageFilter::Create(SkScalarFloorToInt(fRadius),
73 mf = SkErodeImageFilter::Create(SkScalarFloorToInt(fRadius),
77 paint.setImageFilter(mf)->unref();
/external/lzma/C/
H A DLzFindMt.c168 CMatchFinder *mf = mt->MatchFinder; local
169 if (MatchFinder_NeedMove(mf))
174 const Byte *beforePtr = MatchFinder_GetPointerToCurrentPos(mf);
176 MatchFinder_MoveBlock(mf);
177 afterPtr = MatchFinder_GetPointerToCurrentPos(mf);
188 MatchFinder_ReadIfRequired(mf);
189 if (mf->pos > (kMtMaxValForNormalize - kMtHashBlockSize))
191 UInt32 subValue = (mf->pos - mf->historySize - 1);
192 MatchFinder_ReduceOffsets(mf, subValu
468 CMatchFinder *mf = p->MatchFinder; local
492 CMatchFinder *mf = p->MatchFinder; local
[all...]
/external/openfst/src/lib/
H A Dmapped-file.cc97 MappedFile* mf = Allocate(size); local
98 if (!s->read(reinterpret_cast<char*>(mf->mutable_data()), size)) {
99 delete mf;
102 return mf;
/external/icu/icu4c/source/test/intltest/
H A Dmsfmrgts.cpp455 MessageFormat *mf = new MessageFormat(originalPattern, status); local
459 mf->applyPattern(illegalPattern, status);
463 if (!originalPattern.equals(mf.toPattern()))
464 errln("pattern after: \"" + mf.toPattern() + "\"");
466 delete mf;
481 MessageFormat *mf = new MessageFormat("", status); local
486 mf->applyPattern(pattern, status);
487 failure(status, "mf->applyPattern", TRUE);
492 Formattable *array = mf->parse(UnicodeString(""), pp, count);
518 delete mf;
529 MessageFormat *mf = new MessageFormat("<{0}>", status); local
563 MessageFormat *mf = new MessageFormat(originalPattern, status); local
697 MessageFormat *mf = new MessageFormat("", status); local
738 MessageFormat *mf = new MessageFormat("{0}, {0}, {0}", status); local
828 MessageFormat *mf = new MessageFormat("pattern", status); local
867 MessageFormat *mf = new MessageFormat(pat, status); local
[all...]
/external/skia/gm/
H A Dlargeglyphblur.cpp43 SkAutoTUnref<SkMaskFilter> mf(SkBlurMaskFilter::Create(kNormal_SkBlurStyle, kSigma));
44 blurPaint.setMaskFilter(mf);

Completed in 553 milliseconds

123456