Home
last modified time | relevance | path

Searched refs:Freeze (Results 1 – 25 of 32) sorted by relevance

12

/external/v8/tools/testrunner/local/
Dstatusfile_unittest.py9 from utils import Freeze
42 self.assertEqual(2, Freeze({1: [2]})[1][0])
43 self.assertEqual(set([3]), Freeze({1: [2], 2: set([3])})[2])
46 Freeze({1: [], 2: set([3])})[2] = 4
48 Freeze({1: [], 2: set([3])}).update({3: 4})
50 Freeze({1: [], 2: set([3])})[1].append(2)
52 Freeze({1: [], 2: set([3])})[2] |= set([3])
Dutils.py164 def Freeze(obj): function
166 return FrozenDict((k, Freeze(v)) for k, v in obj.iteritems())
170 return tuple(Freeze(item) for item in obj)
Dstatusfile.py32 from utils import Freeze
275 return Freeze(rules), Freeze(prefix_rules)
/external/python/cpython3/Tools/freeze/
DREADME7 What is Freeze?
10 Freeze make it possible to ship arbitrary Python programs to people
31 How does Freeze know which modules to include?
34 Previous versions of Freeze used a pretty simple-minded algorithm to
40 This has been remedied: Freeze now uses the regular Python parser to
48 This new version of Freeze also knows about Python's new package
52 to determine which modules are to be imported, while Freeze will do a
55 One tricky issue: Freeze assumes that the Python interpreter and
56 environment you're using to run Freeze is the same one that would be
65 How do I use Freeze?
[all …]
/external/python/cpython2/Tools/freeze/
DREADME7 What is Freeze?
10 Freeze make it possible to ship arbitrary Python programs to people
31 How does Freeze know which modules to include?
34 Previous versions of Freeze used a pretty simple-minded algorithm to
40 This has been remedied: Freeze now uses the regular Python parser to
48 This new version of Freeze also knows about Python's new package
52 to determine which modules are to be imported, while Freeze will do a
55 One tricky issue: Freeze assumes that the Python interpreter and
56 environment you're using to run Freeze is the same one that would be
65 How do I use Freeze?
[all …]
/external/grpc-grpc/src/csharp/Grpc.Core/
DMetadata.cs47 public static readonly Metadata Empty = new Metadata().Freeze();
71 internal Metadata Freeze() in Freeze() method in Grpc.Core.Metadata
/external/v8/src/wasm/
Dsignature-map.h37 void Freeze() { frozen_ = true; } in Freeze() function
Dmodule-decoder.cc436 module_->signature_map.Freeze(); in DecodeTypeSection()
/external/grpc-grpc/src/csharp/Grpc.Core.Tests/
DMetadataTest.cs209 var metadata = CreateMetadata().Freeze(); in FreezeMakesReadOnly()
/external/chromium-trace/catapult/common/py_vulcanize/py_vulcanize/
Dproject.py96 def Freeze(self): member in Project
/external/ltp/testcases/kernel/controllers/freezer/
D00_description.txt40 Freeze the cgroup and then make sure that writing "FREEZING" into
DTODO71 Write a test using two sample cgroups (A and B). Freeze A. Move tasks
/external/protobuf/php/ext/google/protobuf/
Dupb.h1330 static bool Freeze(Def* const* defs, int n, Status* status);
1331 static bool Freeze(const std::vector<Def*>& defs, Status* status);
1851 bool Freeze(Status* s);
2182 bool Freeze(Status* s);
2463 inline bool Def::Freeze(Def* const* defs, int n, Status* status) { in Freeze() function
2466 inline bool Def::Freeze(const std::vector<Def*>& defs, Status* status) { in Freeze() function
2680 inline bool MessageDef::Freeze(Status* status) { in Freeze() function
2867 inline bool EnumDef::Freeze(Status* status) { in Freeze() function
3465 bool Freeze(Status* s);
3469 static bool Freeze(Handlers*const* handlers, int n, Status* s);
[all …]
/external/protobuf/ruby/ext/google/protobuf_c/
Dupb.h1737 static bool Freeze(Def* const* defs, size_t n, Status* status);
1738 static bool Freeze(const std::vector<Def*>& defs, Status* status);
2319 bool Freeze(Status* s);
2670 bool Freeze(Status* s);
2990 bool Freeze(Status* s);
3064 inline bool Def::Freeze(Def* const* defs, size_t n, Status* status) {
3067 inline bool Def::Freeze(const std::vector<Def*>& defs, Status* status) {
3305 inline bool MessageDef::Freeze(Status* status) {
3495 inline bool EnumDef::Freeze(Status* status) {
4161 bool Freeze(Status* s);
[all …]
/external/python/cpython2/Doc/faq/
Dgui.rst97 Freeze is a tool to create stand-alone applications. When freezing Tkinter
/external/python/cpython2/Doc/library/
Dfl.rst198 Freeze the form.
415 Freeze the object.
/external/python/cpython3/Doc/faq/
Dgui.rst121 Freeze is a tool to create stand-alone applications. When freezing Tkinter
/external/python/cpython3/Doc/library/
Dgc.rst179 Freeze all the objects tracked by gc - move them to a permanent generation
/external/tensorflow/tensorflow/lite/experimental/examples/lstm/g3doc/
DREADME.md288 # Freeze the graph.
/external/tensorflow/tensorflow/examples/ios/camera/
DCameraExampleViewController.mm197 [sender setTitle:@"Freeze Frame" forState:UIControlStateNormal];
/external/tensorflow/tensorflow/lite/examples/ios/camera/
DCameraExampleViewController.mm266 [sender setTitle:@"Freeze Frame" forState:UIControlStateNormal];
/external/deqp-deps/SPIRV-Tools/
DREADME.md94 * Freeze spec constant
/external/swiftshader/third_party/SPIRV-Tools/
DREADME.md94 * Freeze spec constant
DCHANGES692 - Freeze spec constant to their default values
/external/toolchain-utils/android_bench_suite/
Dautotest.diff498 + # Freeze system

12