HomeSort by relevance Sort by last modified time
    Searched defs:mf (Results 1 - 25 of 40) sorted by null

1 2

  /external/clang/test/CXX/temp/temp.spec/temp.explicit/
p5.cpp 5 void mf() { } function in class:N::Y
17 template void N::Y<double>::mf();
p2.cpp 4 template<class T> class Array { void mf() { } }; function in class:Array
7 template void Array<int>::mf();
  /libcore/luni/src/test/java/libcore/java/util/
OldFormattableTest.java 50 Mock_Formattable mf = new Mock_Formattable(); local
52 assertTrue(fmt.format("%1.1s", mf).toString().equals("single precision "));
53 assertTrue(fmt.format("%2.1s", mf).toString().equals("single precision single precision "));
54 assertTrue(fmt.format("%2.2s", mf).toString().equals("single precision single precision double precision "));
55 assertTrue(mf.isFormatToCalled());
  /cts/tests/tests/text/src/android/text/style/cts/
MaskFilterSpanTest.java 40 MaskFilter mf = new MaskFilter(); local
41 new MaskFilterSpan(mf);
53 MaskFilter mf = new MaskFilter(); local
54 MaskFilterSpan maskFilterSpan = new MaskFilterSpan(mf);
60 assertSame(mf, tp.getMaskFilter());
  /external/llvm/lib/CodeGen/
Splitter.h 52 MachineFunction *mf; member in class:llvm::LoopSplitter
Spiller.cpp 54 MachineFunction *mf; member in class:__anon8166::SpillerBase
63 SpillerBase(MachineFunctionPass &pass, MachineFunction &mf, VirtRegMap &vrm)
64 : pass(&pass), mf(&mf), vrm(&vrm)
67 mfi = mf.getFrameInfo();
68 mri = &mf.getRegInfo();
69 tii = mf.getTarget().getInstrInfo();
70 tri = mf.getTarget().getRegisterInfo();
179 TrivialSpiller(MachineFunctionPass &pass, MachineFunction &mf,
181 : SpillerBase(pass, mf, vrm) {
196 MachineFunction *mf; member in class:__anon8168::StandardSpiller
    [all...]
RenderMachineFunction.h 1 //===-- llvm/CodeGen/RenderMachineFunction.h - MF->HTML -*- C++ -*---------===//
62 void setup(MachineFunction *mf, const TargetRegisterInfo *tri,
117 MachineFunction *mf; member in class:llvm::MFRenderingOptions
141 void setup(MachineFunction *mf, MachineRegisterInfo *mri,
168 MachineFunction *mf; member in class:llvm::TargetRegisterExtraInfo
245 MachineFunction *mf; member in class:llvm::RenderMachineFunction
  /external/skia/gm/
blurs.cpp 49 SkMaskFilter* mf = SkBlurMaskFilter::Create( local
52 paint.setMaskFilter(mf)->unref();
63 SkMaskFilter* mf = SkBlurMaskFilter::Create( local
68 paint.setMaskFilter(mf)->unref();
  /external/skia/samplecode/
SampleDrawLooper.cpp 46 SkMaskFilter* mf = SkBlurMaskFilter::Create(SkIntToScalar(gParams[i].fBlur), local
48 paint->setMaskFilter(mf)->unref();
SampleBlur.cpp 90 SkMaskFilter* mf = SkBlurMaskFilter::Create(20, local
93 paint.setMaskFilter(mf)->unref();
102 SkMaskFilter* mf = SkBlurMaskFilter::Create(4, local
105 paint.setMaskFilter(mf)->unref();
SampleStrokePath.cpp 163 SkMaskFilter* mf; local
167 mf = SkBlurMaskFilter::Create(radius, gStyle[x - 1]);
168 paint.setMaskFilter(mf)->unref();
SampleXfermodesBlur.cpp 42 SkMaskFilter* mf = SkBlurMaskFilter::Create(5, SkBlurMaskFilter::kNormal_BlurStyle, 0); local
43 p.setMaskFilter(mf)->unref();
SampleWarp.cpp 22 SkMaskFilter* mf = SkBlurMaskFilter::Create(8, SkBlurMaskFilter::kNormal_BlurStyle); local
24 paint.setMaskFilter(mf)->unref();
  /libcore/luni/src/test/java/libcore/java/text/
OldMessageFormatTest.java 88 MessageFormat mf; local
91 mf = new MessageFormat(pattern, l[i]);
92 Locale result = mf.getLocale();
103 mf = new MessageFormat(pattern);
104 mf.setLocale(null);
105 Locale result = mf.getLocale();
336 MessageFormat mf = new MessageFormat(pattern); local
340 result = mf.parse(sToParse);
364 mf = new MessageFormat("vm={0},{1},{2}");
366 result = mf.parse(sToParse)
394 MessageFormat mf = new MessageFormat("{0,number,#.##}, {0,number,#.#}"); local
448 MessageFormat mf = new MessageFormat("{0}; {0}; {0}"); local
    [all...]
OldFormatTest.java 61 MockFormat mf = new MockFormat(); local
62 assertEquals("", mf.format(""));
67 MockFormat mf = new MockFormat(); local
68 AttributedCharacterIterator aci = mf.formatToCharacterIterator("Test 123 Test");
73 mf.formatToCharacterIterator(null);
80 mf.formatToCharacterIterator("");
87 MockFormat mf = new MockFormat(); local
89 assertNull(mf.parseObject(""));
OldNumberFormatTest.java 814 MyNumberFormat mf = new MyNumberFormat(); local
    [all...]
  /external/clang/test/Analysis/
stack-addr-ps.cpp 66 int *mf() { function
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
JarURLConnectionTest.java 237 Manifest mf = juc.getManifest(); local
238 assertNotNull(mf);
240 assertEquals(mf,juc.getManifest());
241 assertNotSame(mf,juc.getManifest());
243 assertEquals(juc.getMainAttributes(),mf.getMainAttributes());
303 u = new URL("jar:"+BASE+"!/Manifest.mf");
  /libcore/luni/src/main/java/java/text/
MessageFormat.java 303 * MessageFormat mf = new MessageFormat("{0,number,#.##}, {0,number,#.#}");
305 * String result = mf.format(objs);
308 * objs = mf.parse(result, new ParsePosition(0));
318 * MessageFormat mf = new MessageFormat("{0}, {0}, {0}");
320 * Object[] objs = mf.parse(forParsing, new ParsePosition(0));
583 MessageFormat mf = new MessageFormat(result); local
584 mf.setLocale(locale);
585 mf.format(objects, buffer, passedField);
    [all...]
  /frameworks/base/tools/localize/
merge_res_and_xliff.cpp 226 MergedFile mf; local
227 mf.xliff = xliff;
228 mf.xliffFilename = *xliffFilename;
229 mf.original = *f;
230 mf.translated = translated_file_name(mf.original, xliff->TargetConfig().locale);
231 log_printf("mf.translated=%s mf.original=%s locale=%s\n", mf.translated.c_str(),
232 mf.original.c_str(), xliff->TargetConfig().locale.c_str())
    [all...]
  /packages/apps/VideoEditor/src/com/android/videoeditor/util/
FileUtils.java 101 final File mf = new File(context.getFilesDir(), filename); local
102 if (!mf.exists()) {
133 return mf.getAbsolutePath();
193 final File mf = new File(context.getFilesDir(), filename); local
194 if (!mf.exists()) {
217 return mf.getAbsolutePath();
  /external/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/jar/
ManifestTest.java 44 private final String MANIFEST_NAME = "manifest/hyts_MANIFEST.MF";
148 Manifest mf = new Manifest(bis); local
149 assertEquals("Should be 4 main attributes", 4, mf.getMainAttributes()
152 Map<String, Attributes> entries = mf.getEntries();
  /external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/
ChoiceFormatTest.java 417 MessageFormat mf = new MessageFormat("CHOICE {1,choice}"); local
418 String ptrn = mf.toPattern();
MessageFormatTest.java 297 MessageFormat mf = new MessageFormat("{0,number,integer}"); local
300 mf.applyPattern(badpattern);
660 MessageFormat mf = new MessageFormat("vm={0},{1},{2}"); local
661 result = mf.parse("vm=win,foo,bar", new ParsePosition(0));
665 mf = new MessageFormat("{0}; {0}; {0}");
667 result = mf.parse(parse, new ParsePosition(0));
670 mf = new MessageFormat("before {0}, after {1,number}");
674 result = mf.parse(parse, pos);
698 MessageFormat mf = new MessageFormat(pattern); local
699 assertTrue("Wrong pattern", mf.toPattern().equals(pattern))
752 MessageFormat mf = new MessageFormat("{0,number,#,####}", Locale.US); local
    [all...]
  /external/icu4c/test/intltest/
msfmrgts.cpp 453 MessageFormat *mf = new MessageFormat(originalPattern, status); local
457 mf->applyPattern(illegalPattern, status);
461 if (!originalPattern.equals(mf.toPattern()))
462 errln("pattern after: \"" + mf.toPattern() + "\"");
464 delete mf;
479 MessageFormat *mf = new MessageFormat("", status); local
484 mf->applyPattern(pattern, status);
485 failure(status, "mf->applyPattern", TRUE);
490 Formattable *array = mf->parse(UnicodeString(""), pp, count);
516 delete mf;
527 MessageFormat *mf = new MessageFormat("<{0}>", status); local
561 MessageFormat *mf = new MessageFormat(originalPattern, status); local
695 MessageFormat *mf = new MessageFormat("", status); local
736 MessageFormat *mf = new MessageFormat("{0}, {0}, {0}", status); local
826 MessageFormat *mf = new MessageFormat("pattern", status); local
865 MessageFormat *mf = new MessageFormat(pat, status); local
    [all...]

Completed in 443 milliseconds

1 2