/external/clang/test/Frontend/ |
H A D | ast-main.cpp | 9 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 D | p5.cpp | 5 void mf() { } function in class:N::Y 17 template void N::Y<double>::mf();
|
H A D | p2.cpp | 4 template<class T> class Array { void mf() { } }; function in class:Array 7 template void Array<int>::mf();
|
/external/eigen/doc/snippets/ |
H A D | MatrixBase_cast.cpp | 2 Matrix2f mf = Matrix2f::Identity(); variable 3 cout << md + mf.cast<double>() << endl;
|
/external/clang/test/CXX/temp/temp.spec/temp.expl.spec/ |
H A D | p17.cpp | 5 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 D | eigen2_mixingtypes.cpp | 33 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 D | mixingtypes.cpp | 39 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 D | CurrencyFormat.java | 38 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 D | TimeUnitFormat.java | 85 // 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 D | SampleBigBlur.cpp | 33 SkMaskFilter* mf = SkBlurMaskFilter::Create( local 37 paint.setMaskFilter(mf)->unref();
|
H A D | SampleTextureDomain.cpp | 80 SkMaskFilter* mf = SkBlurMaskFilter::Create( local 85 paint.setMaskFilter(mf)->unref(); 93 mf = SkBlurMaskFilter::Create(kNormal_SkBlurStyle, 96 paint.setMaskFilter(mf)->unref();
|
H A D | SampleAnimBlur.cpp | 49 SkMaskFilter* mf = SkBlurMaskFilter::Create( variable 54 SkSafeUnref(paint.setMaskFilter(mf));
|
/external/harfbuzz_ng/src/ |
H A D | test-size-params.cc | 62 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 D | test-would-substitute.cc | 66 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 D | test-buffer-serialize.cc | 64 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 D | test.cc | 65 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 D | Spiller.h | 37 MachineFunction &mf,
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
H A D | MessageRegression.java | 293 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 D | MeasureUnitTest.java | 555 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 D | CalcSpillWeights.h | 60 VirtRegAuxInfo(MachineFunction &mf, LiveIntervals &lis, argument 64 : MF(mf), LIS(lis), Loops(loops), MBFI(mbfi), normalize(norm) {}
|
/external/skia/bench/ |
H A D | MorphologyBench.cpp | 66 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 D | LzFindMt.c | 168 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 D | mapped-file.cc | 97 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 D | msfmrgts.cpp | 455 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 D | largeglyphblur.cpp | 43 SkAutoTUnref<SkMaskFilter> mf(SkBlurMaskFilter::Create(kNormal_SkBlurStyle, kSigma)); 44 blurPaint.setMaskFilter(mf);
|