Home
last modified time | relevance | path

Searched full:prepare (Results 1 – 25 of 4885) sorted by relevance

12345678910>>...196

/external/crosvm/infra/recipe_modules/crosvm/examples/host_build_context.expected/
Dbasic_linux.json4 "name": "Prepare Host Build"
8 "name": "Prepare Host Build.Prepare git",
21 "name": "Prepare Host Build.Prepare git.git config user.name",
34 "name": "Prepare Host Build.Prepare git.git config user.email",
48 "name": "Prepare Host Build.Prepare git.Set git config: user.name",
62 "name": "Prepare Host Build.Prepare git.Set git config: user.email",
77 "name": "Prepare Host Build.Prepare git.Set git config: credential.helper",
84 "name": "Prepare Host Build.Prepare source",
102 "name": "Prepare Host Build.Prepare source.Ensure builder_cache exists",
140 "name": "Prepare Host Build.Prepare source.bot_update",
[all …]
Dbasic_windows.json4 "name": "Prepare Host Build"
8 "name": "Prepare Host Build.Prepare git",
21 "name": "Prepare Host Build.Prepare git.git config user.name",
34 "name": "Prepare Host Build.Prepare git.git config user.email",
48 "name": "Prepare Host Build.Prepare git.Set git config: user.name",
62 "name": "Prepare Host Build.Prepare git.Set git config: user.email",
69 "name": "Prepare Host Build.Prepare source",
87 "name": "Prepare Host Build.Prepare source.Ensure builder_cache exists",
125 "name": "Prepare Host Build.Prepare source.bot_update",
167 "name": "Prepare Host Build.Prepare source.Sync submodules",
[all …]
/external/crosvm/infra/recipe_modules/crosvm/examples/cros_container_build_context.expected/
Dbasic.json4 "name": "Prepare Cros Container Build"
8 "name": "Prepare Cros Container Build.Prepare git",
21 "name": "Prepare Cros Container Build.Prepare git.git config user.name",
34 "name": "Prepare Cros Container Build.Prepare git.git config user.email",
48 "name": "Prepare Cros Container Build.Prepare git.Set git config: user.name",
62 "name": "Prepare Cros Container Build.Prepare git.Set git config: user.email",
77 "name": "Prepare Cros Container Build.Prepare git.Set git config: credential.helper",
84 "name": "Prepare Cros Container Build.Prepare source",
102 "name": "Prepare Cros Container Build.Prepare source.Ensure builder_cache exists",
140 "name": "Prepare Cros Container Build.Prepare source.bot_update",
[all …]
/external/crosvm/infra/recipe_modules/crosvm/examples/container_build_context.expected/
Dbasic.json4 "name": "Prepare Container Build"
8 "name": "Prepare Container Build.Prepare git",
21 "name": "Prepare Container Build.Prepare git.git config user.name",
34 "name": "Prepare Container Build.Prepare git.git config user.email",
48 "name": "Prepare Container Build.Prepare git.Set git config: user.name",
62 "name": "Prepare Container Build.Prepare git.Set git config: user.email",
77 "name": "Prepare Container Build.Prepare git.Set git config: credential.helper",
84 "name": "Prepare Container Build.Prepare source",
102 "name": "Prepare Container Build.Prepare source.Ensure builder_cache exists",
140 "name": "Prepare Container Build.Prepare source.bot_update",
[all …]
/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/extensions/media2/src/androidTest/java/com/google/android/exoplayer2/ext/media2/
DSessionPlayerConnectorTest.java111 sessionPlayerConnector.prepare(); in play_onceWithAudioResource_changesPlayerStateToPlaying()
146 sessionPlayerConnector.prepare(); in play_onceWithAudioResourceOnMainThread_notifiesOnPlayerStateChanged()
157 Looper.prepare(); in play_withForwardingPlayer_isSkipped()
205 sessionPlayerConnector.prepare(); in setMediaItem_withAudioResource_notifiesOnPlaybackCompleted()
228 sessionPlayerConnector.prepare(); in setMediaItem_withVideoResource_notifiesOnPlaybackCompleted()
250 assertPlayerResultSuccess(sessionPlayerConnector.prepare()); in getDuration_afterPrepared_returnsDuration()
285 sessionPlayerConnector.prepare(); in play_withDataSourceCallback_changesPlayerState()
339 sessionPlayerConnector.prepare().get(); in setPlaybackSpeed_afterPlayback_remainsSame()
355 assertPlayerResultSuccess(sessionPlayerConnector.prepare()); in seekTo_withSeriesOfSeek_succeeds()
380 // prepare() will be pending until readAllowed is countDowned. in seekTo_skipsUnnecessarySeek()
[all …]
/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/extensions/media2/src/androidTest/java/com/google/android/exoplayer2/ext/media2/
DSessionPlayerConnectorTest.java111 sessionPlayerConnector.prepare(); in play_onceWithAudioResource_changesPlayerStateToPlaying()
146 sessionPlayerConnector.prepare(); in play_onceWithAudioResourceOnMainThread_notifiesOnPlayerStateChanged()
157 Looper.prepare(); in play_withForwardingPlayer_isSkipped()
205 sessionPlayerConnector.prepare(); in setMediaItem_withAudioResource_notifiesOnPlaybackCompleted()
228 sessionPlayerConnector.prepare(); in setMediaItem_withVideoResource_notifiesOnPlaybackCompleted()
250 assertPlayerResultSuccess(sessionPlayerConnector.prepare()); in getDuration_afterPrepared_returnsDuration()
285 sessionPlayerConnector.prepare(); in play_withDataSourceCallback_changesPlayerState()
339 sessionPlayerConnector.prepare().get(); in setPlaybackSpeed_afterPlayback_remainsSame()
355 assertPlayerResultSuccess(sessionPlayerConnector.prepare()); in seekTo_withSeriesOfSeek_succeeds()
380 // prepare() will be pending until readAllowed is countDowned. in seekTo_skipsUnnecessarySeek()
[all …]
/external/drm_hwcomposer/.ci/android_headers/hardware/
Dhwcomposer.h47 * before (*prepare)() is called when the HWC_GEOMETRY_CHANGED flag is
48 * also set, otherwise, this field is preserved between (*prepare)()
52 * Always set by the caller before calling (*prepare)(), this value
60 * Always set by the caller before calling (*prepare)(), this value
75 * Set by the caller before calling (*prepare)() ONLY when the
78 * Set by the HWC implementation during (*prepare)(), this indicates
85 * Set by the HWC implementation during (*prepare)(), this indicates
91 * Set by the caller before calling (*prepare)(), this value indicates
98 * independently of the normal prepare/set cycle. The prepare/set calls
105 * (*prepare)(). However, doing so will result in the layer being shown
[all …]
/external/python/cpython3/Lib/
Dgraphlib.py25 """Subclass of ValueError raised by TopologicalSorter.prepare if cycles
70 Raises ValueError if called after "prepare".
73 raise ValueError("Nodes cannot be added after a call to prepare()")
84 def prepare(self): member in TopologicalSorter
93 raise ValueError("cannot prepare() more than once")
114 Raises ValueError if called without calling "prepare" previously.
117 raise ValueError("prepare() must be called first")
140 Raises ValueError if called without calling "prepare" previously.
143 raise ValueError("prepare() must be called first")
157 graph by using "add" or if called without calling "prepare" previously or if
[all …]
/external/tensorflow/tensorflow/lite/tools/optimize/calibration/
Dlogging_op_resolver_test.cc59 conv_registration.prepare = ConvPrepare; in TEST()
65 add_registration.prepare = AddPrepare; in TEST()
80 EXPECT_TRUE(reg->prepare == ConvPrepare); in TEST()
86 EXPECT_TRUE(reg->prepare == AddPrepare); in TEST()
93 conv_registration.prepare = ConvPrepare; in TEST()
99 add_registration.prepare = AddPrepare; in TEST()
120 conv_registration.prepare = ConvPrepare; in TEST()
126 add_registration.prepare = AddPrepare; in TEST()
139 EXPECT_TRUE(reg->prepare == ConvPrepare); in TEST()
149 custom_registration.prepare = CustomPrepare; in TEST()
[all …]
/external/crosvm/infra/recipe_modules/crosvm/examples/source_context.expected/
Drepair_submodules.json4 "name": "Prepare git"
26 "name": "Prepare git.git config user.name",
51 "name": "Prepare git.git config user.email",
77 "name": "Prepare git.Set git config: user.name",
103 "name": "Prepare git.Set git config: user.email",
130 "name": "Prepare git.Set git config: credential.helper",
137 "name": "Prepare source",
167 "name": "Prepare source.Ensure builder_cache exists",
219 "name": "Prepare source.bot_update",
261 "name": "Prepare source.Sync submodules",
[all …]
Dprepare_source_for_ci.json4 "name": "Prepare git"
26 "name": "Prepare git.git config user.name",
51 "name": "Prepare git.git config user.email",
77 "name": "Prepare git.Set git config: user.name",
103 "name": "Prepare git.Set git config: user.email",
130 "name": "Prepare git.Set git config: credential.helper",
137 "name": "Prepare source"
164 "name": "Prepare source.Ensure builder_cache exists",
216 "name": "Prepare source.bot_update",
258 "name": "Prepare source.Sync submodules",
[all …]
Dprepare_source_for_try.json4 "name": "Prepare git"
26 "name": "Prepare git.git config user.name",
51 "name": "Prepare git.git config user.email",
77 "name": "Prepare git.Set git config: user.name",
103 "name": "Prepare git.Set git config: user.email",
130 "name": "Prepare git.Set git config: credential.helper",
137 "name": "Prepare source"
164 "name": "Prepare source.Ensure builder_cache exists",
204 "name": "Prepare source.gerrit fetch current CL info",
276 "name": "Prepare source.bot_update",
[all …]
/external/tensorflow/tensorflow/lite/python/optimize/
Dcalibration_wrapper_pybind11.cc51 .def("Prepare", in PYBIND11_MODULE()
55 self.Prepare(input_shapes.ptr(), signature_key)); in PYBIND11_MODULE()
57 .def("Prepare", in PYBIND11_MODULE()
59 return tensorflow::PyoOrThrow(self.Prepare(input_shapes.ptr())); in PYBIND11_MODULE()
61 .def("Prepare", in PYBIND11_MODULE()
63 return tensorflow::PyoOrThrow(self.Prepare(signature_key)); in PYBIND11_MODULE()
65 .def("Prepare", in PYBIND11_MODULE()
67 return tensorflow::PyoOrThrow(self.Prepare()); in PYBIND11_MODULE()
/external/musl/src/thread/
Dpthread_atfork.c6 void (*prepare)(void); member
21 if (p->prepare) p->prepare(); in __fork_handler()
34 int pthread_atfork(void (*prepare)(void), void (*parent)(void), void (*child)(void)) in pthread_atfork()
42 new->prepare = prepare; in pthread_atfork()
/external/openthread/src/lib/spinel/
Dspinel_encoder.hpp143 …* Before using this method `BeginFrame()` must be called to start and prepare a new frame. Otherwi…
162 …* Before using this method `BeginFrame()` must be called to start and prepare a new input frame. O…
180 …* Before using this method `BeginFrame()` must be called to start and prepare a new input frame. O…
198 …* Before using this method `BeginFrame()` must be called to start and prepare a new input frame. O…
216 …* Before using this method `BeginFrame()` must be called to start and prepare a new input frame. O…
234 …* Before using this method `BeginFrame()` must be called to start and prepare a new input frame. O…
252 …* Before using this method `BeginFrame()` must be called to start and prepare a new input frame. O…
270 …* Before using this method `BeginFrame()` must be called to start and prepare a new input frame. O…
288 …* Before using this method `BeginFrame()` must be called to start and prepare a new input frame. O…
306 …* Before using this method `BeginFrame()` must be called to start and prepare a new input frame. O…
[all …]
/external/python/cpython3/Lib/test/
Dtest_graphlib.py11 ts.prepare()
35 ts.prepare()
134 with self.assertRaisesRegex(ValueError, r"prepare\(\) must be called first"):
136 with self.assertRaisesRegex(ValueError, r"prepare\(\) must be called first"):
138 with self.assertRaisesRegex(ValueError, r"prepare\(\) must be called first"):
143 ts.prepare()
144 with self.assertRaisesRegex(ValueError, r"cannot prepare\(\) more than once"):
145 ts.prepare()
151 ts.prepare()
163 ts.prepare()
[all …]
/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/library/core/src/test/java/com/google/android/exoplayer2/drm/
DDefaultDrmSessionManagerTest.java70 drmSessionManager.prepare(); in acquireSession_triggersKeyLoadAndSessionIsOpened()
93 drmSessionManager.prepare(); in keepaliveEnabled_sessionsKeptForRequestedTime()
118 drmSessionManager.prepare(); in keepaliveDisabled_sessionsReleasedImmediately()
140 drmSessionManager.prepare(); in managerRelease_allKeepaliveSessionsImmediatelyReleased()
164 drmSessionManager.prepare(); in managerRelease_keepaliveDisabled_doesntReleaseAnySessions()
190 drmSessionManager.prepare(); in managerRelease_mediaDrmNotReleasedUntilLastSessionReleased()
204 drmSessionManager.prepare(); in managerRelease_mediaDrmNotReleasedUntilLastSessionReleased()
214 drmSessionManager.prepare(); in managerRelease_mediaDrmNotReleasedUntilLastSessionReleased()
235 drmSessionManager.prepare(); in managerReleasedBeforeSession_keepaliveEnabled_managerOnlyReleasesOneKeepaliveReference()
274 drmSessionManager.prepare(); in maxConcurrentSessionsExceeded_allKeepAliveSessionsEagerlyReleased()
[all …]
/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/library/core/src/test/java/com/google/android/exoplayer2/drm/
DDefaultDrmSessionManagerTest.java70 drmSessionManager.prepare(); in acquireSession_triggersKeyLoadAndSessionIsOpened()
93 drmSessionManager.prepare(); in keepaliveEnabled_sessionsKeptForRequestedTime()
118 drmSessionManager.prepare(); in keepaliveDisabled_sessionsReleasedImmediately()
140 drmSessionManager.prepare(); in managerRelease_allKeepaliveSessionsImmediatelyReleased()
164 drmSessionManager.prepare(); in managerRelease_keepaliveDisabled_doesntReleaseAnySessions()
190 drmSessionManager.prepare(); in managerRelease_mediaDrmNotReleasedUntilLastSessionReleased()
204 drmSessionManager.prepare(); in managerRelease_mediaDrmNotReleasedUntilLastSessionReleased()
214 drmSessionManager.prepare(); in managerRelease_mediaDrmNotReleasedUntilLastSessionReleased()
235 drmSessionManager.prepare(); in managerReleasedBeforeSession_keepaliveEnabled_managerOnlyReleasesOneKeepaliveReference()
274 drmSessionManager.prepare(); in maxConcurrentSessionsExceeded_allKeepAliveSessionsEagerlyReleased()
[all …]
/external/deqp/external/openglcts/docs/specs/
DCTS_ARB_post_depth_coverage.txt44 Prepare a proper shader with following layout setup:
49 Prepare a proper shader with following layout setup:
55 Prepare multisample framebuffer with integer color and depth attachments
58 Prepare framebuffer with integer color attachment 1x(number of samples)
61 Prepare shader program which passes gl_SampleMaskIn to the output as a
64 Prepare shader program which passes samples from multisample texture to
/external/python/cpython3/Doc/library/
Dgraphlib.rst43 * Call :meth:`~TopologicalSorter.prepare` on the graph.
67 topological_sorter.prepare()
98 Raises :exc:`ValueError` if called after :meth:`~TopologicalSorter.prepare`.
100 .. method:: prepare()
130 :meth:`~TopologicalSorter.prepare` previously.
141 calling :meth:`~TopologicalSorter.prepare` or if node has not yet been
153 :meth:`~TopologicalSorter.prepare` previously.
158 order. When using this method, :meth:`~TopologicalSorter.prepare` and
163 self.prepare()
203 Subclass of :exc:`ValueError` raised by :meth:`TopologicalSorter.prepare` if cycles exist
/external/libchrome/base/message_loop/
Dmessage_pump_glib.cc39 // GLib sources have four callbacks: Prepare, Check, Dispatch and Finalize.
40 // On each iteration of the GLib pump, it calls each source's Prepare function.
43 // Prepare should be called again (it may be called sooner).
44 // After the Prepare calls, GLib does a poll to check for events from the
46 // if none of the Prepare calls returned TRUE. It will block indefinitely, or
47 // by the minimum time returned by a source in Prepare.
49 // from Prepare. The return value of Check has the same meaning as for Prepare,
53 // (i.e., you can call Run from them), but Prepare and Check cannot.
64 // - Call prepare on all the sources.
68 // - Return true if any of prepare() or check() returned true.
[all …]
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/stringprep/
DNFS4StringPrep.java65 private static byte[] prepare(byte[] src, StringPrep strprep) in prepare() method in NFS4StringPrep
69 StringBuffer out = strprep.prepare(iter,StringPrep.DEFAULT); in prepare()
76 return prepare(src, prep.nfscss); in cs_prepare()
78 return prepare(src, prep.nfscsi); in cs_prepare()
84 return prepare(src, prep.nfscis); in cis_prepare()
141 out.append(prep.nfsmxp.prepare(prefix,StringPrep.DEFAULT)); in mixed_prepare()
143 out.append(prep.nfsmxs.prepare(suffix, StringPrep.DEFAULT)); in mixed_prepare()
146 out.append(prep.nfsmxp.prepare(iter,StringPrep.DEFAULT)); in mixed_prepare()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/stringprep/
DNFS4StringPrep.java68 private static byte[] prepare(byte[] src, StringPrep strprep) in prepare() method in NFS4StringPrep
72 StringBuffer out = strprep.prepare(iter,StringPrep.DEFAULT); in prepare()
79 return prepare(src, prep.nfscss); in cs_prepare()
81 return prepare(src, prep.nfscsi); in cs_prepare()
87 return prepare(src, prep.nfscis); in cis_prepare()
144 out.append(prep.nfsmxp.prepare(prefix,StringPrep.DEFAULT)); in mixed_prepare()
146 out.append(prep.nfsmxs.prepare(suffix, StringPrep.DEFAULT)); in mixed_prepare()
149 out.append(prep.nfsmxp.prepare(iter,StringPrep.DEFAULT)); in mixed_prepare()
/external/libbpf/.github/actions/vmtest/
Daction.yml41 - name: Prepare to build BPF selftests
44 echo "::group::Prepare buidling selftest"
47 make olddefconfig && make prepare
74 # 4. prepare rootfs
75 - name: prepare rootfs
76 uses: libbpf/ci/prepare-rootfs@master
/external/uwb/src/rust/uwb_core/src/uci/
Dmock_uci_manager.rs80 /// Prepare Mock to expect for open_hal.
87 /// Prepare Mock to expect for close_call.
97 /// Prepare Mock to expect device_reset.
107 /// Prepare Mock to expect core_get_device_info.
114 /// Prepare Mock to expect core_get_caps_info.
121 /// Prepare Mock to expect core_set_config.
135 /// Prepare Mock to expect core_get_config.
149 /// Prepare Mock to expect session_init.
168 /// Prepare Mock to expect session_deinit.
185 /// Prepare Mock to expect session_set_app_config.
[all …]

12345678910>>...196