/third_party/mesa3d/src/egl/main/ |
D | eglimage.c | 138 attrs->DMABufFourCC.IsPresent = EGL_TRUE; in _eglParseEXTImageDmaBufImportAttribs() 142 attrs->DMABufPlaneFds[0].IsPresent = EGL_TRUE; in _eglParseEXTImageDmaBufImportAttribs() 146 attrs->DMABufPlaneOffsets[0].IsPresent = EGL_TRUE; in _eglParseEXTImageDmaBufImportAttribs() 150 attrs->DMABufPlanePitches[0].IsPresent = EGL_TRUE; in _eglParseEXTImageDmaBufImportAttribs() 154 attrs->DMABufPlaneFds[1].IsPresent = EGL_TRUE; in _eglParseEXTImageDmaBufImportAttribs() 158 attrs->DMABufPlaneOffsets[1].IsPresent = EGL_TRUE; in _eglParseEXTImageDmaBufImportAttribs() 162 attrs->DMABufPlanePitches[1].IsPresent = EGL_TRUE; in _eglParseEXTImageDmaBufImportAttribs() 166 attrs->DMABufPlaneFds[2].IsPresent = EGL_TRUE; in _eglParseEXTImageDmaBufImportAttribs() 170 attrs->DMABufPlaneOffsets[2].IsPresent = EGL_TRUE; in _eglParseEXTImageDmaBufImportAttribs() 174 attrs->DMABufPlanePitches[2].IsPresent = EGL_TRUE; in _eglParseEXTImageDmaBufImportAttribs() [all …]
|
D | eglimage.h | 44 EGLBoolean IsPresent; member
|
/third_party/rust/crates/clap/src/parser/ |
D | validator.rs | 58 .filter(|(_, matched)| matched.check_explicit(&ArgPredicate::IsPresent)) in validate() 102 .filter(|(_, matched)| matched.check_explicit(&ArgPredicate::IsPresent)) in validate_conflicts() 118 matched.check_explicit(&crate::builder::ArgPredicate::IsPresent) in validate_exclusive() 131 .filter(|(_, matched)| matched.check_explicit(&crate::builder::ArgPredicate::IsPresent)) in validate_exclusive() 198 .filter(|(_, matched)| matched.check_explicit(&ArgPredicate::IsPresent)) in build_conflict_err_usage() 224 .filter(|(_, matched)| matched.check_explicit(&ArgPredicate::IsPresent)) in gather_requires() 254 .filter(|(_, matched)| matched.check_explicit(&ArgPredicate::IsPresent)) in validate_required() 269 .filter(|r| !matcher.check_explicit(r, &ArgPredicate::IsPresent)) in validate_required() 290 .any(|a| matcher.check_explicit(a, &ArgPredicate::IsPresent)) in validate_required() 305 .filter(|a| !matcher.check_explicit(a.get_id(), &ArgPredicate::IsPresent)) in validate_required() [all …]
|
D | parser.rs | 796 matcher.check_explicit(arg_id, &crate::builder::ArgPredicate::IsPresent) in parse_long_arg() 1433 crate::builder::ArgPredicate::IsPresent => true, in add_default_value() 1560 matcher.check_explicit(arg_id, &crate::builder::ArgPredicate::IsPresent) in did_you_mean_error()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/debugging/internal/ |
D | vdso_support.h | 79 bool IsPresent() const { return image_.IsPresent(); } in IsPresent() function
|
D | elf_mem_image.cc | 340 ABSL_RAW_CHECK(image->IsPresent() || increment == 0, ""); in Update() 341 if (!image->IsPresent()) { in Update()
|
D | elf_mem_image.h | 89 bool IsPresent() const { return ehdr_ != nullptr; } in IsPresent() function
|
D | stacktrace_aarch64-inl.inc | 38 if (vdso.IsPresent()) {
|
D | stacktrace_riscv-inl.inc | 55 if (vdso.IsPresent()) {
|
D | stacktrace_powerpc-inl.inc | 105 if (vdso.IsPresent()) {
|
D | stacktrace_x86-inl.inc | 177 if (vdso.IsPresent()) {
|
/third_party/rust/crates/clap/tests/builder/ |
D | default_vals.rs | 190 ArgPredicate::IsPresent, in default_if_arg_present_no_default() 209 ArgPredicate::IsPresent, in default_if_arg_present_no_default_user_override() 229 .default_value_if("opt", ArgPredicate::IsPresent, Some("default")), in default_if_arg_present_no_arg_with_default() 248 .default_value_if("opt", ArgPredicate::IsPresent, Some("default")), in default_if_arg_present_with_default() 267 .default_value_if("opt", ArgPredicate::IsPresent, Some("default")), in default_if_arg_present_with_default_user_override() 286 .default_value_if("opt", ArgPredicate::IsPresent, Some("default")), in default_if_arg_present_no_arg_with_default_user_override() 535 ("flag", ArgPredicate::IsPresent, Some("flg")), in default_ifs_arg_present() 558 ("flag", ArgPredicate::IsPresent, None), in no_default_ifs_arg_present() 578 ("flag", ArgPredicate::IsPresent, Some("flg")), in default_ifs_arg_present_user_override() 601 ("flag", ArgPredicate::IsPresent, Some("flg")), in default_ifs_arg_present_order()
|
D | action.rs | 145 .default_value_if("dog", ArgPredicate::IsPresent, Some("true")), in set_true_with_default_value_if_present() 289 .default_value_if("dog", ArgPredicate::IsPresent, Some("false")), in set_false_with_default_value_if_present() 392 .default_value_if("dog", ArgPredicate::IsPresent, Some("10")), in count_with_default_value_if_present()
|
D | require.rs | 1054 (ArgPredicate::IsPresent, "x"), in issue_1158_app() 1055 (ArgPredicate::IsPresent, "y"), in issue_1158_app() 1056 (ArgPredicate::IsPresent, "z"), in issue_1158_app()
|
/third_party/rust/crates/clap/src/output/ |
D | usage.rs | 213 ArgPredicate::IsPresent => true, in get_args() 348 ArgPredicate::IsPresent => true, in get_required_usage_from() 376 .any(|arg| m.check_explicit(arg, &ArgPredicate::IsPresent)) in get_required_usage_from() 404 .map(|m| m.check_explicit(req, &ArgPredicate::IsPresent)) in get_required_usage_from()
|
/third_party/rust/crates/clap/src/builder/ |
D | arg_predicate.rs | 10 IsPresent, enumerator
|
D | arg.rs | 733 self.requires.push((ArgPredicate::IsPresent, arg_id)); in requires() 3508 self.requires_ifs(ids.into_iter().map(|id| (ArgPredicate::IsPresent, id))) in requires_all()
|
/third_party/mesa3d/src/egl/drivers/dri2/ |
D | egl_dri2.c | 2579 !attrs->DMABufFourCC.IsPresent) in dri2_check_dma_buf_attribs() 2590 if (attrs->DMABufPlanePitches[i].IsPresent && in dri2_check_dma_buf_attribs() 2603 if (attrs->DMABufPlaneModifiersLo[i].IsPresent != in dri2_check_dma_buf_attribs() 2604 attrs->DMABufPlaneModifiersHi[i].IsPresent) in dri2_check_dma_buf_attribs() 2611 if (attrs->DMABufPlaneFds[i].IsPresent) { in dri2_check_dma_buf_attribs() 2612 if ((attrs->DMABufPlaneModifiersLo[0].IsPresent != in dri2_check_dma_buf_attribs() 2613 attrs->DMABufPlaneModifiersLo[i].IsPresent) || in dri2_check_dma_buf_attribs() 2741 if (attrs->DMABufPlaneModifiersLo[i].IsPresent && in dri2_check_dma_buf_format() 2742 attrs->DMABufPlaneModifiersHi[i].IsPresent) { in dri2_check_dma_buf_format() 2754 if (!attrs->DMABufPlaneFds[i].IsPresent || in dri2_check_dma_buf_format() [all …]
|
/third_party/protobuf/src/google/protobuf/ |
D | generated_message_util.h | 125 inline bool IsPresent(const void* base, uint32 hasbit) { in IsPresent() function
|
D | generated_message_util.cc | 600 if (!IsPresent(base, field_metadata.has_offset)) continue; \
|
/third_party/rust/crates/clap/src/parser/matches/ |
D | matched_arg.rs | 153 ArgPredicate::IsPresent => true, in check_explicit()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/debugging/ |
D | symbolize_elf.inc | 1394 if (vdso.IsPresent()) {
|
/third_party/libabigail/tests/data/test-annotate/ |
D | test19-pr19023-libtcmalloc_and_profiler.so.abi | 2554 <!-- bool base::ElfMemImage::IsPresent() --> 2555 …<function-decl name='IsPresent' mangled-name='_ZNK4base11ElfMemImage9IsPresentEv' filepath='./src/…
|
/third_party/libabigail/tests/data/test-read-dwarf/ |
D | test19-pr19023-libtcmalloc_and_profiler.so.abi | 1393 …<function-decl name='IsPresent' mangled-name='_ZNK4base11ElfMemImage9IsPresentEv' filepath='./src/…
|