Home
last modified time | relevance | path

Searched refs:make_f (Results 1 – 11 of 11) sorted by relevance

/dports/graphics/opendx/dx-4.4.4/src/uipp/dxuilib/
H A DJavaNet.C79 this->make_f = NUL(FILE*); in JavaNet()
106 if (this->make_f) fclose(this->make_f); in ~JavaNet()
539 if (this->make_f == NUL(FILE*)) { in saveWebPage()
546 fprintf (this->make_f, in saveWebPage()
613 fprintf (this->make_f, "\n\n"); in saveWebPage()
614 fprintf (this->make_f, in saveWebPage()
644 fprintf (this->make_f, "\n\n"); in saveWebPage()
646 fprintf (this->make_f, in saveWebPage()
671 fprintf (this->make_f, "RM = del\n"); in saveWebPage()
691 fclose(this->make_f); in saveWebPage()
[all …]
H A DJavaNet.h61 FILE* make_f; variable
/dports/lang/rust/rustc-1.58.1-src/src/test/ui/nll/relate_tys/
H A Dimpl-fn-ignore-binder-via-bottom.rs20 fn make_f() -> Self::F; in make_f() method
26 fn make_f() -> Self::F { in make_f() method
32 let _x = <fn(&())>::make_f(); in main()
H A Dimpl-fn-ignore-binder-via-bottom.stderr4 LL | let _x = <fn(&())>::make_f();
13 LL | let _x = <fn(&())>::make_f();
/dports/devel/py-fs/fs-0.5.4/fs/tests/
H A Dtest_iotools.py16 def __init__(self, make_f): argument
17 self.make_f = make_f
21 return self.make_f()
/dports/lang/rust/rustc-1.58.1-src/src/test/ui/nll/
H A Dissue-57642-higher-ranked-subtype.rs22 fn make_f() -> Self::F; in make_f() method
28 fn make_f() -> Self::F { in make_f() method
38 let x = <fn (&())>::make_f(); //~ ERROR no function in magical()
H A Dissue-57642-higher-ranked-subtype.stderr16 error[E0599]: no function or associated item named `make_f` found for fn pointer `for<'r> fn(&'r ()…
19 LL | let x = <fn (&())>::make_f();
23 note: `Y` defines an item `make_f`, perhaps you need to implement it
/dports/finance/py-pycoin/pycoin-0.91.20210515/tests/btc/
H A Dbc_transaction_test.py77 def make_f(tx, flag_mask, comments, expect_ok=True): function
111 setattr(TestTx, name_of_f, make_f(tx, flag_mask, comments))
116 setattr(TestTx, name_of_f, make_f(tx, flag_mask, comments, expect_ok=False))
/dports/finance/py-pycoin/pycoin-0.91.20210515/tests/cmds/
H A Dcmdline_test.py44 def make_f(cmd, expected_output, comments, path): function
74 setattr(CmdlineTest, name_of_f, make_f(i, o, comments, path))
/dports/audio/ncspot/ncspot-0.9.3/cargo-crates/dbus-0.9.5/src/
H A Dnonblock.rs176 fn make_f<G: FnOnce(Message, &Self) + Send + 'static>(g: G) -> Self::F { Box::new(g) }
356 fn make_f<G: FnOnce(Message, &Self) + Send + 'static>(g: G) -> Self::F where Self: Sized; in make_f() method
524 let f = T::make_f(move |msg: Message, _: &T| { in method_call_setup()
/dports/devel/py-numba/numba-0.51.2/docs/source/user/
H A Dfaq.rst26 def make_f(g):
27 # Note: a new f() is created each time make_f() is called!
33 f = make_f(jitted_g_function)