HomeSort by relevance Sort by last modified time
    Searched refs:mf (Results 1 - 25 of 404) 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/eigen/doc/snippets/
MatrixBase_cast.cpp 2 Matrix2f mf = Matrix2f::Identity(); variable
3 cout << md + mf.cast<double>() << endl;
  /external/clang/test/CXX/temp/temp.spec/temp.explicit/
p5.cpp 7 void mf() { } function in class:N::Y
24 template void N::Y<double>::mf();
  /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base.tests/src/com/ibm/icu/tests/
MessageFormatTest.java 38 MessageFormat mf = new MessageFormat(pattern); local
41 testEHCS(mf, eq, ne);
55 MessageFormat mf = new MessageFormat(pattern); local
56 assertEquals(englishTarget, mf.format(args));
63 MessageFormat mf = new MessageFormat(pattern, Locale.US); local
64 assertEquals(englishTarget, mf.format(args));
71 MessageFormat mf = new MessageFormat(pattern, ULocale.US); local
72 assertEquals(englishTarget, mf.format(args));
79 MessageFormat mf = new MessageFormat(pattern, Locale.US); local
80 mf.setLocale(Locale.GERMANY)
89 MessageFormat mf = new MessageFormat(pattern, Locale.US); local
99 MessageFormat mf = new MessageFormat(pattern, Locale.US); local
108 MessageFormat mf = new MessageFormat(pattern, Locale.US); local
117 MessageFormat mf = new MessageFormat("foo"); local
126 MessageFormat mf = new MessageFormat(altPattern); local
153 MessageFormat mf = new MessageFormat(pattern, Locale.US); local
180 MessageFormat mf = new MessageFormat(pattern, Locale.US); local
201 MessageFormat mf = new MessageFormat(pattern, Locale.US); local
215 MessageFormat mf = new MessageFormat(pattern, Locale.US); local
233 MessageFormat mf = new MessageFormat(pattern, Locale.US); local
244 MessageFormat mf = new MessageFormat(pattern, Locale.US); local
255 MessageFormat mf = new MessageFormat(pattern, Locale.US); local
270 MessageFormat mf = new MessageFormat(pattern, Locale.US); local
283 MessageFormat mf = new MessageFormat(pat, Locale.US); local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/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/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...]
  /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/swiftshader/third_party/LLVM/lib/CodeGen/
Spiller.h 35 MachineFunction &mf,
41 MachineFunction &mf,
Spiller.cpp 54 MachineFunction *mf; member in class:__anon31199::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:__anon31201::StandardSpiller
    [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(""));
  /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 36 MaskFilter mf = new MaskFilter(); local
37 new MaskFilterSpan(mf);
43 MaskFilter mf = new MaskFilter(); local
44 MaskFilterSpan maskFilterSpan = new MaskFilterSpan(mf);
50 assertSame(mf, tp.getMaskFilter());
55 MaskFilter mf = new MaskFilter(); local
56 MaskFilterSpan maskFilterSpan = new MaskFilterSpan(mf);
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/EfiDriverLib/Ipf/
AsmCpuMisc.s 33 mf;; // memory access ordering
35 // do we need the mf.a also here?
36 mf.a // wait for any IO to complete?
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Pei/PeiLib/Ipf/
AsmCpuMisc.s 33 mf;; // memory access ordering
35 // do we need the mf.a also here?
36 mf.a // wait for any IO to complete?
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/RuntimeDxe/EfiRuntimeLib/Ipf/
AsmCpuMisc.s 33 mf;; // memory access ordering
35 // do we need the mf.a also here?
36 mf.a // wait for any IO to complete?
  /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...]

Completed in 477 milliseconds

1 2 3 4 5 6 7 8 91011>>