Home
last modified time | relevance | path

Searched refs:ov (Results 1 – 25 of 103) sorted by relevance

12345

/third_party/python/Lib/asyncio/
Dwindows_events.py54 def __init__(self, ov, *, loop=None): argument
58 self._ov = ov
99 def __init__(self, ov, handle, wait_handle, *, loop=None): argument
105 self._ov = ov
175 def __init__(self, ov, event, wait_handle, *, loop=None): argument
176 super().__init__(ov, event, wait_handle, loop=loop)
195 def __init__(self, ov, handle, wait_handle, proactor, *, loop=None): argument
196 super().__init__(ov, handle, wait_handle, loop=loop)
324 ov = self._self_reading_future._ov
332 if ov is not None:
[all …]
Dwindows_utils.py67 ov = _winapi.ConnectNamedPipe(h1, overlapped=True)
68 ov.GetOverlappedResult(True)
/third_party/python/Lib/multiprocessing/
Dconnection.py280 ov, err = _winapi.WriteFile(self._handle, buf, overlapped=True)
284 [ov.event], False, INFINITE)
287 ov.cancel()
290 nwritten, err = ov.GetOverlappedResult(True)
301 ov, err = _winapi.ReadFile(self._handle, bsize,
306 [ov.event], False, INFINITE)
309 ov.cancel()
312 nread, err = ov.GetOverlappedResult(True)
315 f.write(ov.getbuffer())
318 return self._get_more_data(ov, maxsize)
[all …]
/third_party/gstreamer/gstplugins_base/tests/icles/
Dstress-videooverlay.c97 toggle_events (GstVideoOverlay * ov) in toggle_events() argument
101 gst_video_overlay_handle_events (ov, events_toggled); in toggle_events()
115 cycle_window (GstVideoOverlay * ov) in cycle_window() argument
131 gst_video_overlay_set_window_handle (ov, win); in cycle_window()
145 GstVideoOverlay *ov = NULL; in create_window() local
150 ov = GST_VIDEO_OVERLAY (GST_MESSAGE_SRC (message)); in create_window()
154 cycle_window (ov); in create_window()
158 g_timeout_add (100, (GSourceFunc) cycle_window, ov); in create_window()
159 g_timeout_add_seconds (2, (GSourceFunc) toggle_events, ov); in create_window()
/third_party/node/deps/nghttp2/lib/
Dnghttp2_frame.c227 nghttp2_origin_entry *ov, size_t nov) { in nghttp2_frame_origin_init() argument
233 payloadlen += 2 + ov[i].origin_len; in nghttp2_frame_origin_init()
240 origin->ov = ov; in nghttp2_frame_origin_init()
253 nghttp2_mem_free(mem, origin->ov); in nghttp2_frame_origin_free()
798 orig = &origin->ov[i]; in nghttp2_frame_pack_origin()
816 nghttp2_origin_entry *ov; in nghttp2_frame_unpack_origin_payload() local
845 origin->ov = NULL; in nghttp2_frame_unpack_origin_payload()
853 ov = nghttp2_mem_malloc(mem, len); in nghttp2_frame_unpack_origin_payload()
854 if (ov == NULL) { in nghttp2_frame_unpack_origin_payload()
858 origin->ov = ov; in nghttp2_frame_unpack_origin_payload()
[all …]
Dnghttp2_submit.c585 const nghttp2_origin_entry *ov, size_t nov) { in nghttp2_submit_origin() argument
605 len += ov[i].origin_len; in nghttp2_submit_origin()
623 ov_copy[i].origin_len = ov[i].origin_len; in nghttp2_submit_origin()
624 p = nghttp2_cpymem(p, ov[i].origin, ov[i].origin_len); in nghttp2_submit_origin()
/third_party/rust/crates/clap/tests/builder/
Dtests.rs107 if let Some(ov) = matches.get_many::<String>("option") { in check_complex_output()
108 for o in ov { in check_complex_output()
188 if let Some(ov) = matches.get_many::<String>("option") { in check_complex_output()
189 for o in ov { in check_complex_output()
218 if let Some(ov) = matches.get_many::<String>("option") { in check_complex_output()
219 for o in ov { in check_complex_output()
/third_party/nghttp2/lib/
Dnghttp2_frame.c227 nghttp2_origin_entry *ov, size_t nov) { in nghttp2_frame_origin_init() argument
233 payloadlen += 2 + ov[i].origin_len; in nghttp2_frame_origin_init()
240 origin->ov = ov; in nghttp2_frame_origin_init()
253 nghttp2_mem_free(mem, origin->ov); in nghttp2_frame_origin_free()
821 orig = &origin->ov[i]; in nghttp2_frame_pack_origin()
839 nghttp2_origin_entry *ov; in nghttp2_frame_unpack_origin_payload() local
868 origin->ov = NULL; in nghttp2_frame_unpack_origin_payload()
876 ov = nghttp2_mem_malloc(mem, len); in nghttp2_frame_unpack_origin_payload()
877 if (ov == NULL) { in nghttp2_frame_unpack_origin_payload()
881 origin->ov = ov; in nghttp2_frame_unpack_origin_payload()
[all …]
Dnghttp2_submit.c588 const nghttp2_origin_entry *ov, size_t nov) { in nghttp2_submit_origin() argument
608 len += ov[i].origin_len; in nghttp2_submit_origin()
626 ov_copy[i].origin_len = ov[i].origin_len; in nghttp2_submit_origin()
627 p = nghttp2_cpymem(p, ov[i].origin, ov[i].origin_len); in nghttp2_submit_origin()
/third_party/flutter/skia/modules/skottie/src/
DSkottieJson.cpp91 const auto& ov = v.as<ObjectValue>(); in Parse() local
93 return Parse<SkScalar>(ov["x"], &pt->fX) in Parse()
94 && Parse<SkScalar>(ov["y"], &pt->fY); in Parse()
DSkottieValue.cpp133 const auto& ov = jv.as<skjson::ObjectValue>(); in FromJSON() local
139 if (!ParsePointVec(ov["v"], &verts)) { in FromJSON()
145 ParsePointVec(ov["i"], &inPts); in FromJSON()
151 ParsePointVec(ov["o"], &outPts); in FromJSON()
161 v->fClosed = ParseDefault<bool>(ov["c"], false); in FromJSON()
/third_party/skia/modules/skottie/src/
DSkottieJson.cpp103 const auto& ov = v.as<ObjectValue>(); in Parse() local
105 return Parse<SkScalar>(ov["x"], &pt->fX) in Parse()
106 && Parse<SkScalar>(ov["y"], &pt->fY); in Parse()
/third_party/mesa3d/src/gallium/frontends/dri/
Ddri_query_renderer.c106 int ov = driQueryOptioni(&screen->dev->option_cache, "override_vram_size"); in dri2_query_renderer_integer() local
110 if (ov >= 0) in dri2_query_renderer_integer()
111 value[0] = MIN2(ov, value[0]); in dri2_query_renderer_integer()
/third_party/gstreamer/gstplugins_bad/ext/closedcaption/
Dgstceaccoverlay.c124 #define GST_CEA_CC_OVERLAY_GET_LOCK(ov) (&GST_CEA_CC_OVERLAY (ov)->lock) argument
125 #define GST_CEA_CC_OVERLAY_GET_COND(ov) (&GST_CEA_CC_OVERLAY (ov)->cond) argument
126 #define GST_CEA_CC_OVERLAY_LOCK(ov) (g_mutex_lock (GST_CEA_CC_OVERLAY_GET_LOCK (ov))) argument
127 #define GST_CEA_CC_OVERLAY_UNLOCK(ov) (g_mutex_unlock (GST_CEA_CC_OVERLAY_GET_LOCK (ov))) argument
128 #define GST_CEA_CC_OVERLAY_WAIT(ov) (g_cond_wait (GST_CEA_CC_OVERLAY_GET_COND (ov), GST_CEA_CC_… argument
129 #define GST_CEA_CC_OVERLAY_SIGNAL(ov) (g_cond_signal (GST_CEA_CC_OVERLAY_GET_COND (ov))) argument
130 #define GST_CEA_CC_OVERLAY_BROADCAST(ov)(g_cond_broadcast (GST_CEA_CC_OVERLAY_GET_COND (ov))) argument
/third_party/nghttp2/tests/
Dnghttp2_frame_test.c520 nghttp2_origin_entry ov[] = { in test_nghttp2_frame_pack_origin() local
543 nghttp2_frame_origin_init(&frame, ov, 3); in test_nghttp2_frame_pack_origin()
560 CU_ASSERT(sizeof(example) - 1 == oorigin.ov[0].origin_len); in test_nghttp2_frame_pack_origin()
561 CU_ASSERT(0 == memcmp(example, oorigin.ov[0].origin, sizeof(example) - 1)); in test_nghttp2_frame_pack_origin()
562 CU_ASSERT(sizeof(nghttp2) - 1 == oorigin.ov[1].origin_len); in test_nghttp2_frame_pack_origin()
563 CU_ASSERT(0 == memcmp(nghttp2, oorigin.ov[1].origin, sizeof(nghttp2) - 1)); in test_nghttp2_frame_pack_origin()
596 CU_ASSERT(NULL == oorigin.ov); in test_nghttp2_frame_pack_origin()
/third_party/libphonenumber/resources/geocoding/en/
D40.txt56 40268|Brașov
97 40368|Brașov
/third_party/libphonenumber/resources/geocoding/ro/
D40.txt57 40268|Brașov
98 40368|Brașov
/third_party/gstreamer/gstplugins_bad/po/
Dsk.po409 #~ msgstr "Ružový konektor"
424 #~ msgstr "Oranžový konektor"
436 #~ msgstr "Ružový konektor na prednom paneli"
451 #~ msgstr "Oranžový konektor na prednom paneli"
547 #~ msgstr "Funkcia ružového konektora"
550 #~ msgstr "Funkcia ružového konektora na prednom paneli"
559 #~ msgstr "Funkcia oranžového konektora"
562 #~ msgstr "Funkcia oranžového konektora na prednom paneli"
/third_party/flutter/skia/third_party/externals/icu/source/data/unit/
Dsk.txt47 other{"{0} stupňov"}
371 other{"{0} týždňov"}
702 other{"{0} kameňov"}
772 dnam{"palce ortuťového stĺpca"}
773 few{"{0} palce ortuťového stĺpca"}
774 many{"{0} palca ortuťového stĺpca"}
775 one{"{0} palec ortuťového stĺpca"}
776 other{"{0} palcov ortuťového stĺpca"}
786 dnam{"milimetre ortuťového stĺpca"}
787 few{"{0} milimetre ortuťového stĺpca"}
[all …]
/third_party/gstreamer/gstplugins_base/ext/pango/
Dgstbasetextoverlay.c252 #define GST_BASE_TEXT_OVERLAY_GET_LOCK(ov) (&GST_BASE_TEXT_OVERLAY (ov)->lock) argument
253 #define GST_BASE_TEXT_OVERLAY_GET_COND(ov) (&GST_BASE_TEXT_OVERLAY (ov)->cond) argument
254 #define GST_BASE_TEXT_OVERLAY_LOCK(ov) (g_mutex_lock (GST_BASE_TEXT_OVERLAY_GET_LOCK (ov))) argument
255 #define GST_BASE_TEXT_OVERLAY_UNLOCK(ov) (g_mutex_unlock (GST_BASE_TEXT_OVERLAY_GET_LOCK (ov))) argument
256 …ne GST_BASE_TEXT_OVERLAY_WAIT(ov) (g_cond_wait (GST_BASE_TEXT_OVERLAY_GET_COND (ov), GST_BASE_… argument
257 #define GST_BASE_TEXT_OVERLAY_SIGNAL(ov) (g_cond_signal (GST_BASE_TEXT_OVERLAY_GET_COND (ov))) argument
258 #define GST_BASE_TEXT_OVERLAY_BROADCAST(ov)(g_cond_broadcast (GST_BASE_TEXT_OVERLAY_GET_COND (ov))) argument
/third_party/gstreamer/gstplugins_bad/ext/ttml/
Dgstttmlrender.c89 #define GST_TTML_RENDER_GET_LOCK(ov) (&GST_TTML_RENDER (ov)->lock) argument
90 #define GST_TTML_RENDER_GET_COND(ov) (&GST_TTML_RENDER (ov)->cond) argument
91 #define GST_TTML_RENDER_LOCK(ov) (g_mutex_lock (GST_TTML_RENDER_GET_LOCK (ov))) argument
92 #define GST_TTML_RENDER_UNLOCK(ov) (g_mutex_unlock (GST_TTML_RENDER_GET_LOCK (ov))) argument
93 #define GST_TTML_RENDER_WAIT(ov) (g_cond_wait (GST_TTML_RENDER_GET_COND (ov), GST_TTML_RENDER_G… argument
94 #define GST_TTML_RENDER_SIGNAL(ov) (g_cond_signal (GST_TTML_RENDER_GET_COND (ov))) argument
95 #define GST_TTML_RENDER_BROADCAST(ov)(g_cond_broadcast (GST_TTML_RENDER_GET_COND (ov))) argument
/third_party/skia/third_party/externals/swiftshader/tests/VulkanWrapper/
DVulkanTester.cpp85 if(auto ov = getEnv(name.data())) in set() local
87 oldValue = ov; in set()
/third_party/icu/icu4c/source/data/unit/
Dsk.txt47 other{"{0} stupňov"}
472 other{"{0} týždňov"}
961 other{"{0} kameňov"}
1038 dnam{"palce ortuťového stĺpca"}
1039 few{"{0} palce ortuťového stĺpca"}
1040 many{"{0} palca ortuťového stĺpca"}
1041 one{"{0} palec ortuťového stĺpca"}
1042 other{"{0} palcov ortuťového stĺpca"}
1066 dnam{"milimetre ortuťového stĺpca"}
1067 few{"{0} milimetre ortuťového stĺpca"}
[all …]
/third_party/skia/third_party/externals/icu/source/data/unit/
Dsk.txt47 other{"{0} stupňov"}
472 other{"{0} týždňov"}
961 other{"{0} kameňov"}
1038 dnam{"palce ortuťového stĺpca"}
1039 few{"{0} palce ortuťového stĺpca"}
1040 many{"{0} palca ortuťového stĺpca"}
1041 one{"{0} palec ortuťového stĺpca"}
1042 other{"{0} palcov ortuťového stĺpca"}
1066 dnam{"milimetre ortuťového stĺpca"}
1067 few{"{0} milimetre ortuťového stĺpca"}
[all …]
/third_party/flutter/skia/third_party/externals/icu/source/data/translit/
Dhy_hy_FONIPA.txt13 ով → ov;

12345