Home
last modified time | relevance | path

Searched refs:registry (Results 1 – 25 of 1036) sorted by relevance

12345678910>>...42

/external/guava/guava-tests/test/com/google/common/eventbus/
DSubscriberRegistryTest.java31 private final SubscriberRegistry registry = new SubscriberRegistry(new EventBus()); field in SubscriberRegistryTest
34 assertEquals(0, registry.getSubscribersForTesting(String.class).size()); in testRegister()
36 registry.register(new StringSubscriber()); in testRegister()
37 assertEquals(1, registry.getSubscribersForTesting(String.class).size()); in testRegister()
39 registry.register(new StringSubscriber()); in testRegister()
40 assertEquals(2, registry.getSubscribersForTesting(String.class).size()); in testRegister()
42 registry.register(new ObjectSubscriber()); in testRegister()
43 assertEquals(2, registry.getSubscribersForTesting(String.class).size()); in testRegister()
44 assertEquals(1, registry.getSubscribersForTesting(Object.class).size()); in testRegister()
51 registry.register(s1); in testUnregister()
[all …]
/external/guava/android/guava-tests/test/com/google/common/eventbus/
DSubscriberRegistryTest.java31 private final SubscriberRegistry registry = new SubscriberRegistry(new EventBus()); field in SubscriberRegistryTest
34 assertEquals(0, registry.getSubscribersForTesting(String.class).size()); in testRegister()
36 registry.register(new StringSubscriber()); in testRegister()
37 assertEquals(1, registry.getSubscribersForTesting(String.class).size()); in testRegister()
39 registry.register(new StringSubscriber()); in testRegister()
40 assertEquals(2, registry.getSubscribersForTesting(String.class).size()); in testRegister()
42 registry.register(new ObjectSubscriber()); in testRegister()
43 assertEquals(2, registry.getSubscribersForTesting(String.class).size()); in testRegister()
44 assertEquals(1, registry.getSubscribersForTesting(Object.class).size()); in testRegister()
51 registry.register(s1); in testUnregister()
[all …]
/external/llvm-project/compiler-rt/lib/sanitizer_common/tests/
Dsanitizer_thread_registry_test.cpp34 static void CheckThreadQuantity(ThreadRegistry *registry, uptr exp_total, in CheckThreadQuantity() argument
37 registry->GetNumberOfThreads(&total, &running, &alive); in CheckThreadQuantity()
66 static void TestRegistry(ThreadRegistry *registry, bool has_quarantine) { in TestRegistry() argument
68 EXPECT_EQ(0U, registry->CreateThread(get_uid(0), true, -1, 0)); in TestRegistry()
69 registry->StartThread(0, 0, ThreadType::Regular, 0); in TestRegistry()
72 EXPECT_EQ(i, registry->CreateThread(get_uid(i), is_detached(i), 0, 0)); in TestRegistry()
74 CheckThreadQuantity(registry, 11, 1, 11); in TestRegistry()
77 registry->StartThread(i, 0, ThreadType::Regular, 0); in TestRegistry()
79 CheckThreadQuantity(registry, 11, 6, 11); in TestRegistry()
82 registry->FinishThread(i); in TestRegistry()
[all …]
/external/compiler-rt/lib/sanitizer_common/tests/
Dsanitizer_thread_registry_test.cc35 static void CheckThreadQuantity(ThreadRegistry *registry, uptr exp_total, in CheckThreadQuantity() argument
38 registry->GetNumberOfThreads(&total, &running, &alive); in CheckThreadQuantity()
67 static void TestRegistry(ThreadRegistry *registry, bool has_quarantine) { in TestRegistry() argument
69 EXPECT_EQ(0U, registry->CreateThread(get_uid(0), true, -1, 0)); in TestRegistry()
70 registry->StartThread(0, 0, 0); in TestRegistry()
73 EXPECT_EQ(i, registry->CreateThread(get_uid(i), is_detached(i), 0, 0)); in TestRegistry()
75 CheckThreadQuantity(registry, 11, 1, 11); in TestRegistry()
78 registry->StartThread(i, 0, 0); in TestRegistry()
80 CheckThreadQuantity(registry, 11, 6, 11); in TestRegistry()
83 registry->FinishThread(i); in TestRegistry()
[all …]
/external/libchrome/mojo/public/cpp/bindings/tests/
Dsync_handle_registry_unittest.cc19 const scoped_refptr<SyncHandleRegistry>& registry() { return registry_; } in registry() function in mojo::SyncHandleRegistryTest
36 registry()->RegisterEvent(&e, callback1); in TEST_F()
37 registry()->RegisterEvent(&e, callback2); in TEST_F()
40 registry()->Wait(stop_flags, 2); in TEST_F()
44 registry()->UnregisterEvent(&e, callback1); in TEST_F()
49 registry()->Wait(stop_flags, 2); in TEST_F()
54 registry()->UnregisterEvent(&e, callback2); in TEST_F()
66 scoped_refptr<SyncHandleRegistry> registry, bool* called) { in TEST_F() argument
67 registry->UnregisterEvent(e, other_callback); in TEST_F()
70 &e, callback1, registry(), &called2); in TEST_F()
[all …]
/external/grpc-grpc-java/core/src/test/java/io/grpc/util/
DMutableHandlerRegistryTest.java46 private MutableHandlerRegistry registry = new MutableHandlerRegistry(); field in MutableHandlerRegistryTest
111 assertNull(registry.addService(basicServiceDefinition)); in simpleLookup()
112 ServerMethodDefinition<?, ?> method = registry.lookupMethod("basic/flow"); in simpleLookup()
115 assertNull(registry.lookupMethod("/basic/flow")); in simpleLookup()
116 assertNull(registry.lookupMethod("basic/basic")); in simpleLookup()
117 assertNull(registry.lookupMethod("flow/flow")); in simpleLookup()
118 assertNull(registry.lookupMethod("completely/random")); in simpleLookup()
131 assertNull(registry.addService(bindableService)); in simpleLookupWithBindable()
133 ServerMethodDefinition<?, ?> method = registry.lookupMethod("basic/flow"); in simpleLookupWithBindable()
139 assertNull(registry.addService(basicServiceDefinition)); in multiServiceLookup()
[all …]
/external/libchrome/components/policy/core/common/
Dschema_registry_unittest.cc70 SchemaRegistry registry; in TEST() local
71 registry.AddObserver(&observer); in TEST()
73 ASSERT_TRUE(registry.schema_map().get()); in TEST()
74 EXPECT_FALSE(registry.schema_map()->GetSchema( in TEST()
78 registry.RegisterComponent(PolicyNamespace(POLICY_DOMAIN_EXTENSIONS, "abc"), in TEST()
85 registry.RegisterComponent(PolicyNamespace(POLICY_DOMAIN_EXTENSIONS, "abc"), in TEST()
89 EXPECT_TRUE(registry.schema_map()->GetSchema( in TEST()
93 registry.UnregisterComponent( in TEST()
97 EXPECT_FALSE(registry.schema_map()->GetSchema( in TEST()
106 registry.RegisterComponents(POLICY_DOMAIN_EXTENSIONS, components); in TEST()
[all …]
/external/deqp/external/openglcts/modules/
DglcTestPackageRegistry.cpp273 tcu::TestPackageRegistry* registry = tcu::TestPackageRegistry::getSingleton(); in registerPackages() local
275 registry->registerPackage("CTS-Configs", createConfigPackage); in registerPackages()
278 registry->registerPackage("dEQP-EGL", createdEQPEGLPackage); in registerPackages()
280 registry->registerPackage("KHR-GLES2", createES2Package); in registerPackages()
282 registry->registerPackage("dEQP-GLES2", createdEQPES2Package); in registerPackages()
286 registry->registerPackage("GTF-GLES2", createES2GTFPackage); in registerPackages()
289 registry->registerPackage("KHR-GLES3", createES30Package); in registerPackages()
291 registry->registerPackage("dEQP-GLES3", createdEQPES30Package); in registerPackages()
295 registry->registerPackage("GTF-GLES3", createES30GTFPackage); in registerPackages()
299 registry->registerPackage("dEQP-GLES31", createdEQPES31Package); in registerPackages()
[all …]
/external/protobuf/csharp/src/Google.Protobuf.Test/Reflection/
DTypeRegistryTest.cs45 … var registry = TypeRegistry.FromFiles(DurationReflection.Descriptor, StructReflection.Descriptor); in CreateWithFileDescriptor()
46 AssertDescriptorPresent(registry, Duration.Descriptor); in CreateWithFileDescriptor()
47 AssertDescriptorPresent(registry, ListValue.Descriptor); in CreateWithFileDescriptor()
48 AssertDescriptorAbsent(registry, Timestamp.Descriptor); in CreateWithFileDescriptor()
55 var registry = TypeRegistry.FromMessages(TestAllTypes.Types.NestedMessage.Descriptor); in TypesFromSameFile()
57 AssertDescriptorPresent(registry, TestFieldOrderings.Descriptor); in TypesFromSameFile()
59 AssertDescriptorPresent(registry, TestFieldOrderings.Types.NestedMessage.Descriptor); in TypesFromSameFile()
65 var registry = TypeRegistry.FromMessages(TestAllTypes.Descriptor); in DependenciesAreIncluded()
67 AssertDescriptorPresent(registry, ImportMessage.Descriptor); in DependenciesAreIncluded()
69 AssertDescriptorPresent(registry, PublicImportMessage.Descriptor); in DependenciesAreIncluded()
[all …]
/external/protobuf/csharp/compatibility_tests/v3.0.0/src/Google.Protobuf.Test/Reflection/
DTypeRegistryTest.cs45 … var registry = TypeRegistry.FromFiles(DurationReflection.Descriptor, StructReflection.Descriptor); in CreateWithFileDescriptor()
46 AssertDescriptorPresent(registry, Duration.Descriptor); in CreateWithFileDescriptor()
47 AssertDescriptorPresent(registry, ListValue.Descriptor); in CreateWithFileDescriptor()
48 AssertDescriptorAbsent(registry, Timestamp.Descriptor); in CreateWithFileDescriptor()
55 var registry = TypeRegistry.FromMessages(TestAllTypes.Types.NestedMessage.Descriptor); in TypesFromSameFile()
57 AssertDescriptorPresent(registry, TestFieldOrderings.Descriptor); in TypesFromSameFile()
59 AssertDescriptorPresent(registry, TestFieldOrderings.Types.NestedMessage.Descriptor); in TypesFromSameFile()
65 var registry = TypeRegistry.FromMessages(TestAllTypes.Descriptor); in DependenciesAreIncluded()
67 AssertDescriptorPresent(registry, ImportMessage.Descriptor); in DependenciesAreIncluded()
69 AssertDescriptorPresent(registry, PublicImportMessage.Descriptor); in DependenciesAreIncluded()
[all …]
/external/rust/crates/tokio/src/signal/
Dregistry.rs119 registry: Registry<OsStorage>, field
133 self.registry.register_listener(event_id) in register_listener()
139 self.registry.record_event(event_id); in record_event()
146 self.registry.broadcast() in broadcast()
151 &self.registry.storage in storage()
163 registry: Registry::new(OsStorage::init()), in globals()
182 let registry = Registry::new(vec![ in smoke() localVariable
188 let first = registry.register_listener(0); in smoke()
189 let second = registry.register_listener(1); in smoke()
190 let third = registry.register_listener(2); in smoke()
[all …]
/external/angle/third_party/vulkan-deps/spirv-tools/src/tools/sva/
Dyarn.lock7 …resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.5.5.tgz#bc0782f6d69f7b7d49…
14 …resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.5.0.tgz#56d11312bd9248fa6195…
23 …resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.39.tgz#e177e699ee1b8c22d23174caa…
28 …resolved "https://registry.yarnpkg.com/@types/node/-/node-12.7.5.tgz#e19436e7f8e9b4601005d73673b6d…
33 …resolved "https://registry.yarnpkg.com/@zeit/schemas/-/schemas-2.6.0.tgz#004e8e553b4cd53d538bd38ea…
38 …resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.7.tgz#531bc726517a3b2b41f850021c6cc15…
46 …resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.0.2.tgz#84b68ea44b373c4f8686023a551…
51 …resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.1.1.tgz#e35668de0b402f359de515c5482a1ab9f89…
56 …resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.5.3.tgz#71a569d189ecf4f4f321224fecb166f071dd90f…
66 …resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.10.2.tgz#d3cea04d6b017b2894ad69040fec8b623eb4bd…
[all …]
/external/deqp-deps/SPIRV-Tools/tools/sva/
Dyarn.lock7 …resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.5.5.tgz#bc0782f6d69f7b7d49…
14 …resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.5.0.tgz#56d11312bd9248fa6195…
23 …resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.39.tgz#e177e699ee1b8c22d23174caa…
28 …resolved "https://registry.yarnpkg.com/@types/node/-/node-12.7.5.tgz#e19436e7f8e9b4601005d73673b6d…
33 …resolved "https://registry.yarnpkg.com/@zeit/schemas/-/schemas-2.6.0.tgz#004e8e553b4cd53d538bd38ea…
38 …resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.7.tgz#531bc726517a3b2b41f850021c6cc15…
46 …resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.0.2.tgz#84b68ea44b373c4f8686023a551…
51 …resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.1.1.tgz#e35668de0b402f359de515c5482a1ab9f89…
56 …resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.5.3.tgz#71a569d189ecf4f4f321224fecb166f071dd90f…
66 …resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.10.2.tgz#d3cea04d6b017b2894ad69040fec8b623eb4bd…
[all …]
/external/swiftshader/third_party/SPIRV-Tools/tools/sva/
Dyarn.lock7 …resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.5.5.tgz#bc0782f6d69f7b7d49…
14 …resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.5.0.tgz#56d11312bd9248fa6195…
23 …resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.39.tgz#e177e699ee1b8c22d23174caa…
28 …resolved "https://registry.yarnpkg.com/@types/node/-/node-12.7.5.tgz#e19436e7f8e9b4601005d73673b6d…
33 …resolved "https://registry.yarnpkg.com/@zeit/schemas/-/schemas-2.6.0.tgz#004e8e553b4cd53d538bd38ea…
38 …resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.7.tgz#531bc726517a3b2b41f850021c6cc15…
46 …resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.0.2.tgz#84b68ea44b373c4f8686023a551…
51 …resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.1.1.tgz#e35668de0b402f359de515c5482a1ab9f89…
56 …resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.5.3.tgz#71a569d189ecf4f4f321224fecb166f071dd90f…
66 …resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.10.2.tgz#d3cea04d6b017b2894ad69040fec8b623eb4bd…
[all …]
/external/angle/src/libANGLE/renderer/gl/
DFeatureSupportGL.md7 |Framebuffer/renderbuffer objects|3.0|[GL_EXT_framebuffer_object](https://www.opengl.org/registry/s…
8registry/specs/EXT/framebuffer_blit.txt)|3.0|[GL_ANGLE_framebuffer_blit](https://www.khronos.org/r…
9registry/specs/EXT/framebuffer_multisample.txt)|3.0|[GL_EXT_multisampled_render_to_texture](https:…
10registry/specs/ARB/depth_texture.txt)|3.0|[GL_OES_depth_texture](https://www.khronos.org/registry/…
11registry/specs/ARB/draw_buffers.txt) or [GL_EXT_draw_buffers2](https://www.opengl.org/registry/spe…
12 …ture3D](https://www.opengl.org/registry/specs/EXT/texture3D.txt)|3.0|[GL_OES_texture_3D](https://w…
13 |Array textures|3.0|[GL_EXT_texture_array](https://www.opengl.org/registry/specs/EXT/texture_array.…
14 …://www.khronos.org/registry/gles/extensions/EXT/EXT_texture_storage.txt)|3.0|[GL_EXT_texture_stora…
15 |Uniform buffer object|3.1|[GL_ARB_uniform_buffer_object](https://www.opengl.org/registry/specs/ARB…
16 |Sync objects|3.2|[GL_ARB_sync](https://www.opengl.org/registry/specs/ARB/sync.txt)|3.0|--||
[all …]
/external/pigweed/
Dyarn.lock7 …resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.10.1.tgz#d5481c5095daa1c57…
14 …resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-ident…
19 …resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.10.1.tgz#841d098ba613ba1a427…
28 …resolved "https://registry.yarnpkg.com/@babel/runtime-corejs3/-/runtime-corejs3-7.10.2.tgz#3511797…
36 …resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.10.2.tgz#d103f21f2602497d38348a3…
43 …resolved "https://registry.yarnpkg.com/@bazel/jasmine/-/jasmine-2.2.0.tgz#78fc4171362113d993e2473b…
51 …resolved "https://registry.yarnpkg.com/@bazel/karma/-/karma-2.2.0.tgz#9bf6f6f1aa5f12b25468b1cad5e4…
58 …resolved "https://registry.yarnpkg.com/@bazel/rollup/-/rollup-2.2.0.tgz#15651d545114e08db056f10a1e…
63 …resolved "https://registry.yarnpkg.com/@bazel/typescript/-/typescript-2.2.0.tgz#f2d3dce8715d574fe3…
73 …resolved "https://registry.yarnpkg.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz#75a2e8b51cb758a75…
[all …]
/external/rust/crates/codespan-reporting/
DCargo.lock6 source = "registry+https://github.com/rust-lang/crates.io-index"
15 source = "registry+https://github.com/rust-lang/crates.io-index"
21 source = "registry+https://github.com/rust-lang/crates.io-index"
32 source = "registry+https://github.com/rust-lang/crates.io-index"
38 source = "registry+https://github.com/rust-lang/crates.io-index"
44 source = "registry+https://github.com/rust-lang/crates.io-index"
50 source = "registry+https://github.com/rust-lang/crates.io-index"
56 source = "registry+https://github.com/rust-lang/crates.io-index"
87 source = "registry+https://github.com/rust-lang/crates.io-index"
100 source = "registry+https://github.com/rust-lang/crates.io-index"
[all …]
/external/rust/crates/async-stream/
DCargo.lock6 source = "registry+https://github.com/rust-lang/crates.io-index"
24 source = "registry+https://github.com/rust-lang/crates.io-index"
35 source = "registry+https://github.com/rust-lang/crates.io-index"
41 source = "registry+https://github.com/rust-lang/crates.io-index"
47 source = "registry+https://github.com/rust-lang/crates.io-index"
53 source = "registry+https://github.com/rust-lang/crates.io-index"
59 source = "registry+https://github.com/rust-lang/crates.io-index"
69 source = "registry+https://github.com/rust-lang/crates.io-index"
75 source = "registry+https://github.com/rust-lang/crates.io-index"
81 source = "registry+https://github.com/rust-lang/crates.io-index"
[all …]
/external/tensorflow/tensorflow/python/framework/experimental/
Dtape.cc30 Status RegisterGradients(GradientRegistry* registry) { in RegisterGradients() argument
32 TF_RETURN_IF_ERROR(registry->Register("AddV2", AddRegisterer)); in RegisterGradients()
33 TF_RETURN_IF_ERROR(registry->Register("Exp", ExpRegisterer)); in RegisterGradients()
34 TF_RETURN_IF_ERROR(registry->Register("MatMul", MatMulRegisterer)); in RegisterGradients()
35 TF_RETURN_IF_ERROR(registry->Register("Relu", ReluRegisterer)); in RegisterGradients()
37 registry->Register("SparseSoftmaxCrossEntropyWithLogits", in RegisterGradients()
39 TF_RETURN_IF_ERROR(registry->Register("Neg", NegRegisterer)); in RegisterGradients()
40 TF_RETURN_IF_ERROR(registry->Register("Sub", SubRegisterer)); in RegisterGradients()
41 TF_RETURN_IF_ERROR(registry->Register("Mul", MulRegisterer)); in RegisterGradients()
42 TF_RETURN_IF_ERROR(registry->Register("Log1p", Log1pRegisterer)); in RegisterGradients()
[all …]
/external/tensorflow/tensorflow/compiler/tf2xla/
Dxla_op_registry.cc116 XlaOpRegistry& registry = Instance(); in RegisterCompilationDevice() local
117 mutex_lock lock(registry.mutex_); in RegisterCompilationDevice()
119 registry.compilation_devices_.emplace(device_name, registration); in RegisterCompilationDevice()
127 XlaOpRegistry& registry = Instance(); in RegisterBackend() local
128 mutex_lock lock(registry.mutex_); in RegisterBackend()
129 auto result = registry.backends_.emplace(compilation_device_name, Backend()); in RegisterBackend()
139 XlaOpRegistry& registry = Instance(); in IsCompilationDevice() local
140 mutex_lock lock(registry.mutex_); in IsCompilationDevice()
141 return registry.backends_.find(device_name) != registry.backends_.end(); in IsCompilationDevice()
146 XlaOpRegistry& registry = Instance(); in GetCompilationDevice() local
[all …]
/external/rust/crates/quiche/
DCargo.lock6 source = "registry+https://github.com/rust-lang/crates.io-index"
12 source = "registry+https://github.com/rust-lang/crates.io-index"
18 source = "registry+https://github.com/rust-lang/crates.io-index"
24 source = "registry+https://github.com/rust-lang/crates.io-index"
30 source = "registry+https://github.com/rust-lang/crates.io-index"
39 source = "registry+https://github.com/rust-lang/crates.io-index"
49 source = "registry+https://github.com/rust-lang/crates.io-index"
63 source = "registry+https://github.com/rust-lang/crates.io-index"
74 source = "registry+https://github.com/rust-lang/crates.io-index"
80 source = "registry+https://github.com/rust-lang/crates.io-index"
[all …]
/external/rust/crates/grpcio-compiler/
DCargo.lock6 source = "registry+https://github.com/rust-lang/crates.io-index"
12 source = "registry+https://github.com/rust-lang/crates.io-index"
18 source = "registry+https://github.com/rust-lang/crates.io-index"
24 source = "registry+https://github.com/rust-lang/crates.io-index"
30 source = "registry+https://github.com/rust-lang/crates.io-index"
36 source = "registry+https://github.com/rust-lang/crates.io-index"
47 source = "registry+https://github.com/rust-lang/crates.io-index"
53 source = "registry+https://github.com/rust-lang/crates.io-index"
59 source = "registry+https://github.com/rust-lang/crates.io-index"
82 source = "registry+https://github.com/rust-lang/crates.io-index"
[all …]
/external/rust/crates/bindgen/
DCargo.lock8 source = "registry+https://github.com/rust-lang/crates.io-index"
17 source = "registry+https://github.com/rust-lang/crates.io-index"
26 source = "registry+https://github.com/rust-lang/crates.io-index"
59 source = "registry+https://github.com/rust-lang/crates.io-index"
65 source = "registry+https://github.com/rust-lang/crates.io-index"
74 source = "registry+https://github.com/rust-lang/crates.io-index"
80 source = "registry+https://github.com/rust-lang/crates.io-index"
86 source = "registry+https://github.com/rust-lang/crates.io-index"
97 source = "registry+https://github.com/rust-lang/crates.io-index"
112 source = "registry+https://github.com/rust-lang/crates.io-index"
[all …]
/external/rust/crates/rayon-core/src/spawn/
Dmod.rs2 use crate::registry::Registry;
71 pub(super) unsafe fn spawn_in<F>(func: F, registry: &Arc<Registry>) in spawn_in()
81 let job_ref = spawn_job(func, registry); in spawn_in()
82 registry.inject_or_push(job_ref); in spawn_in()
86 unsafe fn spawn_job<F>(func: F, registry: &Arc<Registry>) -> JobRef in spawn_job()
92 registry.increment_terminate_count(); in spawn_job()
95 let registry = registry.clone(); in spawn_job() localVariable
100 registry.handle_panic(err); in spawn_job()
103 registry.terminate(); // (*) permit registry to terminate now in spawn_job()
146 pub(super) unsafe fn spawn_fifo_in<F>(func: F, registry: &Arc<Registry>) in spawn_fifo_in()
[all …]
/external/rust/cxx/third-party/
DCargo.lock8 source = "registry+https://github.com/rust-lang/crates.io-index"
17 source = "registry+https://github.com/rust-lang/crates.io-index"
28 source = "registry+https://github.com/rust-lang/crates.io-index"
34 source = "registry+https://github.com/rust-lang/crates.io-index"
43 source = "registry+https://github.com/rust-lang/crates.io-index"
58 source = "registry+https://github.com/rust-lang/crates.io-index"
151 source = "registry+https://github.com/rust-lang/crates.io-index"
157 source = "registry+https://github.com/rust-lang/crates.io-index"
163 source = "registry+https://github.com/rust-lang/crates.io-index"
172 source = "registry+https://github.com/rust-lang/crates.io-index"
[all …]

12345678910>>...42