/third_party/node/deps/v8/include/v8-include/ |
H A D | v8-message.h | 33 : flags_((is_shared_cross_origin ? kIsSharedCrossOrigin : 0) | in ScriptOriginOptions() 37 : flags_(flags & in ScriptOriginOptions() 41 return (flags_ & kIsSharedCrossOrigin) != 0; in IsSharedCrossOrigin() 43 bool IsOpaque() const { return (flags_ & kIsOpaque) != 0; } in IsOpaque() 44 bool IsWasm() const { return (flags_ & kIsWasm) != 0; } in IsWasm() 45 bool IsModule() const { return (flags_ & kIsModule) != 0; } in IsModule() 47 int Flags() const { return flags_; } in Flags() 56 const int flags_; member in v8::ScriptOriginOptions
|
/third_party/node/deps/v8/include/ |
H A D | v8-message.h | 33 : flags_((is_shared_cross_origin ? kIsSharedCrossOrigin : 0) | in ScriptOriginOptions() 37 : flags_(flags & in ScriptOriginOptions() 41 return (flags_ & kIsSharedCrossOrigin) != 0; in IsSharedCrossOrigin() 43 bool IsOpaque() const { return (flags_ & kIsOpaque) != 0; } in IsOpaque() 44 bool IsWasm() const { return (flags_ & kIsWasm) != 0; } in IsWasm() 45 bool IsModule() const { return (flags_ & kIsModule) != 0; } in IsModule() 47 int Flags() const { return flags_; } in Flags() 56 const int flags_; member in v8::ScriptOriginOptions
|
/third_party/node/src/ |
H A D | node_i18n.h | 117 flags_ |= CONVERTER_FLAGS_BOM_SEEN; in set_bom_seen() 119 flags_ &= ~CONVERTER_FLAGS_BOM_SEEN; in set_bom_seen() 123 return (flags_ & CONVERTER_FLAGS_BOM_SEEN) == CONVERTER_FLAGS_BOM_SEEN; in bom_seen() 127 return (flags_ & CONVERTER_FLAGS_UNICODE) == CONVERTER_FLAGS_UNICODE; in unicode() 131 return (flags_ & CONVERTER_FLAGS_IGNORE_BOM) == CONVERTER_FLAGS_IGNORE_BOM; in ignore_bom() 135 int flags_ = 0; member in node::i18n::ConverterObject
|
H A D | node_http2.h | 330 return flags_ & kStreamStateDestroyed; in is_destroyed() 334 return !(flags_ & kStreamStateShut); in is_writable() 338 return flags_ & kStreamStateReadPaused; in is_paused() 342 return flags_ & kStreamStateClosed; in is_closed() 346 return flags_ & kStreamStateTrailers; in has_trailers() 351 flags_ |= kStreamStateTrailers; in set_has_trailers() 353 flags_ &= ~kStreamStateTrailers; in set_has_trailers() 357 flags_ |= kStreamStateClosed; in set_closed() 361 flags_ |= kStreamStateDestroyed; in set_destroyed() 365 flags_ | in set_not_writable() 481 int flags_ = kStreamStateNone; // Internal state flags global() member in node::http2::Http2Stream 894 int flags_ = kSessionStateNone; global() member in node::http2::Http2Session [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/multiview/ |
H A D | vktMultiViewRenderPassUtil.cpp | 36 VkAttachmentDescriptionFlags flags_, in AttachmentDescription1() 50 flags = flags_; in AttachmentDescription1() 62 VkAttachmentDescriptionFlags flags_, in AttachmentDescription2() 74 flags = flags_; in AttachmentDescription2() 113 VkSubpassDescriptionFlags flags_, in SubpassDescription1() 130 flags = flags_; in SubpassDescription1() 144 VkSubpassDescriptionFlags flags_, in SubpassDescription2() 158 flags = flags_; in SubpassDescription2() 219 VkRenderPassCreateFlags flags_, in RenderPassCreateInfo1() 234 flags = flags_; in RenderPassCreateInfo1() 35 AttachmentDescription1(const void* pNext_, VkAttachmentDescriptionFlags flags_, VkFormat format_, VkSampleCountFlagBits samples_, VkAttachmentLoadOp loadOp_, VkAttachmentStoreOp storeOp_, VkAttachmentLoadOp stencilLoadOp_, VkAttachmentStoreOp stencilStoreOp_, VkImageLayout initialLayout_, VkImageLayout finalLayout_) AttachmentDescription1() argument 61 AttachmentDescription2(const void* pNext_, VkAttachmentDescriptionFlags flags_, VkFormat format_, VkSampleCountFlagBits samples_, VkAttachmentLoadOp loadOp_, VkAttachmentStoreOp storeOp_, VkAttachmentLoadOp stencilLoadOp_, VkAttachmentStoreOp stencilStoreOp_, VkImageLayout initialLayout_, VkImageLayout finalLayout_) AttachmentDescription2() argument 112 SubpassDescription1(const void* pNext_, VkSubpassDescriptionFlags flags_, VkPipelineBindPoint pipelineBindPoint_, deUint32 viewMask_, deUint32 inputAttachmentCount_, const VkAttachmentReference* pInputAttachments_, deUint32 colorAttachmentCount_, const VkAttachmentReference* pColorAttachments_, const VkAttachmentReference* pResolveAttachments_, const VkAttachmentReference* pDepthStencilAttachment_, deUint32 preserveAttachmentCount_, const deUint32* pPreserveAttachments_) SubpassDescription1() argument 143 SubpassDescription2(const void* pNext_, VkSubpassDescriptionFlags flags_, VkPipelineBindPoint pipelineBindPoint_, deUint32 viewMask_, deUint32 inputAttachmentCount_, const VkAttachmentReference2* pInputAttachments_, deUint32 colorAttachmentCount_, const VkAttachmentReference2* pColorAttachments_, const VkAttachmentReference2* pResolveAttachments_, const VkAttachmentReference2* pDepthStencilAttachment_, deUint32 preserveAttachmentCount_, const deUint32* pPreserveAttachments_) SubpassDescription2() argument 218 RenderPassCreateInfo1(const void* pNext_, VkRenderPassCreateFlags flags_, deUint32 attachmentCount_, const VkAttachmentDescription* pAttachments_, deUint32 subpassCount_, const VkSubpassDescription* pSubpasses_, deUint32 dependencyCount_, const VkSubpassDependency* pDependencies_, deUint32 correlatedViewMaskCount_, const deUint32* pCorrelatedViewMasks_) RenderPassCreateInfo1() argument 250 RenderPassCreateInfo2(const void* pNext_, VkRenderPassCreateFlags flags_, deUint32 attachmentCount_, const VkAttachmentDescription2* pAttachments_, deUint32 subpassCount_, const VkSubpassDescription2* pSubpasses_, deUint32 dependencyCount_, const VkSubpassDependency2* pDependencies_, deUint32 correlatedViewMaskCount_, const deUint32* pCorrelatedViewMasks_) RenderPassCreateInfo2() argument [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/multiview/ |
H A D | vktMultiViewRenderPassUtil.cpp | 36 VkAttachmentDescriptionFlags flags_, in AttachmentDescription1() 50 flags = flags_; in AttachmentDescription1() 62 VkAttachmentDescriptionFlags flags_, in AttachmentDescription2() 74 flags = flags_; in AttachmentDescription2() 113 VkSubpassDescriptionFlags flags_, in SubpassDescription1() 130 flags = flags_; in SubpassDescription1() 144 VkSubpassDescriptionFlags flags_, in SubpassDescription2() 158 flags = flags_; in SubpassDescription2() 219 VkRenderPassCreateFlags flags_, in RenderPassCreateInfo1() 234 flags = flags_; in RenderPassCreateInfo1() 35 AttachmentDescription1(const void* pNext_, VkAttachmentDescriptionFlags flags_, VkFormat format_, VkSampleCountFlagBits samples_, VkAttachmentLoadOp loadOp_, VkAttachmentStoreOp storeOp_, VkAttachmentLoadOp stencilLoadOp_, VkAttachmentStoreOp stencilStoreOp_, VkImageLayout initialLayout_, VkImageLayout finalLayout_) AttachmentDescription1() argument 61 AttachmentDescription2(const void* pNext_, VkAttachmentDescriptionFlags flags_, VkFormat format_, VkSampleCountFlagBits samples_, VkAttachmentLoadOp loadOp_, VkAttachmentStoreOp storeOp_, VkAttachmentLoadOp stencilLoadOp_, VkAttachmentStoreOp stencilStoreOp_, VkImageLayout initialLayout_, VkImageLayout finalLayout_) AttachmentDescription2() argument 112 SubpassDescription1(const void* pNext_, VkSubpassDescriptionFlags flags_, VkPipelineBindPoint pipelineBindPoint_, deUint32 viewMask_, deUint32 inputAttachmentCount_, const VkAttachmentReference* pInputAttachments_, deUint32 colorAttachmentCount_, const VkAttachmentReference* pColorAttachments_, const VkAttachmentReference* pResolveAttachments_, const VkAttachmentReference* pDepthStencilAttachment_, deUint32 preserveAttachmentCount_, const deUint32* pPreserveAttachments_) SubpassDescription1() argument 143 SubpassDescription2(const void* pNext_, VkSubpassDescriptionFlags flags_, VkPipelineBindPoint pipelineBindPoint_, deUint32 viewMask_, deUint32 inputAttachmentCount_, const VkAttachmentReference2* pInputAttachments_, deUint32 colorAttachmentCount_, const VkAttachmentReference2* pColorAttachments_, const VkAttachmentReference2* pResolveAttachments_, const VkAttachmentReference2* pDepthStencilAttachment_, deUint32 preserveAttachmentCount_, const deUint32* pPreserveAttachments_) SubpassDescription2() argument 218 RenderPassCreateInfo1(const void* pNext_, VkRenderPassCreateFlags flags_, deUint32 attachmentCount_, const VkAttachmentDescription* pAttachments_, deUint32 subpassCount_, const VkSubpassDescription* pSubpasses_, deUint32 dependencyCount_, const VkSubpassDependency* pDependencies_, deUint32 correlatedViewMaskCount_, const deUint32* pCorrelatedViewMasks_) RenderPassCreateInfo1() argument 250 RenderPassCreateInfo2(const void* pNext_, VkRenderPassCreateFlags flags_, deUint32 attachmentCount_, const VkAttachmentDescription2* pAttachments_, deUint32 subpassCount_, const VkSubpassDescription2* pSubpasses_, deUint32 dependencyCount_, const VkSubpassDependency2* pDependencies_, deUint32 correlatedViewMaskCount_, const deUint32* pCorrelatedViewMasks_) RenderPassCreateInfo2() argument [all...] |
/third_party/node/deps/icu-small/source/i18n/ |
H A D | double-conversion-double-to-string.cpp | 98 if ((flags_ & EMIT_TRAILING_DECIMAL_POINT_IN_EXPONENTIAL) != 0) { 100 if ((flags_ & EMIT_TRAILING_ZERO_AFTER_POINT_IN_EXPONENTIAL) != 0) { 113 if ((flags_ & EMIT_POSITIVE_EXPONENT_SIGN) != 0) { 179 if ((flags_ & EMIT_TRAILING_DECIMAL_POINT) != 0) { 182 if ((flags_ & EMIT_TRAILING_ZERO_AFTER_POINT) != 0) { 207 bool unique_zero = (flags_ & UNIQUE_ZERO) != 0; 252 bool unique_zero = ((flags_ & UNIQUE_ZERO) != 0); 304 bool unique_zero = ((flags_ & UNIQUE_ZERO) != 0); 342 bool unique_zero = ((flags_ & UNIQUE_ZERO) != 0); 351 int extra_zero = ((flags_ [all...] |
H A D | double-conversion-string-to-double.cpp | 450 const bool allow_trailing_junk = (flags_ & ALLOW_TRAILING_JUNK) != 0; 451 const bool allow_leading_spaces = (flags_ & ALLOW_LEADING_SPACES) != 0; 452 const bool allow_trailing_spaces = (flags_ & ALLOW_TRAILING_SPACES) != 0; 453 const bool allow_spaces_after_sign = (flags_ & ALLOW_SPACES_AFTER_SIGN) != 0; 454 const bool allow_case_insensitivity = (flags_ & ALLOW_CASE_INSENSITIVITY) != 0; 544 if (((flags_ & ALLOW_HEX) || (flags_ & ALLOW_HEX_FLOATS)) && 550 bool parse_as_hex_float = (flags_ & ALLOW_HEX_FLOATS) && 583 bool octal = leading_zero && (flags_ & ALLOW_OCTALS) != 0;
|
/third_party/icu/vendor/double-conversion/upstream/double-conversion/ |
H A D | double-to-string.cc | 91 if ((flags_ & EMIT_POSITIVE_EXPONENT_SIGN) != 0) { in CreateExponentialRepresentation() 157 if ((flags_ & EMIT_TRAILING_DECIMAL_POINT) != 0) { in CreateDecimalRepresentation() 160 if ((flags_ & EMIT_TRAILING_ZERO_AFTER_POINT) != 0) { in CreateDecimalRepresentation() 185 bool unique_zero = (flags_ & UNIQUE_ZERO) != 0; in ToShortestIeeeNumber() 230 bool unique_zero = ((flags_ & UNIQUE_ZERO) != 0); in ToFixed() 282 bool unique_zero = ((flags_ & UNIQUE_ZERO) != 0); in ToExponential() 320 bool unique_zero = ((flags_ & UNIQUE_ZERO) != 0); in ToPrecision() 329 int extra_zero = ((flags_ & EMIT_TRAILING_ZERO_AFTER_POINT) != 0) ? 1 : 0; in ToPrecision() 334 if ((flags_ & NO_TRAILING_ZERO) != 0) { in ToPrecision()
|
H A D | string-to-double.cc | 429 const bool allow_trailing_junk = (flags_ & ALLOW_TRAILING_JUNK) != 0; 430 const bool allow_leading_spaces = (flags_ & ALLOW_LEADING_SPACES) != 0; 431 const bool allow_trailing_spaces = (flags_ & ALLOW_TRAILING_SPACES) != 0; 432 const bool allow_spaces_after_sign = (flags_ & ALLOW_SPACES_AFTER_SIGN) != 0; 433 const bool allow_case_insensitivity = (flags_ & ALLOW_CASE_INSENSITIVITY) != 0; 523 if (((flags_ & ALLOW_HEX) || (flags_ & ALLOW_HEX_FLOATS)) && 529 bool parse_as_hex_float = (flags_ & ALLOW_HEX_FLOATS) && 562 bool octal = leading_zero && (flags_ & ALLOW_OCTALS) != 0;
|
/third_party/icu/icu4c/source/i18n/ |
H A D | double-conversion-double-to-string.cpp | 106 if ((flags_ & EMIT_POSITIVE_EXPONENT_SIGN) != 0) { 172 if ((flags_ & EMIT_TRAILING_DECIMAL_POINT) != 0) { 175 if ((flags_ & EMIT_TRAILING_ZERO_AFTER_POINT) != 0) { 200 bool unique_zero = (flags_ & UNIQUE_ZERO) != 0; 245 bool unique_zero = ((flags_ & UNIQUE_ZERO) != 0); 297 bool unique_zero = ((flags_ & UNIQUE_ZERO) != 0); 335 bool unique_zero = ((flags_ & UNIQUE_ZERO) != 0); 344 int extra_zero = ((flags_ & EMIT_TRAILING_ZERO_AFTER_POINT) != 0) ? 1 : 0; 349 if ((flags_ & NO_TRAILING_ZERO) != 0) {
|
H A D | double-conversion-string-to-double.cpp | 450 const bool allow_trailing_junk = (flags_ & ALLOW_TRAILING_JUNK) != 0; 451 const bool allow_leading_spaces = (flags_ & ALLOW_LEADING_SPACES) != 0; 452 const bool allow_trailing_spaces = (flags_ & ALLOW_TRAILING_SPACES) != 0; 453 const bool allow_spaces_after_sign = (flags_ & ALLOW_SPACES_AFTER_SIGN) != 0; 454 const bool allow_case_insensitivity = (flags_ & ALLOW_CASE_INSENSITIVITY) != 0; 544 if (((flags_ & ALLOW_HEX) || (flags_ & ALLOW_HEX_FLOATS)) && 550 bool parse_as_hex_float = (flags_ & ALLOW_HEX_FLOATS) && 583 bool octal = leading_zero && (flags_ & ALLOW_OCTALS) != 0;
|
/third_party/skia/third_party/externals/icu/source/i18n/ |
H A D | double-conversion-double-to-string.cpp | 106 if ((flags_ & EMIT_POSITIVE_EXPONENT_SIGN) != 0) { 172 if ((flags_ & EMIT_TRAILING_DECIMAL_POINT) != 0) { 175 if ((flags_ & EMIT_TRAILING_ZERO_AFTER_POINT) != 0) { 200 bool unique_zero = (flags_ & UNIQUE_ZERO) != 0; 245 bool unique_zero = ((flags_ & UNIQUE_ZERO) != 0); 297 bool unique_zero = ((flags_ & UNIQUE_ZERO) != 0); 335 bool unique_zero = ((flags_ & UNIQUE_ZERO) != 0); 344 int extra_zero = ((flags_ & EMIT_TRAILING_ZERO_AFTER_POINT) != 0) ? 1 : 0; 349 if ((flags_ & NO_TRAILING_ZERO) != 0) {
|
H A D | double-conversion-string-to-double.cpp | 450 const bool allow_trailing_junk = (flags_ & ALLOW_TRAILING_JUNK) != 0; 451 const bool allow_leading_spaces = (flags_ & ALLOW_LEADING_SPACES) != 0; 452 const bool allow_trailing_spaces = (flags_ & ALLOW_TRAILING_SPACES) != 0; 453 const bool allow_spaces_after_sign = (flags_ & ALLOW_SPACES_AFTER_SIGN) != 0; 454 const bool allow_case_insensitivity = (flags_ & ALLOW_CASE_INSENSITIVITY) != 0; 544 if (((flags_ & ALLOW_HEX) || (flags_ & ALLOW_HEX_FLOATS)) && 550 bool parse_as_hex_float = (flags_ & ALLOW_HEX_FLOATS) && 583 bool octal = leading_zero && (flags_ & ALLOW_OCTALS) != 0;
|
/third_party/ffmpeg/libavfilter/ |
H A D | f_interleave.c | 52 #define DEFINE_OPTIONS(filt_name, flags_) \ 54 { "nb_inputs", "set number of inputs", OFFSET(nb_inputs), AV_OPT_TYPE_INT, {.i64 = 2}, 1, INT_MAX, .flags = flags_ }, \ 55 { "n", "set number of inputs", OFFSET(nb_inputs), AV_OPT_TYPE_INT, {.i64 = 2}, 1, INT_MAX, .flags = flags_ }, \ 57 OFFSET(duration_mode), AV_OPT_TYPE_INT, { .i64 = DURATION_LONGEST }, 0, 2, flags_, "duration" }, \ 58 { "longest", "Duration of longest input", 0, AV_OPT_TYPE_CONST, { .i64 = DURATION_LONGEST }, 0, 0, flags_, "duration" }, \ 59 { "shortest", "Duration of shortest input", 0, AV_OPT_TYPE_CONST, { .i64 = DURATION_SHORTEST }, 0, 0, flags_, "duration" }, \ 60 { "first", "Duration of first input", 0, AV_OPT_TYPE_CONST, { .i64 = DURATION_FIRST }, 0, 0, flags_, "duration" }, \
|
/third_party/node/deps/v8/src/torque/ |
H A D | types.h | 272 const bool is_constexpr = flags_ & AbstractTypeFlag::kConstexpr; 295 flags_(flags), in AbstractType() 302 DCHECK(!(IsConstexpr() && (flags_ & AbstractTypeFlag::kTransient))); in AbstractType() 317 return flags_ & AbstractTypeFlag::kTransient; 321 return flags_ & AbstractTypeFlag::kUseParentTypeChecker; in UseParentTypeChecker() 324 AbstractTypeFlags flags_; member in v8::internal::torque::final 669 bool IsExtern() const { return flags_ & ClassFlag::kExtern; } in IsExtern() 671 if (flags_ & ClassFlag::kCppObjectDefinition) return false; in ShouldGeneratePrint() 677 if (flags_ & ClassFlag::kCppObjectDefinition) return false; in ShouldGenerateVerify() 683 if (flags_ in ShouldGenerateBodyDescriptor() 785 mutable ClassFlags flags_; global() member in v8::internal::torque::final [all...] |
H A D | cpp-builder.h | 104 flags_ = flags_ | flag; in SetFlag() 106 flags_ = flags_.without(flag); in SetFlag() 111 flags_ |= flags; in SetFlags() 113 flags_ &= ~flags; in SetFlags() 116 bool HasFlag(FunctionFlag flag) const { return (flags_ & flag) == flag; } in HasFlag() 174 base::Flags<FunctionFlag> flags_; member in v8::internal::torque::cpp::Function
|
/third_party/skia/third_party/externals/dawn/src/dawn_node/binding/ |
H A D | Flags.cpp | 19 flags_[key] = value; in Set() 23 auto iter = flags_.find(key); in Get() 24 if (iter != flags_.end()) { in Get()
|
H A D | GPU.cpp | 59 GPU::GPU(Flags flags) : flags_(std::move(flags)) { in GPU() 65 if (auto dir = flags_.Get("dlldir")) { in GPU() 108 if (auto f = flags_.Get("dawn-backend")) { in requestAdapter() 146 auto adapter = GPUAdapter::Create<GPUAdapter>(env, adapters[adapterIndex], flags_); in requestAdapter()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/flags/ |
H A D | reflection.cc | 74 FlagMap flags_; 109 auto it = flags_.find(name); in FindFlag() 110 return it != flags_.end() ? it->second : nullptr; in FindFlag() 130 flags_.insert(FlagMap::value_type(flag.Name(), &flag)); in RegisterFlag() 186 for (const auto& i : registry.flags_) visitor(*i.second); in ForEachFlag() 203 registry.flat_flags_.reserve(registry.flags_.size()); in FinalizeRegistry() 204 for (const auto& f : registry.flags_) { in FinalizeRegistry() 211 registry.flags_.clear(); in FinalizeRegistry()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/renderpass/ |
H A D | vktRenderPassTestsUtil.cpp | 39 VkAttachmentDescriptionFlags flags_, in AttachmentDescription1() 53 flags = flags_; in AttachmentDescription1() 65 VkAttachmentDescriptionFlags flags_, in AttachmentDescription2() 77 flags = flags_; in AttachmentDescription2() 115 VkSubpassDescriptionFlags flags_, in SubpassDescription1() 132 flags = flags_; in SubpassDescription1() 146 VkSubpassDescriptionFlags flags_, in SubpassDescription2() 160 flags = flags_; in SubpassDescription2() 221 VkRenderPassCreateFlags flags_, in RenderPassCreateInfo1() 236 flags = flags_; in RenderPassCreateInfo1() 38 AttachmentDescription1(const void* pNext_, VkAttachmentDescriptionFlags flags_, VkFormat format_, VkSampleCountFlagBits samples_, VkAttachmentLoadOp loadOp_, VkAttachmentStoreOp storeOp_, VkAttachmentLoadOp stencilLoadOp_, VkAttachmentStoreOp stencilStoreOp_, VkImageLayout initialLayout_, VkImageLayout finalLayout_) AttachmentDescription1() argument 64 AttachmentDescription2(const void* pNext_, VkAttachmentDescriptionFlags flags_, VkFormat format_, VkSampleCountFlagBits samples_, VkAttachmentLoadOp loadOp_, VkAttachmentStoreOp storeOp_, VkAttachmentLoadOp stencilLoadOp_, VkAttachmentStoreOp stencilStoreOp_, VkImageLayout initialLayout_, VkImageLayout finalLayout_) AttachmentDescription2() argument 114 SubpassDescription1(const void* pNext_, VkSubpassDescriptionFlags flags_, VkPipelineBindPoint pipelineBindPoint_, deUint32 viewMask_, deUint32 inputAttachmentCount_, const VkAttachmentReference* pInputAttachments_, deUint32 colorAttachmentCount_, const VkAttachmentReference* pColorAttachments_, const VkAttachmentReference* pResolveAttachments_, const VkAttachmentReference* pDepthStencilAttachment_, deUint32 preserveAttachmentCount_, const deUint32* pPreserveAttachments_) SubpassDescription1() argument 145 SubpassDescription2(const void* pNext_, VkSubpassDescriptionFlags flags_, VkPipelineBindPoint pipelineBindPoint_, deUint32 viewMask_, deUint32 inputAttachmentCount_, const VkAttachmentReference2* pInputAttachments_, deUint32 colorAttachmentCount_, const VkAttachmentReference2* pColorAttachments_, const VkAttachmentReference2* pResolveAttachments_, const VkAttachmentReference2* pDepthStencilAttachment_, deUint32 preserveAttachmentCount_, const deUint32* pPreserveAttachments_) SubpassDescription2() argument 220 RenderPassCreateInfo1(const void* pNext_, VkRenderPassCreateFlags flags_, deUint32 attachmentCount_, const VkAttachmentDescription* pAttachments_, deUint32 subpassCount_, const VkSubpassDescription* pSubpasses_, deUint32 dependencyCount_, const VkSubpassDependency* pDependencies_, deUint32 correlatedViewMaskCount_, const deUint32* pCorrelatedViewMasks_) RenderPassCreateInfo1() argument 252 RenderPassCreateInfo2(const void* pNext_, VkRenderPassCreateFlags flags_, deUint32 attachmentCount_, const VkAttachmentDescription2* pAttachments_, deUint32 subpassCount_, const VkSubpassDescription2* pSubpasses_, deUint32 dependencyCount_, const VkSubpassDependency2* pDependencies_, deUint32 correlatedViewMaskCount_, const deUint32* pCorrelatedViewMasks_) RenderPassCreateInfo2() argument [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/renderpass/ |
H A D | vktRenderPassTestsUtil.cpp | 39 VkAttachmentDescriptionFlags flags_, in AttachmentDescription1() 53 flags = flags_; in AttachmentDescription1() 65 VkAttachmentDescriptionFlags flags_, in AttachmentDescription2() 77 flags = flags_; in AttachmentDescription2() 115 VkSubpassDescriptionFlags flags_, in SubpassDescription1() 132 flags = flags_; in SubpassDescription1() 146 VkSubpassDescriptionFlags flags_, in SubpassDescription2() 160 flags = flags_; in SubpassDescription2() 221 VkRenderPassCreateFlags flags_, in RenderPassCreateInfo1() 236 flags = flags_; in RenderPassCreateInfo1() 38 AttachmentDescription1(const void* pNext_, VkAttachmentDescriptionFlags flags_, VkFormat format_, VkSampleCountFlagBits samples_, VkAttachmentLoadOp loadOp_, VkAttachmentStoreOp storeOp_, VkAttachmentLoadOp stencilLoadOp_, VkAttachmentStoreOp stencilStoreOp_, VkImageLayout initialLayout_, VkImageLayout finalLayout_) AttachmentDescription1() argument 64 AttachmentDescription2(const void* pNext_, VkAttachmentDescriptionFlags flags_, VkFormat format_, VkSampleCountFlagBits samples_, VkAttachmentLoadOp loadOp_, VkAttachmentStoreOp storeOp_, VkAttachmentLoadOp stencilLoadOp_, VkAttachmentStoreOp stencilStoreOp_, VkImageLayout initialLayout_, VkImageLayout finalLayout_) AttachmentDescription2() argument 114 SubpassDescription1(const void* pNext_, VkSubpassDescriptionFlags flags_, VkPipelineBindPoint pipelineBindPoint_, deUint32 viewMask_, deUint32 inputAttachmentCount_, const VkAttachmentReference* pInputAttachments_, deUint32 colorAttachmentCount_, const VkAttachmentReference* pColorAttachments_, const VkAttachmentReference* pResolveAttachments_, const VkAttachmentReference* pDepthStencilAttachment_, deUint32 preserveAttachmentCount_, const deUint32* pPreserveAttachments_) SubpassDescription1() argument 145 SubpassDescription2(const void* pNext_, VkSubpassDescriptionFlags flags_, VkPipelineBindPoint pipelineBindPoint_, deUint32 viewMask_, deUint32 inputAttachmentCount_, const VkAttachmentReference2* pInputAttachments_, deUint32 colorAttachmentCount_, const VkAttachmentReference2* pColorAttachments_, const VkAttachmentReference2* pResolveAttachments_, const VkAttachmentReference2* pDepthStencilAttachment_, deUint32 preserveAttachmentCount_, const deUint32* pPreserveAttachments_) SubpassDescription2() argument 220 RenderPassCreateInfo1(const void* pNext_, VkRenderPassCreateFlags flags_, deUint32 attachmentCount_, const VkAttachmentDescription* pAttachments_, deUint32 subpassCount_, const VkSubpassDescription* pSubpasses_, deUint32 dependencyCount_, const VkSubpassDependency* pDependencies_, deUint32 correlatedViewMaskCount_, const deUint32* pCorrelatedViewMasks_) RenderPassCreateInfo1() argument 252 RenderPassCreateInfo2(const void* pNext_, VkRenderPassCreateFlags flags_, deUint32 attachmentCount_, const VkAttachmentDescription2* pAttachments_, deUint32 subpassCount_, const VkSubpassDescription2* pSubpasses_, deUint32 dependencyCount_, const VkSubpassDependency2* pDependencies_, deUint32 correlatedViewMaskCount_, const deUint32* pCorrelatedViewMasks_) RenderPassCreateInfo2() argument [all...] |
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/str_format/ |
H A D | extension.h | 274 bool is_basic() const { return flags_ == Flags::kBasic; } in is_basic() 275 bool has_left_flag() const { return FlagsContains(flags_, Flags::kLeft); } in has_left_flag() 277 return FlagsContains(flags_, Flags::kShowPos); in has_show_pos_flag() 280 return FlagsContains(flags_, Flags::kSignCol); in has_sign_col_flag() 282 bool has_alt_flag() const { return FlagsContains(flags_, Flags::kAlt); } in has_alt_flag() 283 bool has_zero_flag() const { return FlagsContains(flags_, Flags::kZero); } in has_zero_flag() 307 Flags flags_; member in absl::FormatConversionChar::FormatConversionSpecImpl 314 conv->flags_ = f; in SetFlags() 327 return str_format_internal::FlagsToString(spec.flags_); in FlagsToString()
|
/third_party/node/deps/v8/src/parsing/ |
H A D | parse-info.h | 94 TYPE NAME() const { return BitFields::NAME::decode(flags_); } \ 96 flags_ = BitFields::NAME::update(flags_, value); \ 149 uint32_t flags_; member in v8::internal::UnoptimizedCompileFlags 244 const UnoptimizedCompileFlags& flags() const { return flags_; } in flags() 348 const UnoptimizedCompileFlags flags_; member in v8::internal::ParseInfo
|
/third_party/skia/third_party/externals/abseil-cpp/absl/random/internal/ |
H A D | iostream_state_saver.h | 55 flags_(os.flags(flags)), in ostream_state_saver() 65 os_.flags(flags_); in ~ostream_state_saver() 70 const flags_type flags_; member in absl::random_internal::ostream_state_saver 139 : is_(is), flags_(is.flags(flags)) {} in istream_state_saver() 141 ~istream_state_saver() { is_.flags(flags_); } in ~istream_state_saver() 145 flags_type flags_; member in absl::random_internal::istream_state_saver
|