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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Frontend/
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/
p5.cpp 5 void mf() { } function in class:N::Y
17 template void N::Y<double>::mf();
  /external/eigen/doc/snippets/
MatrixBase_cast.cpp 2 Matrix2f mf = Matrix2f::Identity(); variable
3 cout << md + mf.cast<double>() << endl;
  /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base.tests/src/com/ibm/icu/tests/
MessageFormatTest.java 36 MessageFormat mf = new MessageFormat(pattern); local
39 testEHCS(mf, eq, ne);
53 MessageFormat mf = new MessageFormat(pattern); local
54 assertEquals(englishTarget, mf.format(args));
61 MessageFormat mf = new MessageFormat(pattern, Locale.US); local
62 assertEquals(englishTarget, mf.format(args));
69 MessageFormat mf = new MessageFormat(pattern, ULocale.US); local
70 assertEquals(englishTarget, mf.format(args));
77 MessageFormat mf = new MessageFormat(pattern, Locale.US); local
78 mf.setLocale(Locale.GERMANY)
87 MessageFormat mf = new MessageFormat(pattern, Locale.US); local
97 MessageFormat mf = new MessageFormat(pattern, Locale.US); local
106 MessageFormat mf = new MessageFormat(pattern, Locale.US); local
115 MessageFormat mf = new MessageFormat("foo"); local
124 MessageFormat mf = new MessageFormat(altPattern); local
151 MessageFormat mf = new MessageFormat(pattern, Locale.US); local
178 MessageFormat mf = new MessageFormat(pattern, Locale.US); local
199 MessageFormat mf = new MessageFormat(pattern, Locale.US); local
213 MessageFormat mf = new MessageFormat(pattern, Locale.US); local
231 MessageFormat mf = new MessageFormat(pattern, Locale.US); local
242 MessageFormat mf = new MessageFormat(pattern, Locale.US); local
253 MessageFormat mf = new MessageFormat(pattern, Locale.US); local
268 MessageFormat mf = new MessageFormat(pattern, Locale.US); local
281 MessageFormat mf = new MessageFormat(pat, Locale.US); local
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_multifile.py 40 def getMIMEMsg(mf):
42 msg = mimetools.Message(mf)
49 mf.push(boundary)
50 while mf.next():
51 getMIMEMsg(mf)
52 mf.pop()
54 lines = mf.readlines()
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_multifile.py 40 def getMIMEMsg(mf):
42 msg = mimetools.Message(mf)
49 mf.push(boundary)
50 while mf.next():
51 getMIMEMsg(mf)
52 mf.pop()
54 lines = mf.readlines()
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_multifile.py 40 def getMIMEMsg(mf):
42 msg = mimetools.Message(mf)
49 mf.push(boundary)
50 while mf.next():
51 getMIMEMsg(mf)
52 mf.pop()
54 lines = mf.readlines()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_multifile.py 40 def getMIMEMsg(mf):
42 msg = mimetools.Message(mf)
49 mf.push(boundary)
50 while mf.next():
51 getMIMEMsg(mf)
52 mf.pop()
54 lines = mf.readlines()
  /external/chromium-trace/catapult/telemetry/third_party/modulegraph/modulegraph_tests/
test_pycompat_pkg.py 21 mf = modulegraph.ModuleGraph(path=[ root ] + sys.path)
22 mf.import_hook('pkg.api')
24 node = mf.findNode('pkg')
27 node = mf.findNode('pkg.api')
31 node = mf.findNode('pkg.api2')
34 node = mf.findNode('pkg.api3')
37 node = mf.findNode('http.client')
40 node = mf.findNode('urllib2')
44 node = mf.findNode('pkg.api2')
47 node = mf.findNode('pkg.api3'
    [all...]
test_edge_data.py 24 mf = modulegraph.ModuleGraph(path=[ root ] + sys.path)
26 mf.run_script(script_name)
28 script_node = mf.findNode(script_name)
32 node = mf.findNode('toplevel_existing')
34 ed = mf.edgeData(script_node, node)
38 node = mf.findNode('toplevel_nonexisting')
40 ed = mf.edgeData(script_node, node)
44 node = mf.findNode('toplevel_class_existing')
46 ed = mf.edgeData(script_node, node)
50 node = mf.findNode('toplevel_class_nonexisting'
    [all...]
test_relimport2.py 21 self.mf = modulegraph.ModuleGraph(path=[ self.root ] + sys.path)
25 self.mf.run_script(os.path.join(self.root, 'pkg/__init__.py'))
26 n = self.mf.findNode('mod1')
29 n = self.mf.findNode('mod2')
33 self.mf.import_hook('pkg.sub')
35 n = self.mf.findNode('toplevel')
38 n = self.mf.findNode('pkg.mod1')
41 n = self.mf.findNode('pkg.mod3')
test_imports.py 103 self.mf = modulegraph.ModuleGraph(path=[ root ] + sys.path)
104 #self.mf.debug = 999
106 self.mf.run_script(self.script_name)
111 n = self.mf.findNode(self.script_name)
119 n2 = self.mf.findNode(nm)
120 ed = self.mf.edgeData(n, n2)
125 refs = self.mf.getReferences(n)
126 self.assertEqual(set(refs), set(self.mf.findNode(nm) for nm in imported))
128 refs = list(self.mf.getReferers(n))
134 n = self.mf.findNode('mod'
    [all...]
test_explicit_packages.py 21 mf = find_modules.find_modules(
27 node = mf.findNode('pkg')
30 node = mf.findNode('pkg.sub3')
38 mf = find_modules.find_modules(
44 node = mf.findNode('pkg')
47 node = mf.findNode('pkg.sub3')
  /external/clang/test/CXX/temp/temp.spec/temp.expl.spec/
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/clang/test/SemaObjCXX/Inputs/
nullability-consistency-1.h 12 void mf(int *ptr); // expected-warning{{pointer is missing a nullability type specifier}}
  /external/eigen/test/eigen2/
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*md)
    [all...]
  /libcore/luni/src/test/java/libcore/java/text/
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(""));
  /cts/tests/tests/text/src/android/text/style/cts/
MaskFilterSpanTest.java 28 MaskFilter mf = new MaskFilter(); local
29 new MaskFilterSpan(mf);
34 MaskFilter mf = new MaskFilter(); local
35 MaskFilterSpan maskFilterSpan = new MaskFilterSpan(mf);
41 assertSame(mf, tp.getMaskFilter());
  /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());
  /external/eigen/test/
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.template cast<CF>()*mcf)
    [all...]
  /external/chromium-trace/catapult/telemetry/third_party/modulegraph/modulegraph/
__main__.py 54 mf = ModuleGraph(path, excludes=opts.excludes, debug=opts.debug)
58 mf.import_hook(arg[:-2], None, ["*"])
60 mf.import_hook(arg)
62 mf.run_script(arg)
64 mf.graphreport()
66 mf.create_xref()
68 mf.report()
find_modules.py 111 def parse_mf_results(mf):
116 :param mf: a :class:`modulegraph.modulegraph.ModuleGraph` instance
119 # if name in mf.modules.keys():
121 # mf.import_hook(mod)
127 for item in mf.flatten():
128 # There may be __main__ modules (from mf.run_script), but
243 def find_needed_modules(mf=None, scripts=(), includes=(), packages=(), warn=warnings.warn):
244 if mf is None:
245 mf = modulegraph.ModuleGraph()
249 mf.run_script(path
    [all...]
  /external/lzma/Java/Tukaani/src/org/tukaani/xz/
LZMA2Options.java 139 private int mf; field in class:LZMA2Options
172 int niceLen, int mf, int depthLimit)
179 setMatchFinder(mf);
211 mf = MF_HC4;
216 mf = MF_BT4;
477 * <code>mf</code> is not supported
479 public void setMatchFinder(int mf) throws UnsupportedOptionsException {
480 if (mf != MF_HC4 && mf != MF_BT4)
482 "Unsupported match finder: " + mf);
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
CurrencyFormat.java 39 private transient final MeasureFormat mf; field in class:CurrencyFormat
44 mf = MeasureFormat.getInstance(locale, FormatWidth.WIDE);
90 return mf.formatMeasures(appendTo, fieldPosition, measures);
98 return mf.getWidth();
106 return mf.getNumberFormat();
114 return mf.toCurrencyProxy();
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
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();

Completed in 672 milliseconds

1 2 3 4 5 6 7 8 91011>>