/third_party/flutter/engine/flutter/shell/platform/common/cpp/client_wrapper/ |
D | plugin_registrar.cc | 108 auto captures = new Captures(); in Send() local 109 captures->reply = reply; in Send() 113 auto captures = reinterpret_cast<Captures*>(user_data); in Send() local 114 captures->reply(data, data_size); in Send() 115 delete captures; in Send() 119 captures); in Send() 121 delete captures; in Send()
|
/third_party/skia/third_party/externals/angle2/src/tests/perf_tests/ |
D | EGLInitializePerf.cpp | 31 Captures *captures = static_cast<Captures *>(platformMethods->context); in CapturePlatform_currentTime() local 32 return captures->timer.getElapsedWallClockTime(); in CapturePlatform_currentTime() 42 Captures *captures = static_cast<Captures *>(platformMethods->context); in CapturePlatform_histogramCustomCounts() local 47 captures->loadDLLsMS += static_cast<size_t>(sample); in CapturePlatform_histogramCustomCounts() 52 captures->createDeviceMS += static_cast<size_t>(sample); in CapturePlatform_histogramCustomCounts() 56 captures->initResourcesMS += static_cast<size_t>(sample); in CapturePlatform_histogramCustomCounts()
|
/third_party/flutter/skia/third_party/externals/angle2/src/tests/perf_tests/ |
D | EGLInitializePerf.cpp | 31 Captures *captures = static_cast<Captures *>(platformMethods->context); in CapturePlatform_currentTime() local 32 return captures->timer->getElapsedTime(); in CapturePlatform_currentTime() 42 Captures *captures = static_cast<Captures *>(platformMethods->context); in CapturePlatform_histogramCustomCounts() local 47 captures->loadDLLsMS += static_cast<size_t>(sample); in CapturePlatform_histogramCustomCounts() 52 captures->createDeviceMS += static_cast<size_t>(sample); in CapturePlatform_histogramCustomCounts() 56 captures->initResourcesMS += static_cast<size_t>(sample); in CapturePlatform_histogramCustomCounts()
|
/third_party/rust/crates/regex/regex-capi/src/ |
D | rure.rs | 196 captures: *mut Captures, 200 let slots = unsafe { &mut (*captures).0 }; 369 captures: *mut Captures, 373 let slots = unsafe { &mut (*captures).0 }; 390 return rure_iter_next_captures(it, haystack, len, captures); 403 let captures = Captures(re.locations()); localVariable 404 Box::into_raw(Box::new(captures)) 409 fn rure_captures_free(captures: *const Captures) { 410 unsafe { drop(Box::from_raw(captures as *mut Captures)); } 416 captures: *const Captures, [all …]
|
/third_party/rust/crates/regex/regex-capi/include/ |
D | rure.h | 237 size_t start, rure_captures *captures); 359 rure_captures *captures); 380 void rure_captures_free(rure_captures *captures); 393 bool rure_captures_at(rure_captures *captures, size_t i, rure_match *match); 399 size_t rure_captures_len(rure_captures *captures);
|
/third_party/rust/crates/regex/tests/ |
D | api.rs | 95 let cap = re.captures(t!("abc")).unwrap(); in capture_index() 106 let cap = re.captures(t!("abc")).unwrap(); in capture_index_panic_usize() 115 let cap = re.captures(t!("abc")).unwrap(); in capture_index_panic_name() 125 let caps = re.captures(t!(s)).unwrap(); in capture_index_lifetime() 134 let cap = re.captures(t!("abc")).unwrap(); in capture_misc() 159 let cap = re.captures(t!("a5")).unwrap(); in sub_capture_matches()
|
D | replace.rs | 97 |captures: &Captures<'_>| { 98 match_text!(captures.get(1).unwrap())[0..1].to_owned()
|
D | consistent.rs | 171 let cap1 = self.re1.captures(input); 172 let cap2 = self.re2.captures(input);
|
/third_party/typescript/tests/baselines/reference/ |
D | noImplicitThisFunctions.errors.txt | 2 …citThisFunctions.ts(17,38): error TS7041: The containing arrow function captures the global value … 3 …citThisFunctions.ts(18,22): error TS7041: The containing arrow function captures the global value … 29 !!! error TS7041: The containing arrow function captures the global value of 'this'. 32 !!! error TS7041: The containing arrow function captures the global value of 'this'.
|
/third_party/flutter/engine/flutter/shell/platform/darwin/macos/framework/Source/ |
D | FlutterEngine.mm | 346 auto captures = std::make_unique<Captures>(); 347 captures->reply = callback; 349 auto captures = reinterpret_cast<Captures*>(user_data); 354 captures->reply(reply_data); 355 delete captures; 359 _engine, message_reply, captures.get(), &response_handle); 364 captures.release();
|
/third_party/rust/crates/once_cell/examples/ |
D | regex.rs | 21 let size = usize::from_str(re.captures(s).unwrap().get(7).unwrap().as_str()).unwrap(); in slow() 35 let size = usize::from_str(re.captures(s).unwrap().get(7).unwrap().as_str()).unwrap(); in fast()
|
/third_party/rust/crates/regex/src/ |
D | prog.rs | 27 pub captures: Vec<Option<String>>, field 84 captures: vec![], in new() 153 + (self.captures.len() * mem::size_of::<Option<String>>()) in approximate_size()
|
/third_party/gstreamer/gstplugins_bad/gst/camerabin2/ |
D | PORTING | 5 * Setting the location for the captures: 6 camerabin requires that the path of the file to save the captures is set before
|
/third_party/gstreamer/gstreamer/docs/random/wtay/ |
D | interactivity | 19 - the videosink element captures mouse events 30 - app captures mouse events
|
/third_party/flutter/engine/flutter/shell/platform/embedder/tests/ |
D | embedder_unittests.cc | 307 Captures captures; in TEST_F() local 310 captures.thread_id = std::this_thread::get_id(); in TEST_F() 333 auto captures = reinterpret_cast<Captures*>(user_data); in TEST_F() local 334 ASSERT_EQ(captures->thread_id, std::this_thread::get_id()); in TEST_F() 335 captures->latch.Signal(); in TEST_F() 338 engine.get(), callback, &captures, &response_handle); in TEST_F() 357 captures.latch.Wait(); in TEST_F()
|
/third_party/flutter/engine/flutter/shell/platform/embedder/ |
D | ace_embedder.cc | 387 auto captures = std::make_unique<Captures>(); in MakeSkSurfaceFromBackingStore() local 388 captures->destruction_callback = software->destruction_callback; in MakeSkSurfaceFromBackingStore() 389 captures->user_data = software->user_data; in MakeSkSurfaceFromBackingStore() 391 auto captures = reinterpret_cast<Captures*>(context); in MakeSkSurfaceFromBackingStore() local 392 captures->destruction_callback(captures->user_data); in MakeSkSurfaceFromBackingStore() 400 captures.release() // release context in MakeSkSurfaceFromBackingStore()
|
/third_party/ejdb/src/bindings/ejdb2_android/test/ |
D | .gitignore | 5 /captures
|
/third_party/flutter/flutter/packages/flutter_tools/templates/plugin/android.tmpl/ |
D | .gitignore | 8 /captures
|
/third_party/ejdb/src/bindings/ejdb2_flutter/android/ |
D | .gitignore | 8 /captures
|
/third_party/skia/third_party/externals/oboe/samples/ |
D | .gitignore | 8 /captures
|
/third_party/skia/third_party/externals/oboe/tests/UnitTestRunner/ |
D | .gitignore | 10 /captures
|
/third_party/skia/third_party/externals/oboe/apps/fxlab/ |
D | .gitignore | 12 /captures
|
/third_party/flutter/engine/flutter/testing/scenario_app/android/ |
D | .gitignore | 13 /captures
|
/third_party/vk-gl-cts/external/amber/src/android_gradle/ |
D | .gitignore | 13 /captures
|
/third_party/mesa3d/src/gallium/drivers/radeonsi/glsl_tests/ |
D | HOW_TO_RUN | 4 It's just a GL application that sets R600_DEBUG and captures stderr.
|