Home
last modified time | relevance | path

Searched refs:_extend (Results 1 – 25 of 517) sorted by relevance

12345678910>>...21

/dports/net-p2p/go-ethereum/go-ethereum-1.10.14/internal/web3ext/
H A Dweb3ext.go36 web3._extend({
93 web3._extend({
121 web3._extend({
211 web3._extend({
480 web3._extend({
603 web3._extend({
654 web3._extend({
667 web3._extend({
723 web3._extend({
736 web3._extend({
[all …]
/dports/net-p2p/go-ethereum/go-ethereum-1.10.14/vendor/github.com/status-im/keycard-go/vendor/github.com/ethereum/go-ethereum/internal/web3ext/
H A Dweb3ext.go37 web3._extend({
68 web3._extend({
114 web3._extend({
142 web3._extend({
220 web3._extend({
433 web3._extend({
492 web3._extend({
537 web3._extend({
550 web3._extend({
596 web3._extend({
[all …]
/dports/www/py-Tenjin/Tenjin-1.1.1/test/
H A Dtest_template.yaml31 _extend=_buf.extend;_to_str=to_str;_escape=escape; _extend(('''<html>
46 _extend((''' </table>
124 _extend=_buf.extend;_to_str=to_str;_escape=escape; _extend(('''<html>
143 _extend((''' </table>
217 _extend=_buf.extend;_to_str=to_str;_escape=escape; _extend(('''<ul>\n''', ));
219 _extend(('''<li>
291 _extend=_buf.extend;_to_str=to_str;_escape=escape; _extend(('''\'foo\' and \'bar\'
340 _extend=_buf.extend;_to_str=to_str;_escape=escape; _extend(('''<p>\r\n''', ));
412 _extend=_buf.extend;_to_str=to_str;_escape=cgi.escape; _extend((_to_str(value), '''
425 _extend=_buf.extend;_to_str=str;_escape=escape; _extend((_to_str(value), '''
[all …]
/dports/www/py-Tenjin/Tenjin-1.1.1/benchmark/bench_pycode/
H A Dpycode_13_extend-format.py3 _buf = []; _extend = _buf.extend; _extend(('''<?xml version="1.0" encoding="UTF-8"?> variable
61 _extend((''' <tr class="%s">
73 _extend((''' <td class="minus">%s</td>
76 _extend((''' <td>%s</td>
79 _extend((''' </tr>\n''', ));
83 _extend((''' </tbody>
H A Dpycode_04_extend-bound.py3 _buf = []; _extend = _buf.extend; _extend(('''<?xml version="1.0" encoding="UTF-8"?> variable
61 _extend((''' <tr class="''', (n % 2 and 'odd' or 'even'), '''">
73 _extend((''' <td class="minus">''', (item.s_change), '''</td>
76 _extend((''' <td>''', (item.s_change), '''</td>
79 _extend((''' </tr>\n''', ));
83 _extend((''' </tbody>
H A Dpycode_11_extend-str.py3 _buf = []; _extend = _buf.extend; _extend(('''<?xml version="1.0" encoding="UTF-8"?> variable
61 _extend((''' <tr class="''', str(n % 2 and 'odd' or 'even'), '''">
73 _extend((''' <td class="minus">''', str(item.s_change), '''</td>
76 _extend((''' <td>''', str(item.s_change), '''</td>
79 _extend((''' </tr>\n''', ));
83 _extend((''' </tbody>
H A Dpycode_24_webext-escape.py3 _buf = []; _extend = _buf.extend; _extend(('''<?xml version="1.0" encoding="UTF-8"?> variable
61 _extend((''' <tr class="''', webext_escape_html(n % 2 and 'odd' or 'even'), '''">
73 _extend((''' <td class="minus">''', webext_escape_html(item.s_change), '''</td>
76 _extend((''' <td>''', webext_escape_html(item.s_change), '''</td>
79 _extend((''' </tr>\n''', ));
83 _extend((''' </tbody>
H A Dpycode_15_extend-tostr.py3 _buf = []; _extend = _buf.extend; _extend(('''<?xml version="1.0" encoding="UTF-8"?> variable
61 _extend((''' <tr class="''', to_str(n % 2 and 'odd' or 'even'), '''">
73 _extend((''' <td class="minus">''', to_str(item.s_change), '''</td>
76 _extend((''' <td>''', to_str(item.s_change), '''</td>
79 _extend((''' </tr>\n''', ));
83 _extend((''' </tbody>
H A Dpycode_12_extend-str-local.py4 _buf = []; _extend = _buf.extend; _extend(('''<?xml version="1.0" encoding="UTF-8"?> variable
62 _extend((''' <tr class="''', _str(n % 2 and 'odd' or 'even'), '''">
74 _extend((''' <td class="minus">''', _str(item.s_change), '''</td>
77 _extend((''' <td>''', _str(item.s_change), '''</td>
80 _extend((''' </tr>\n''', ));
84 _extend((''' </tbody>
H A Dpycode_16_extend-tostr-local.py4 _buf = []; _extend = _buf.extend; _extend(('''<?xml version="1.0" encoding="UTF-8"?> variable
62 _extend((''' <tr class="''', _to_str(n % 2 and 'odd' or 'even'), '''">
74 _extend((''' <td class="minus">''', _to_str(item.s_change), '''</td>
77 _extend((''' <td>''', _to_str(item.s_change), '''</td>
80 _extend((''' </tr>\n''', ));
84 _extend((''' </tbody>
H A Dpycode_21_escape-str.py3 _buf = []; _extend = _buf.extend; _extend(('''<?xml version="1.0" encoding="UTF-8"?> variable
61 _extend((''' <tr class="''', escape_html(str(n % 2 and 'odd' or 'even')), '''">
73 _extend((''' <td class="minus">''', escape_html(str(item.s_change)), '''</td>
76 _extend((''' <td>''', escape_html(str(item.s_change)), '''</td>
79 _extend((''' </tr>\n''', ));
83 _extend((''' </tbody>
H A Dpycode_22_escape-tostr.py3 _buf = []; _extend = _buf.extend; _extend(('''<?xml version="1.0" encoding="UTF-8"?> variable
61 _extend((''' <tr class="''', escape_html(to_str(n % 2 and 'odd' or 'even')), '''">
73 _extend((''' <td class="minus">''', escape_html(to_str(item.s_change)), '''</td>
76 _extend((''' <td>''', escape_html(to_str(item.s_change)), '''</td>
79 _extend((''' </tr>\n''', ));
83 _extend((''' </tbody>
H A Dpycode_23_webext-escape-tostr.py3 _buf = []; _extend = _buf.extend; _extend(('''<?xml version="1.0" encoding="UTF-8"?> variable
61_extend((''' <tr class="''', webext_escape_html(webext_to_str(n % 2 and 'odd' or 'even')), '''">
73_extend((''' <td class="minus">''', webext_escape_html(webext_to_str(item.s_change)), '''</td>
76 _extend((''' <td>''', webext_escape_html(webext_to_str(item.s_change)), '''</td>
79 _extend((''' </tr>\n''', ));
83 _extend((''' </tbody>
/dports/www/py-Tenjin/Tenjin-1.1.1/test/data/users_guide/test_convert/
H A Dresult2.output2 _extend=_buf.extend;_to_str=to_str;_escape=escape; _extend(('''<ul>\n''', ));
4 _extend((''' <li>''', _escape(_to_str(item)), '''</li>\n''', ));
6 _extend(('''</ul>\n''', ));
H A Dresult1.output2 _buf = []; _extend=_buf.extend;_to_str=to_str;_escape=escape; _extend(('''<ul>\n''', ));
4 _extend((''' <li>''', _escape(_to_str(item)), '''</li>\n''', ));
6 _extend(('''</ul>\n''', ));
/dports/www/py-Tenjin/Tenjin-1.1.1/test/data/users_guide/test_021/
H A Dresult.output2 _extend=_buf.extend;_to_str=to_str;_escape=escape; _extend(('''<h2>''', _escape(_to_str(title)), ''…
8 _extend((''' <tr class="''', _to_str(klass), '''">
12 _extend(('''</table>\n''', ));
/dports/www/py-Tenjin/Tenjin-1.1.1/test/data/users_guide/test_020/
H A Dresult.output2 _buf = []; _extend=_buf.extend;_to_str=to_str;_escape=escape; _extend(('''<h2>''', _escape(_to_str(…
8 _extend((''' <tr class="''', _to_str(klass), '''">
12 _extend(('''</table>\n''', ));
/dports/science/py-scipy/scipy-1.7.1/scipy/signal/windows/
H A Dwindows.py23 def _extend(M, sym): function
111 M, needs_trunc = _extend(M, sym)
167 M, needs_trunc = _extend(M, sym)
225 M, needs_trunc = _extend(M, sym)
289 M, needs_trunc = _extend(M, sym)
348 M, needs_trunc = _extend(M, sym)
699 M, needs_trunc = _extend(M, sym)
861 M, needs_trunc = _extend(M, sym)
924 M, needs_trunc = _extend(M, sym)
1206 M, needs_trunc = _extend(M, sym)
[all …]
/dports/www/py-Tenjin/Tenjin-1.1.1/test/data/users_guide/test_050/
H A Dresult.output2 _extend=_buf.extend;_to_str=to_str;_escape=escape; title = _context.get('title'); items = _context.…
4 _extend(('''<h2>''', _escape(_to_str(title)), '''</h2>
10 _extend((''' <tr class="''', _to_str(klass), '''">
14 _extend(('''</table>\n''', ));
/dports/www/py-Tenjin/Tenjin-1.1.1/test/data/examples/table/
H A Dtable_s.result2 _buf = []; _extend=_buf.extend;_to_str=to_str;_escape=escape; _extend(('''<html>
10 _extend((''' <tr bgcolor="''', _to_str(color), '''">
15 _extend((''' </table>
/dports/devel/libgit2/libgit2-1.3.0/tests/core/
H A Dftruncate.c30 static void _extend(off64_t i64len) in _extend() function
42 _extend(0x80000001); in test_core_ftruncate__2gb()
47 _extend(0x100000001); in test_core_ftruncate__4gb()
/dports/editors/libreoffice/libreoffice-7.2.6.2/sw/source/ui/vba/
H A Dvbaselection.hxx44 … css::uno::Any& _unit, const css::uno::Any& _count, const css::uno::Any& _extend, ooo::vba::word::…
68 …virtual void SAL_CALL HomeKey( const css::uno::Any& _unit, const css::uno::Any& _extend ) override;
69 … virtual void SAL_CALL EndKey( const css::uno::Any& _unit, const css::uno::Any& _extend ) override;
72 …( const css::uno::Any& _unit, const css::uno::Any& _count, const css::uno::Any& _extend ) override;
73 …( const css::uno::Any& _unit, const css::uno::Any& _count, const css::uno::Any& _extend ) override;
74 …( const css::uno::Any& _unit, const css::uno::Any& _count, const css::uno::Any& _extend ) override;
75 …( const css::uno::Any& _unit, const css::uno::Any& _count, const css::uno::Any& _extend ) override;
/dports/editors/libreoffice6/libreoffice-6.4.7.2/sw/source/ui/vba/
H A Dvbaselection.hxx44 … css::uno::Any& _unit, const css::uno::Any& _count, const css::uno::Any& _extend, ooo::vba::word::…
68 …virtual void SAL_CALL HomeKey( const css::uno::Any& _unit, const css::uno::Any& _extend ) override;
69 … virtual void SAL_CALL EndKey( const css::uno::Any& _unit, const css::uno::Any& _extend ) override;
72 …( const css::uno::Any& _unit, const css::uno::Any& _count, const css::uno::Any& _extend ) override;
73 …( const css::uno::Any& _unit, const css::uno::Any& _count, const css::uno::Any& _extend ) override;
74 …( const css::uno::Any& _unit, const css::uno::Any& _count, const css::uno::Any& _extend ) override;
75 …( const css::uno::Any& _unit, const css::uno::Any& _count, const css::uno::Any& _extend ) override;
/dports/math/symengine/symengine-0.8.1/symengine/
H A Dprime_sieve.cpp33 void Sieve::_extend(unsigned limit) in _extend() function in SymEngine::Sieve
45 _extend(sqrt_limit); in _extend()
81 _extend(limit); in generate_primes()
116 _extend(extend_to); in next_prime()
/dports/www/gallery-dl/gallery-dl-1.21.0/gallery_dl/extractor/
H A D500px.py47 def _extend(self, edges): member in _500pxExtractor
121 yield from self._extend(photos["edges"])
189 yield from self._extend(photos["edges"])
213 yield from self._extend(photos["edges"])
279 return self._extend(edges)

12345678910>>...21