Home
last modified time | relevance | path

Searched refs:make_copy (Results 1 – 25 of 188) sorted by relevance

12345678

/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/blink/renderer/bindings/scripts/web_idl/
H A Dmake_copy_test.py9 from .make_copy import make_copy
14 self.assertEqual(None, make_copy(None))
15 self.assertEqual(True, make_copy(True))
16 self.assertEqual(False, make_copy(False))
17 self.assertEqual(42, make_copy(42))
18 self.assertEqual(3.14, make_copy(3.14))
19 self.assertEqual('abc', make_copy('abc'))
25 copy = make_copy(original)
52 copy = make_copy((ref1, ref2))
H A Dmake_copy.py6 def make_copy(obj, memo=None): function
29 return obj.make_copy(memo=memo)
46 return memoize(cls(map(lambda x: make_copy(x, memo), obj)))
50 cls([(make_copy(key, memo), make_copy(value, memo))
56 setattr(copy, name, make_copy(value, memo))
H A Dtypedef.py11 from .make_copy import make_copy
36 ir = make_copy(ir)
H A Dargument.py9 from .make_copy import make_copy
29 ir = make_copy(ir)
H A Dcallback_function.py12 from .make_copy import make_copy
47 ir = make_copy(ir)
H A Denumeration.py11 from .make_copy import make_copy
43 ir = make_copy(ir)
H A Dconstant.py17 from .make_copy import make_copy
51 ir = make_copy(ir)
H A Dattribute.py16 from .make_copy import make_copy
56 ir = make_copy(ir)
H A Ddictionary.py17 from .make_copy import make_copy
63 ir = make_copy(ir)
144 ir = make_copy(ir)
H A Dcallback_interface.py15 from .make_copy import make_copy
65 ir = make_copy(ir)
H A Dconstructor.py19 from .make_copy import make_copy
98 ir = make_copy(ir)
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/blink/renderer/bindings/scripts/web_idl/
H A Dmake_copy_test.py9 from .make_copy import make_copy
14 self.assertEqual(None, make_copy(None))
15 self.assertEqual(True, make_copy(True))
16 self.assertEqual(False, make_copy(False))
17 self.assertEqual(42, make_copy(42))
18 self.assertEqual(3.14, make_copy(3.14))
19 self.assertEqual('abc', make_copy('abc'))
25 copy = make_copy(original)
52 copy = make_copy((ref1, ref2))
H A Dmake_copy.py6 def make_copy(obj, memo=None): function
29 return obj.make_copy(memo=memo)
46 return memoize(cls(map(lambda x: make_copy(x, memo), obj)))
50 cls([(make_copy(key, memo), make_copy(value, memo))
56 setattr(copy, name, make_copy(value, memo))
H A Dtypedef.py11 from .make_copy import make_copy
36 ir = make_copy(ir)
H A Dargument.py9 from .make_copy import make_copy
29 ir = make_copy(ir)
H A Dcallback_function.py12 from .make_copy import make_copy
47 ir = make_copy(ir)
H A Denumeration.py11 from .make_copy import make_copy
43 ir = make_copy(ir)
H A Dconstant.py17 from .make_copy import make_copy
51 ir = make_copy(ir)
H A Dattribute.py16 from .make_copy import make_copy
56 ir = make_copy(ir)
H A Ddictionary.py17 from .make_copy import make_copy
63 ir = make_copy(ir)
144 ir = make_copy(ir)
H A Dconstructor.py19 from .make_copy import make_copy
98 ir = make_copy(ir)
H A Dcallback_interface.py15 from .make_copy import make_copy
79 ir = make_copy(ir)
/dports/deskutils/calibre/calibre-src-5.34.0/src/calibre/ebooks/metadata/book/
H A Dbase.py309 return self.get_user_metadata(key, make_copy=False)
340 def get_standard_metadata(self, field, make_copy): argument
347 if make_copy:
352 def get_all_standard_metadata(self, make_copy): argument
357 if not make_copy:
365 def get_all_user_metadata(self, make_copy): argument
372 if not make_copy:
379 def get_user_metadata(self, field, make_copy): argument
388 if make_copy:
444 me = self.get_all_user_metadata(make_copy=False)
[all …]
/dports/lang/rust/rustc-1.58.1-src/src/tools/rls/tests/fixtures/hover/src/
H A Dtest_extract_decl.rs29 fn make_copy(&self) -> Self; in make_copy() method
33 fn make_copy(&self) -> Self { in make_copy() function
/dports/devel/re2c/re2c-2.2/src/dfa/
H A Dfallback_tags.cc72 *p = dfa.tcpool.make_copy(NULL, l, r); in backup()
79 p = dfa.tcpool.make_copy(p, l, r); in backup()
116 *pc = pool.make_copy(NULL, l, r); in insert_fallback_tags()

12345678