Home
last modified time | relevance | path

Searched refs:exposed (Results 1 – 25 of 384) sorted by relevance

12345678910>>...16

/external/python/cpython2/Lib/multiprocessing/
Dmanagers.py242 obj, exposed, gettypeid = id_to_obj[ident]
244 if methodname not in exposed:
247 (methodname, type(obj), exposed)
379 callable, exposed, method_to_typeid, proxytype = \
388 if exposed is None:
389 exposed = public_methods(obj)
392 exposed = list(exposed) + list(method_to_typeid)
398 self.id_to_obj[ident] = (obj, set(exposed), method_to_typeid)
407 return ident, tuple(exposed)
567 id, exposed = dispatch(conn, None, 'create', (typeid,)+args, kwds)
[all …]
/external/python/cpython3/Lib/multiprocessing/
Dmanagers.py246 obj, exposed, gettypeid = id_to_obj[ident]
249 obj, exposed, gettypeid = \
254 if methodname not in exposed:
257 (methodname, type(obj), exposed)
394 callable, exposed, method_to_typeid, proxytype = \
405 if exposed is None:
406 exposed = public_methods(obj)
412 exposed = list(exposed) + list(method_to_typeid)
418 self.id_to_obj[ident] = (obj, set(exposed), method_to_typeid)
423 return ident, tuple(exposed)
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
DREADME.txt.system23 1. No system header files are to be exposed through the interface.
24 2. Std C++ and Std C header files are okay to be exposed through the interface.
25 3. No exposed system-specific functions.
26 4. No exposed system-specific data.
/external/llvm/lib/Support/
DREADME.txt.system23 1. No system header files are to be exposed through the interface.
24 2. Std C++ and Std C header files are okay to be exposed through the interface.
25 3. No exposed system-specific functions.
26 4. No exposed system-specific data.
/external/skqp/experimental/canvaskit/
DCHANGELOG.md10 - `SkPath.addRoundRect`, `SkPath.reset`, `SkPath.rewind` exposed.
11 - `SkCanvas.drawArc`, `SkCanvas.drawLine`, `SkCanvas.drawOval`, `SkCanvas.drawRoundRect` exposed.
30 - `SkFont` now exposed.
56 and `localMatrix` have been exposed.
/external/dagger2/javatests/dagger/functional/
DGenericTest.java118 Exposed exposed = component.exposed(); in packagePrivateTypeParameterDependencies() local
119 assertThat(exposed.gpp.t).isNotNull(); in packagePrivateTypeParameterDependencies()
120 assertThat(exposed.gpp2).isNotNull(); in packagePrivateTypeParameterDependencies()
/external/guice/extensions/throwingproviders/src/com/google/inject/throwingproviders/
DCheckedProviderMethod.java49 private final boolean exposed; field in CheckedProviderMethod
70 this.exposed = method.isAnnotationPresent(Exposed.class); in CheckedProviderMethod()
94 if (exposed) { in configure()
/external/perfetto/docs/contributing/
Dembedding.md13 … processor is exposed as a static library `//:trace_processor` to Bazel and `src/trace_processor:t…
17 …e_processor` tool described in other parts of the documentation. This is exposed as the `trace_pro…
21 …library is structured around the `TraceProcessor` class; all API methods exposed by trace processo…
49 The `DescribeSlice` function is exposed to SQL through the `describe_slice` table. This table has t…
/external/angle/doc/
DExtensionSupport.md62 * fn1: extensions are only exposed if underlying D3D9 device has support for
64 * fn2: extensions are only exposed when running on D3D9Ex (ie Win Vista/7)
65 * fn3: extension is only exposed when swiftshader is present
/external/webrtc/webrtc/tools/rtcbot/
DREADME12 no access to node.js specifics other than the exposed api via a test variable.
14 Part of the exposed api (test.spawnBot) allows a test to spawn a bot and
15 access its exposed API. Details are in botmanager.js.
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AMDGPU/
DSIIntrinsics.td19 // Fully-flexible TBUFFER_STORE_FORMAT_* except for the ADDR64 bit, which is not exposed
37 // Fully-flexible BUFFER_LOAD_DWORD_* except for the ADDR64 bit, which is not exposed
/external/v8/src/objects/
Djs-regexp.tq39 // The below fields are externally exposed.
53 // The groups field is externally exposed.
/external/guice/core/src/com/google/inject/internal/
DProviderMethod.java95 private final boolean exposed; field in ProviderMethod
119 this.exposed = method.isAnnotationPresent(Exposed.class); in ProviderMethod()
157 if (exposed) { in configure()
DAbstractBindingProcessor.java113 ExposedBindingImpl exposed = (ExposedBindingImpl) original; in isOkayDuplicate() local
114 InjectorImpl exposedFrom = (InjectorImpl) exposed.getPrivateElements().getInjector(); in isOkayDuplicate()
/external/dagger2/javatests/dagger/functional/binds/subpackage/
DNotExposedInjectsMembers.java22 @Inject Exposed exposed; field in NotExposedInjectsMembers
/external/v8/include/
DAPIDesign.md44 paradigms. Similarly to how the API exposed to scripts aims to provide good
69 All debugging capabilities of V8 should be exposed via the inspector protocol.
70 The exception to this are profiling features exposed via v8-profiler.h.
/external/autotest/client/common_lib/cros/fake_device_server/
Dmeta_handler.py15 exposed = True variable in MetaHandler
Dfail_control.py17 exposed = True variable in FailControl
/external/guice/extensions/grapher/test/com/google/inject/grapher/demo/
DDeLorian.java27 @Inject PrivateTestModule.Exposed exposed; field in DeLorian
/external/guice/core/src/com/google/inject/util/
DModules.java184 for (Key exposed : privateElements.getExposedKeys()) { in configure()
185 privateBinder.withSource(privateElements.getExposedSource(exposed)).expose(exposed); in configure()
/external/guice/extensions/servlet/test/com/google/inject/servlet/
DServletScopesTest.java198 for (Key<?> exposed : privateElements.getExposedKeys()) { in indexBindings()
199 builder.put(exposed, privateBindings.get(exposed)); in indexBindings()
/external/libchrome/mojo/core/
Dexport_only_thunks_api.lst5 # Linker script that ensures only MojoGetSystemThunks is exposed from the
/external/mesa3d/src/freedreno/drm-shim/
DREADME.md9 By default, a630 is exposed. The chip can be selected an enviornment
/external/dagger2/javatests/dagger/functional/binds/
DAccessesExposedComponent.java37 Exposed exposed(); in exposed() method
/external/python/cpython3/Doc/c-api/
Dmethod.rst18 method type. It is not exposed to Python programs.
61 is exposed to Python programs as ``types.MethodType``.

12345678910>>...16