Home
last modified time | relevance | path

Searched refs:fakeOut (Results 1 – 8 of 8) sorted by relevance

/dports/java/icedtea-web/icedtea-web-1.6.2/tests/test-extensions-tests/net/sourceforge/jnlp/
H A DServerAccessTest.java97 String fakeOut = in testsProcessResultFiltering() local
115 ProcessResult p = new ProcessResult(fakeOut, fakeOut, null, true, 0, null); in testsProcessResultFiltering()
116 Assert.assertEquals(p.notFilteredStdout, fakeOut); in testsProcessResultFiltering()
118 Assert.assertEquals(p.stderr, fakeOut); in testsProcessResultFiltering()
119 fakeOut += "\n"; in testsProcessResultFiltering()
121 p = new ProcessResult(fakeOut, fakeOut, null, true, 0, null); in testsProcessResultFiltering()
122 Assert.assertEquals(p.notFilteredStdout, fakeOut); in testsProcessResultFiltering()
124 Assert.assertEquals(p.stderr, fakeOut); in testsProcessResultFiltering()
/dports/devel/stack/stack-2.7.3/_cabal_deps/optparse-simple-0.1.1.3/test/
H A DMain.hs35 , fakeOut :: Handle function
69 fakeOut <- openFile' stdoutFile
73 hDuplicateTo fakeOut stdout
85 hClose fakeOut
/dports/devel/hs-haskell-language-server/haskell-language-server-1.4.0/_cabal_deps/optparse-simple-0.1.1.3/test/
H A DMain.hs35 , fakeOut :: Handle function
69 fakeOut <- openFile' stdoutFile
73 hDuplicateTo fakeOut stdout
85 hClose fakeOut
/dports/devel/py-twisted/Twisted-22.1.0/src/twisted/names/test/
H A Dtest_examples.py44 self.fakeOut = StringIO()
45 self.patch(sys, "stdout", self.fakeOut)
97 out = self.fakeOut.getvalue().splitlines()
/dports/math/vtk6/VTK-6.2.0/ThirdParty/Twisted/twisted/names/test/
H A Dtest_examples.py42 self.fakeOut = StringIO()
43 self.patch(sys, 'stdout', self.fakeOut)
100 out = self.fakeOut.getvalue().splitlines()
/dports/games/libretro-fbneo/FBNeo-bbe3c05/src/burn/devices/
H A Dnamcoio.cpp142 static void fakeOut(UINT8,UINT8) { } in fakeOut() function
154 ptr->out_0_cb = (out0 == NULL) ? fakeOut : out0; in namcoio_init()
155 ptr->out_1_cb = (out1 == NULL) ? fakeOut : out1; in namcoio_init()
/dports/games/libretro-fbalpha/fbalpha-84eb9d9/src/burn/devices/
H A Dnamcoio.cpp142 static void fakeOut(UINT8,UINT8) { } in fakeOut() function
154 ptr->out_0_cb = (out0 == NULL) ? fakeOut : out0; in namcoio_init()
155 ptr->out_1_cb = (out1 == NULL) ? fakeOut : out1; in namcoio_init()
/dports/devel/qtcreator/qt-creator-opensource-src-5.0.3/src/plugins/baremetal/
H A Diarewtoolchain.cpp122 QFile fakeOut(outpath); in dumpPredefinedMacros() local
123 if (fakeOut.open(QIODevice::ReadOnly)) in dumpPredefinedMacros()
124 output = fakeOut.readAll(); in dumpPredefinedMacros()
125 fakeOut.remove(); in dumpPredefinedMacros()