Home
last modified time | relevance | path

Searched refs:str (Results 301 - 325 of 9408) sorted by relevance

1...<<11121314151617181920>>...377

/third_party/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/translit/
H A DWriteIndicCharts.java121 String str = temp[j]; in writeIICharts()
124 str = temp[j].substring(0,temp[j].indexOf(":")); in writeIICharts()
126 // os.write(" <td bgcolor=#FFFF00 align=center title=\""++"\">"+str+"<br><tt>"+Utility.hex(str)+"</tt>"+"</td>\n"); in writeIICharts()
129 str = temp[j].substring(0,temp[j].indexOf(":")); in writeIICharts()
134 str = temp[j].substring(0,temp[j].indexOf(":")); in writeIICharts()
138 str = temp[j].substring(0,temp[j].indexOf(":")); in writeIICharts()
144 for(int f=0; f<str.length();f++){ in writeIICharts()
146 nameBuf.append(UCharacter.getExtendedName(UTF16.charAt(str,f))); in writeIICharts()
151 if(UCharacter.getExtendedName(UTF16.charAt(str, in writeIICharts()
[all...]
/third_party/jinja2/
H A Dutils.py131 def import_string(import_name: str, silent: bool = False) -> t.Any:
155 def open_if_exists(filename: str, mode: str = "rb") -> t.Optional[t.IO]:
165 def object_type_repr(obj: t.Any) -> str:
183 def pformat(obj: t.Any) -> str:
222 text: str,
224 rel: t.Optional[str] = None,
225 target: t.Optional[str] = None,
226 extra_schemes: t.Optional[t.Iterable[str]] = None,
227 ) -> str
[all...]
/third_party/vk-gl-cts/scripts/
H A Dcheck_swiftshader_runtime.py46 type=str,
48 default=str(Path(tempfile.gettempdir()) / "deqp-swiftshader")
54 type=str,
62 type=str,
70 type=str,
79 type=str,
86 type=str,
93 type=str,
95 default=str(Path(tempfile.gettempdir()) / "deqp-swiftshader" / "vk-gl-cts-build"),
101 type=str,
[all...]
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/packaging/
H A D_tokenizer.py11 name: str
12 text: str
21 message: str,
23 source: str,
32 def __str__(self) -> str:
37 DEFAULT_RULES: "Dict[str, Union[str, re.Pattern[str]]]" = {
97 source: str,
99 rules: "Dict[str, Unio
[all...]
/third_party/node/deps/v8/src/compiler/
H A Dmachine-graph-verifier.cc716 std::stringstream str; in Run() local
717 str << "Node #" << node->id() << ":" << *node->op() in Run()
719 PrintDebugHelp(str, node); in Run()
720 FATAL("%s", str.str().c_str()); in Run()
744 std::stringstream str; in CheckValueInputRepresentationIs() local
745 str << "TypeError: node #" << node->id() << ":" << *node->op() in CheckValueInputRepresentationIs()
749 PrintDebugHelp(str, node); in CheckValueInputRepresentationIs()
750 FATAL("%s", str.str() in CheckValueInputRepresentationIs()
764 std::ostringstream str; CheckValueInputIsTagged() local
784 std::ostringstream str; CheckValueInputIsCompressedOrTagged() local
810 std::ostringstream str; CheckValueInputIsCompressedOrTaggedOrInt32() local
843 std::ostringstream str; CheckValueInputIsTaggedOrPointer() local
861 std::ostringstream str; CheckValueInputForInt32Op() local
870 std::ostringstream str; CheckValueInputForInt32Op() local
892 std::ostringstream str; CheckValueIsTaggedOrInt32() local
909 std::ostringstream str; CheckValueInputForInt64Op() local
919 std::ostringstream str; CheckValueInputForInt64Op() local
934 std::ostringstream str; CheckValueInputForFloat32Op() local
948 std::ostringstream str; CheckValueInputForFloat64Op() local
958 std::ostringstream str; CheckCallInputs() local
[all...]
/third_party/ltp/lib/
H A Dtst_kvercmp.c31 static char *parse_digit(const char *str, int *d) in parse_digit() argument
36 v = strtoul(str, &end, 10); in parse_digit()
37 if (str == end) in parse_digit()
50 const char *str = str_kver; in tst_parse_kver() local
56 if (!(str = parse_digit(str, v1))) in tst_parse_kver()
59 if (*(str++) != '.') in tst_parse_kver()
62 if (!(str = parse_digit(str, v2))) in tst_parse_kver()
68 if (*str in tst_parse_kver()
[all...]
/third_party/mesa3d/src/util/
H A Ddebug.c120 const char *str = getenv(var_name); in env_var_as_boolean() local
121 if (str == NULL) in env_var_as_boolean()
124 if (strcmp(str, "1") == 0 || in env_var_as_boolean()
125 strcasecmp(str, "true") == 0 || in env_var_as_boolean()
126 strcasecmp(str, "y") == 0 || in env_var_as_boolean()
127 strcasecmp(str, "yes") == 0) { in env_var_as_boolean()
129 } else if (strcmp(str, "0") == 0 || in env_var_as_boolean()
130 strcasecmp(str, "false") == 0 || in env_var_as_boolean()
131 strcasecmp(str, "n") == 0 || in env_var_as_boolean()
132 strcasecmp(str, "n in env_var_as_boolean()
145 char *str = getenv(var_name); env_var_as_unsigned() local
[all...]
/third_party/rust/crates/clap/src/util/
H A Did.rs12 pub(crate) const HELP: &'static str = "help";
13 pub(crate) const VERSION: &'static str = "version";
14 pub(crate) const EXTERNAL: &'static str = "";
16 pub(crate) fn from_static_ref(name: &'static str) -> Self {
21 pub fn as_str(&self) -> &str { in as_str()
62 impl From<&'static str> for Id { in from()
63 fn from(name: &'static str) -> Self { in from()
68 impl From<&'_ &'static str> for Id { in from()
69 fn from(name: &'_ &'static str) -> Self { in from()
100 impl AsRef<str> fo
[all...]
/third_party/skia/third_party/externals/tint/src/transform/
H A Dmodule_scope_var_to_entry_point_param_test.cc49 EXPECT_EQ(expect, str(got)); in TEST_F()
102 EXPECT_EQ(expect, str(got)); in TEST_F()
127 EXPECT_EQ(expect, str(got)); in TEST_F()
158 EXPECT_EQ(expect, str(got)); in TEST_F()
197 EXPECT_EQ(expect, str(got)); in TEST_F()
234 EXPECT_EQ(expect, str(got)); in TEST_F()
299 EXPECT_EQ(expect, str(got)); in TEST_F()
324 EXPECT_EQ(expect, str(got)); in TEST_F()
377 EXPECT_EQ(expect, str(got)); in TEST_F()
404 EXPECT_EQ(expect, str(go in TEST_F()
[all...]
H A Dunshadow_test.cc31 EXPECT_EQ(expect, str(got)); in TEST_F()
54 EXPECT_EQ(expect, str(got)); in TEST_F()
84 EXPECT_EQ(expect, str(got)); in TEST_F()
118 EXPECT_EQ(expect, str(got)); in TEST_F()
144 EXPECT_EQ(expect, str(got)); in TEST_F()
174 EXPECT_EQ(expect, str(got)); in TEST_F()
204 EXPECT_EQ(expect, str(got)); in TEST_F()
234 EXPECT_EQ(expect, str(got)); in TEST_F()
264 EXPECT_EQ(expect, str(got)); in TEST_F()
292 EXPECT_EQ(expect, str(go in TEST_F()
[all...]
/third_party/typescript/tests/baselines/reference/
H A DunionTypeMembers.js35 var str: string; variable
40 str = x.commonPropertyType; // string
41 str = x.commonMethodType(str); // (a: string) => string so result should be string
43 strOrNum = x.commonMethodDifferentReturnType(str); // string | union
49 str = x.commonMethodWithOwnTypeParameter(str);
61 var str; variable
65 str = x.commonPropertyType; // string
66 str
[all...]
/third_party/vk-gl-cts/external/vulkancts/framework/vulkan/generated/vulkansc/
H A Dvulkan_json_data.hpp232 std::ostream& operator<< (std::ostream& str, const Base64Formatter& fmt) in operator <<() argument
269 str.write(&d[0], sizeof(d)); in operator <<()
272 return str; in operator <<()
289 static void print_VkBool32(VkBool32 obj, const std::string& str, bool commaNeeded=true) { in print_VkBool32() argument
291 _OUT << "\"" << str << "\"" << " : " << "\"" << ((obj == 0) ? ("VK_FALSE") : ("VK_TRUE")) << "\"" << (commaNeeded ? "," : "") << std::endl; in print_VkBool32()
293 static void print_VkBool32(const VkBool32 * obj, const std::string& str, bool commaNeeded=true) { in print_VkBool32() argument
295 _OUT << "\"" << str << "\"" << " : " << "\"" << ((obj == 0) ? ("VK_FALSE") : ("VK_TRUE")) << "\"" << (commaNeeded ? "," : "") << std::endl; in print_VkBool32()
298 static void print_VkDeviceAddress(VkDeviceAddress obj, const std::string& str, bool commaNeeded=true) { in print_VkDeviceAddress() argument
300 _OUT << "\"" << str << "\"" << " : " << "\"" << obj << "\"" << (commaNeeded ? "," : "") << std::endl; in print_VkDeviceAddress()
302 static void print_VkDeviceAddress(const VkDeviceAddress * obj, const std::string& str, boo in print_VkDeviceAddress() argument
307 print_VkDeviceSize(VkDeviceSize obj, const std::string& str, bool commaNeeded=true) print_VkDeviceSize() argument
311 print_VkDeviceSize(const VkDeviceSize * obj, const std::string& str, bool commaNeeded=true) print_VkDeviceSize() argument
316 print_VkFlags(VkFlags obj, const std::string& str, bool commaNeeded=true) print_VkFlags() argument
320 print_VkFlags(const VkFlags * obj, const std::string& str, bool commaNeeded=true) print_VkFlags() argument
325 print_VkSampleMask(VkSampleMask obj, const std::string& str, bool commaNeeded=true) print_VkSampleMask() argument
329 print_VkSampleMask(const VkSampleMask * obj, const std::string& str, bool commaNeeded=true) print_VkSampleMask() argument
334 print_VkBuffer(VkBuffer obj, const std::string& str, bool commaNeeded=true) print_VkBuffer() argument
341 print_VkBuffer(const VkBuffer * obj, const std::string& str, bool commaNeeded=true) print_VkBuffer() argument
349 print_VkImage(VkImage obj, const std::string& str, bool commaNeeded=true) print_VkImage() argument
356 print_VkImage(const VkImage * obj, const std::string& str, bool commaNeeded=true) print_VkImage() argument
364 print_VkInstance(VkInstance obj, const std::string& str, bool commaNeeded=true) print_VkInstance() argument
371 print_VkInstance(const VkInstance * obj, const std::string& str, bool commaNeeded=true) print_VkInstance() argument
379 print_VkPhysicalDevice(VkPhysicalDevice obj, const std::string& str, bool commaNeeded=true) print_VkPhysicalDevice() argument
386 print_VkPhysicalDevice(const VkPhysicalDevice * obj, const std::string& str, bool commaNeeded=true) print_VkPhysicalDevice() argument
394 print_VkDevice(VkDevice obj, const std::string& str, bool commaNeeded=true) print_VkDevice() argument
401 print_VkDevice(const VkDevice * obj, const std::string& str, bool commaNeeded=true) print_VkDevice() argument
409 print_VkQueue(VkQueue obj, const std::string& str, bool commaNeeded=true) print_VkQueue() argument
416 print_VkQueue(const VkQueue * obj, const std::string& str, bool commaNeeded=true) print_VkQueue() argument
424 print_VkSemaphore(VkSemaphore obj, const std::string& str, bool commaNeeded=true) print_VkSemaphore() argument
431 print_VkSemaphore(const VkSemaphore * obj, const std::string& str, bool commaNeeded=true) print_VkSemaphore() argument
439 print_VkCommandBuffer(VkCommandBuffer obj, const std::string& str, bool commaNeeded=true) print_VkCommandBuffer() argument
446 print_VkCommandBuffer(const VkCommandBuffer * obj, const std::string& str, bool commaNeeded=true) print_VkCommandBuffer() argument
454 print_VkFence(VkFence obj, const std::string& str, bool commaNeeded=true) print_VkFence() argument
461 print_VkFence(const VkFence * obj, const std::string& str, bool commaNeeded=true) print_VkFence() argument
469 print_VkDeviceMemory(VkDeviceMemory obj, const std::string& str, bool commaNeeded=true) print_VkDeviceMemory() argument
476 print_VkDeviceMemory(const VkDeviceMemory * obj, const std::string& str, bool commaNeeded=true) print_VkDeviceMemory() argument
484 print_VkEvent(VkEvent obj, const std::string& str, bool commaNeeded=true) print_VkEvent() argument
491 print_VkEvent(const VkEvent * obj, const std::string& str, bool commaNeeded=true) print_VkEvent() argument
499 print_VkQueryPool(VkQueryPool obj, const std::string& str, bool commaNeeded=true) print_VkQueryPool() argument
506 print_VkQueryPool(const VkQueryPool * obj, const std::string& str, bool commaNeeded=true) print_VkQueryPool() argument
514 print_VkBufferView(VkBufferView obj, const std::string& str, bool commaNeeded=true) print_VkBufferView() argument
521 print_VkBufferView(const VkBufferView * obj, const std::string& str, bool commaNeeded=true) print_VkBufferView() argument
529 print_VkImageView(VkImageView obj, const std::string& str, bool commaNeeded=true) print_VkImageView() argument
536 print_VkImageView(const VkImageView * obj, const std::string& str, bool commaNeeded=true) print_VkImageView() argument
544 print_VkShaderModule(VkShaderModule obj, const std::string& str, bool commaNeeded=true) print_VkShaderModule() argument
551 print_VkShaderModule(const VkShaderModule * obj, const std::string& str, bool commaNeeded=true) print_VkShaderModule() argument
559 print_VkPipelineCache(VkPipelineCache obj, const std::string& str, bool commaNeeded=true) print_VkPipelineCache() argument
566 print_VkPipelineCache(const VkPipelineCache * obj, const std::string& str, bool commaNeeded=true) print_VkPipelineCache() argument
574 print_VkPipelineLayout(VkPipelineLayout obj, const std::string& str, bool commaNeeded=true) print_VkPipelineLayout() argument
581 print_VkPipelineLayout(const VkPipelineLayout * obj, const std::string& str, bool commaNeeded=true) print_VkPipelineLayout() argument
589 print_VkPipeline(VkPipeline obj, const std::string& str, bool commaNeeded=true) print_VkPipeline() argument
596 print_VkPipeline(const VkPipeline * obj, const std::string& str, bool commaNeeded=true) print_VkPipeline() argument
604 print_VkRenderPass(VkRenderPass obj, const std::string& str, bool commaNeeded=true) print_VkRenderPass() argument
611 print_VkRenderPass(const VkRenderPass * obj, const std::string& str, bool commaNeeded=true) print_VkRenderPass() argument
619 print_VkDescriptorSetLayout(VkDescriptorSetLayout obj, const std::string& str, bool commaNeeded=true) print_VkDescriptorSetLayout() argument
626 print_VkDescriptorSetLayout(const VkDescriptorSetLayout * obj, const std::string& str, bool commaNeeded=true) print_VkDescriptorSetLayout() argument
634 print_VkSampler(VkSampler obj, const std::string& str, bool commaNeeded=true) print_VkSampler() argument
641 print_VkSampler(const VkSampler * obj, const std::string& str, bool commaNeeded=true) print_VkSampler() argument
649 print_VkDescriptorSet(VkDescriptorSet obj, const std::string& str, bool commaNeeded=true) print_VkDescriptorSet() argument
656 print_VkDescriptorSet(const VkDescriptorSet * obj, const std::string& str, bool commaNeeded=true) print_VkDescriptorSet() argument
664 print_VkDescriptorPool(VkDescriptorPool obj, const std::string& str, bool commaNeeded=true) print_VkDescriptorPool() argument
671 print_VkDescriptorPool(const VkDescriptorPool * obj, const std::string& str, bool commaNeeded=true) print_VkDescriptorPool() argument
679 print_VkFramebuffer(VkFramebuffer obj, const std::string& str, bool commaNeeded=true) print_VkFramebuffer() argument
686 print_VkFramebuffer(const VkFramebuffer * obj, const std::string& str, bool commaNeeded=true) print_VkFramebuffer() argument
694 print_VkCommandPool(VkCommandPool obj, const std::string& str, bool commaNeeded=true) print_VkCommandPool() argument
701 print_VkCommandPool(const VkCommandPool * obj, const std::string& str, bool commaNeeded=true) print_VkCommandPool() argument
751 print_VkResult(VkResult obj, const std::string& str, bool commaNeeded=true) print_VkResult() argument
753 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkResult() local
759 print_VkResult(const VkResult * obj, const std::string& str, bool commaNeeded=true) print_VkResult() argument
761 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkResult() local
1427 print_VkStructureType(VkStructureType obj, const std::string& str, bool commaNeeded=true) print_VkStructureType() argument
1429 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkStructureType() local
1435 print_VkStructureType(const VkStructureType * obj, const std::string& str, bool commaNeeded=true) print_VkStructureType() argument
1437 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkStructureType() local
1475 print_VkAccessFlagBits(VkAccessFlagBits obj, const std::string& str, bool commaNeeded=true) print_VkAccessFlagBits() argument
1477 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkAccessFlagBits() local
1483 print_VkAccessFlagBits(const VkAccessFlagBits * obj, const std::string& str, bool commaNeeded=true) print_VkAccessFlagBits() argument
1485 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkAccessFlagBits() local
1521 print_VkImageLayout(VkImageLayout obj, const std::string& str, bool commaNeeded=true) print_VkImageLayout() argument
1523 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkImageLayout() local
1529 print_VkImageLayout(const VkImageLayout * obj, const std::string& str, bool commaNeeded=true) print_VkImageLayout() argument
1531 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkImageLayout() local
1552 print_VkImageAspectFlagBits(VkImageAspectFlagBits obj, const std::string& str, bool commaNeeded=true) print_VkImageAspectFlagBits() argument
1554 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkImageAspectFlagBits() local
1560 print_VkImageAspectFlagBits(const VkImageAspectFlagBits * obj, const std::string& str, bool commaNeeded=true) print_VkImageAspectFlagBits() argument
1562 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkImageAspectFlagBits() local
1617 print_VkObjectType(VkObjectType obj, const std::string& str, bool commaNeeded=true) print_VkObjectType() argument
1619 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkObjectType() local
1625 print_VkObjectType(const VkObjectType * obj, const std::string& str, bool commaNeeded=true) print_VkObjectType() argument
1627 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkObjectType() local
1638 print_VkPipelineCacheHeaderVersion(VkPipelineCacheHeaderVersion obj, const std::string& str, bool commaNeeded=true) print_VkPipelineCacheHeaderVersion() argument
1640 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkPipelineCacheHeaderVersion() local
1646 print_VkPipelineCacheHeaderVersion(const VkPipelineCacheHeaderVersion * obj, const std::string& str, bool commaNeeded=true) print_VkPipelineCacheHeaderVersion() argument
1648 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkPipelineCacheHeaderVersion() local
1663 print_VkVendorId(VkVendorId obj, const std::string& str, bool commaNeeded=true) print_VkVendorId() argument
1665 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkVendorId() local
1671 print_VkVendorId(const VkVendorId * obj, const std::string& str, bool commaNeeded=true) print_VkVendorId() argument
1673 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkVendorId() local
1687 print_VkSystemAllocationScope(VkSystemAllocationScope obj, const std::string& str, bool commaNeeded=true) print_VkSystemAllocationScope() argument
1689 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkSystemAllocationScope() local
1695 print_VkSystemAllocationScope(const VkSystemAllocationScope * obj, const std::string& str, bool commaNeeded=true) print_VkSystemAllocationScope() argument
1697 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkSystemAllocationScope() local
1707 print_VkInternalAllocationType(VkInternalAllocationType obj, const std::string& str, bool commaNeeded=true) print_VkInternalAllocationType() argument
1709 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkInternalAllocationType() local
1715 print_VkInternalAllocationType(const VkInternalAllocationType * obj, const std::string& str, bool commaNeeded=true) print_VkInternalAllocationType() argument
1717 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkInternalAllocationType() local
2003 print_VkFormat(VkFormat obj, const std::string& str, bool commaNeeded=true) print_VkFormat() argument
2005 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkFormat() local
2011 print_VkFormat(const VkFormat * obj, const std::string& str, bool commaNeeded=true) print_VkFormat() argument
2013 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkFormat() local
2053 print_VkFormatFeatureFlagBits(VkFormatFeatureFlagBits obj, const std::string& str, bool commaNeeded=true) print_VkFormatFeatureFlagBits() argument
2055 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkFormatFeatureFlagBits() local
2061 print_VkFormatFeatureFlagBits(const VkFormatFeatureFlagBits * obj, const std::string& str, bool commaNeeded=true) print_VkFormatFeatureFlagBits() argument
2063 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkFormatFeatureFlagBits() local
2090 print_VkImageCreateFlagBits(VkImageCreateFlagBits obj, const std::string& str, bool commaNeeded=true) print_VkImageCreateFlagBits() argument
2092 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkImageCreateFlagBits() local
2098 print_VkImageCreateFlagBits(const VkImageCreateFlagBits * obj, const std::string& str, bool commaNeeded=true) print_VkImageCreateFlagBits() argument
2100 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkImageCreateFlagBits() local
2116 print_VkSampleCountFlagBits(VkSampleCountFlagBits obj, const std::string& str, bool commaNeeded=true) print_VkSampleCountFlagBits() argument
2118 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkSampleCountFlagBits() local
2124 print_VkSampleCountFlagBits(const VkSampleCountFlagBits * obj, const std::string& str, bool commaNeeded=true) print_VkSampleCountFlagBits() argument
2126 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkSampleCountFlagBits() local
2138 print_VkImageTiling(VkImageTiling obj, const std::string& str, bool commaNeeded=true) print_VkImageTiling() argument
2140 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkImageTiling() local
2146 print_VkImageTiling(const VkImageTiling * obj, const std::string& str, bool commaNeeded=true) print_VkImageTiling() argument
2148 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkImageTiling() local
2160 print_VkImageType(VkImageType obj, const std::string& str, bool commaNeeded=true) print_VkImageType() argument
2162 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkImageType() local
2168 print_VkImageType(const VkImageType * obj, const std::string& str, bool commaNeeded=true) print_VkImageType() argument
2170 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkImageType() local
2199 print_VkImageUsageFlagBits(VkImageUsageFlagBits obj, const std::string& str, bool commaNeeded=true) print_VkImageUsageFlagBits() argument
2201 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkImageUsageFlagBits() local
2207 print_VkImageUsageFlagBits(const VkImageUsageFlagBits * obj, const std::string& str, bool commaNeeded=true) print_VkImageUsageFlagBits() argument
2209 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkImageUsageFlagBits() local
2221 print_VkMemoryHeapFlagBits(VkMemoryHeapFlagBits obj, const std::string& str, bool commaNeeded=true) print_VkMemoryHeapFlagBits() argument
2223 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkMemoryHeapFlagBits() local
2229 print_VkMemoryHeapFlagBits(const VkMemoryHeapFlagBits * obj, const std::string& str, bool commaNeeded=true) print_VkMemoryHeapFlagBits() argument
2231 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkMemoryHeapFlagBits() local
2249 print_VkMemoryPropertyFlagBits(VkMemoryPropertyFlagBits obj, const std::string& str, bool commaNeeded=true) print_VkMemoryPropertyFlagBits() argument
2251 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkMemoryPropertyFlagBits() local
2257 print_VkMemoryPropertyFlagBits(const VkMemoryPropertyFlagBits * obj, const std::string& str, bool commaNeeded=true) print_VkMemoryPropertyFlagBits() argument
2259 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkMemoryPropertyFlagBits() local
2273 print_VkPhysicalDeviceType(VkPhysicalDeviceType obj, const std::string& str, bool commaNeeded=true) print_VkPhysicalDeviceType() argument
2275 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkPhysicalDeviceType() local
2281 print_VkPhysicalDeviceType(const VkPhysicalDeviceType * obj, const std::string& str, bool commaNeeded=true) print_VkPhysicalDeviceType() argument
2283 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkPhysicalDeviceType() local
2298 print_VkQueueFlagBits(VkQueueFlagBits obj, const std::string& str, bool commaNeeded=true) print_VkQueueFlagBits() argument
2300 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkQueueFlagBits() local
2306 print_VkQueueFlagBits(const VkQueueFlagBits * obj, const std::string& str, bool commaNeeded=true) print_VkQueueFlagBits() argument
2308 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkQueueFlagBits() local
2318 print_VkDeviceQueueCreateFlagBits(VkDeviceQueueCreateFlagBits obj, const std::string& str, bool commaNeeded=true) print_VkDeviceQueueCreateFlagBits() argument
2320 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkDeviceQueueCreateFlagBits() local
2326 print_VkDeviceQueueCreateFlagBits(const VkDeviceQueueCreateFlagBits * obj, const std::string& str, bool commaNeeded=true) print_VkDeviceQueueCreateFlagBits() argument
2328 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkDeviceQueueCreateFlagBits() local
2364 print_VkPipelineStageFlagBits(VkPipelineStageFlagBits obj, const std::string& str, bool commaNeeded=true) print_VkPipelineStageFlagBits() argument
2366 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkPipelineStageFlagBits() local
2372 print_VkPipelineStageFlagBits(const VkPipelineStageFlagBits * obj, const std::string& str, bool commaNeeded=true) print_VkPipelineStageFlagBits() argument
2374 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkPipelineStageFlagBits() local
2384 print_VkFenceCreateFlagBits(VkFenceCreateFlagBits obj, const std::string& str, bool commaNeeded=true) print_VkFenceCreateFlagBits() argument
2386 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkFenceCreateFlagBits() local
2392 print_VkFenceCreateFlagBits(const VkFenceCreateFlagBits * obj, const std::string& str, bool commaNeeded=true) print_VkFenceCreateFlagBits() argument
2394 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkFenceCreateFlagBits() local
2404 print_VkEventCreateFlagBits(VkEventCreateFlagBits obj, const std::string& str, bool commaNeeded=true) print_VkEventCreateFlagBits() argument
2406 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkEventCreateFlagBits() local
2412 print_VkEventCreateFlagBits(const VkEventCreateFlagBits * obj, const std::string& str, bool commaNeeded=true) print_VkEventCreateFlagBits() argument
2414 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkEventCreateFlagBits() local
2434 print_VkQueryPipelineStatisticFlagBits(VkQueryPipelineStatisticFlagBits obj, const std::string& str, bool commaNeeded=true) print_VkQueryPipelineStatisticFlagBits() argument
2436 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkQueryPipelineStatisticFlagBits() local
2442 print_VkQueryPipelineStatisticFlagBits(const VkQueryPipelineStatisticFlagBits * obj, const std::string& str, bool commaNeeded=true) print_VkQueryPipelineStatisticFlagBits() argument
2444 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkQueryPipelineStatisticFlagBits() local
2464 print_VkQueryType(VkQueryType obj, const std::string& str, bool commaNeeded=true) print_VkQueryType() argument
2466 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkQueryType() local
2472 print_VkQueryType(const VkQueryType * obj, const std::string& str, bool commaNeeded=true) print_VkQueryType() argument
2474 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkQueryType() local
2488 print_VkQueryResultFlagBits(VkQueryResultFlagBits obj, const std::string& str, bool commaNeeded=true) print_VkQueryResultFlagBits() argument
2490 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkQueryResultFlagBits() local
2496 print_VkQueryResultFlagBits(const VkQueryResultFlagBits * obj, const std::string& str, bool commaNeeded=true) print_VkQueryResultFlagBits() argument
2498 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkQueryResultFlagBits() local
2513 print_VkBufferCreateFlagBits(VkBufferCreateFlagBits obj, const std::string& str, bool commaNeeded=true) print_VkBufferCreateFlagBits() argument
2515 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkBufferCreateFlagBits() local
2521 print_VkBufferCreateFlagBits(const VkBufferCreateFlagBits * obj, const std::string& str, bool commaNeeded=true) print_VkBufferCreateFlagBits() argument
2523 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkBufferCreateFlagBits() local
2555 print_VkBufferUsageFlagBits(VkBufferUsageFlagBits obj, const std::string& str, bool commaNeeded=true) print_VkBufferUsageFlagBits() argument
2557 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkBufferUsageFlagBits() local
2563 print_VkBufferUsageFlagBits(const VkBufferUsageFlagBits * obj, const std::string& str, bool commaNeeded=true) print_VkBufferUsageFlagBits() argument
2565 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkBufferUsageFlagBits() local
2576 print_VkSharingMode(VkSharingMode obj, const std::string& str, bool commaNeeded=true) print_VkSharingMode() argument
2578 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkSharingMode() local
2584 print_VkSharingMode(const VkSharingMode * obj, const std::string& str, bool commaNeeded=true) print_VkSharingMode() argument
2586 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkSharingMode() local
2602 print_VkComponentSwizzle(VkComponentSwizzle obj, const std::string& str, bool commaNeeded=true) print_VkComponentSwizzle() argument
2604 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkComponentSwizzle() local
2610 print_VkComponentSwizzle(const VkComponentSwizzle * obj, const std::string& str, bool commaNeeded=true) print_VkComponentSwizzle() argument
2612 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkComponentSwizzle() local
2623 print_VkImageViewCreateFlagBits(VkImageViewCreateFlagBits obj, const std::string& str, bool commaNeeded=true) print_VkImageViewCreateFlagBits() argument
2625 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkImageViewCreateFlagBits() local
2631 print_VkImageViewCreateFlagBits(const VkImageViewCreateFlagBits * obj, const std::string& str, bool commaNeeded=true) print_VkImageViewCreateFlagBits() argument
2633 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkImageViewCreateFlagBits() local
2649 print_VkImageViewType(VkImageViewType obj, const std::string& str, bool commaNeeded=true) print_VkImageViewType() argument
2651 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkImageViewType() local
2657 print_VkImageViewType(const VkImageViewType * obj, const std::string& str, bool commaNeeded=true) print_VkImageViewType() argument
2659 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkImageViewType() local
2671 print_VkPipelineCacheCreateFlagBits(VkPipelineCacheCreateFlagBits obj, const std::string& str, bool commaNeeded=true) print_VkPipelineCacheCreateFlagBits() argument
2673 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkPipelineCacheCreateFlagBits() local
2679 print_VkPipelineCacheCreateFlagBits(const VkPipelineCacheCreateFlagBits * obj, const std::string& str, bool commaNeeded=true) print_VkPipelineCacheCreateFlagBits() argument
2681 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkPipelineCacheCreateFlagBits() local
2709 print_VkBlendFactor(VkBlendFactor obj, const std::string& str, bool commaNeeded=true) print_VkBlendFactor() argument
2711 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkBlendFactor() local
2717 print_VkBlendFactor(const VkBlendFactor * obj, const std::string& str, bool commaNeeded=true) print_VkBlendFactor() argument
2719 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkBlendFactor() local
2779 print_VkBlendOp(VkBlendOp obj, const std::string& str, bool commaNeeded=true) print_VkBlendOp() argument
2781 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkBlendOp() local
2787 print_VkBlendOp(const VkBlendOp * obj, const std::string& str, bool commaNeeded=true) print_VkBlendOp() argument
2789 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkBlendOp() local
2802 print_VkColorComponentFlagBits(VkColorComponentFlagBits obj, const std::string& str, bool commaNeeded=true) print_VkColorComponentFlagBits() argument
2804 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkColorComponentFlagBits() local
2810 print_VkColorComponentFlagBits(const VkColorComponentFlagBits * obj, const std::string& str, bool commaNeeded=true) print_VkColorComponentFlagBits() argument
2812 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkColorComponentFlagBits() local
2829 print_VkCompareOp(VkCompareOp obj, const std::string& str, bool commaNeeded=true) print_VkCompareOp() argument
2831 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkCompareOp() local
2837 print_VkCompareOp(const VkCompareOp * obj, const std::string& str, bool commaNeeded=true) print_VkCompareOp() argument
2839 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkCompareOp() local
2870 print_VkPipelineCreateFlagBits(VkPipelineCreateFlagBits obj, const std::string& str, bool commaNeeded=true) print_VkPipelineCreateFlagBits() argument
2872 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkPipelineCreateFlagBits() local
2878 print_VkPipelineCreateFlagBits(const VkPipelineCreateFlagBits * obj, const std::string& str, bool commaNeeded=true) print_VkPipelineCreateFlagBits() argument
2880 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkPipelineCreateFlagBits() local
2892 print_VkPipelineShaderStageCreateFlagBits(VkPipelineShaderStageCreateFlagBits obj, const std::string& str, bool commaNeeded=true) print_VkPipelineShaderStageCreateFlagBits() argument
2894 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkPipelineShaderStageCreateFlagBits() local
2900 print_VkPipelineShaderStageCreateFlagBits(const VkPipelineShaderStageCreateFlagBits * obj, const std::string& str, bool commaNeeded=true) print_VkPipelineShaderStageCreateFlagBits() argument
2902 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkPipelineShaderStageCreateFlagBits() local
2928 print_VkShaderStageFlagBits(VkShaderStageFlagBits obj, const std::string& str, bool commaNeeded=true) print_VkShaderStageFlagBits() argument
2930 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkShaderStageFlagBits() local
2936 print_VkShaderStageFlagBits(const VkShaderStageFlagBits * obj, const std::string& str, bool commaNeeded=true) print_VkShaderStageFlagBits() argument
2938 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkShaderStageFlagBits() local
2951 print_VkCullModeFlagBits(VkCullModeFlagBits obj, const std::string& str, bool commaNeeded=true) print_VkCullModeFlagBits() argument
2953 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkCullModeFlagBits() local
2959 print_VkCullModeFlagBits(const VkCullModeFlagBits * obj, const std::string& str, bool commaNeeded=true) print_VkCullModeFlagBits() argument
2961 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkCullModeFlagBits() local
3007 print_VkDynamicState(VkDynamicState obj, const std::string& str, bool commaNeeded=true) print_VkDynamicState() argument
3009 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkDynamicState() local
3015 print_VkDynamicState(const VkDynamicState * obj, const std::string& str, bool commaNeeded=true) print_VkDynamicState() argument
3017 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkDynamicState() local
3028 print_VkFrontFace(VkFrontFace obj, const std::string& str, bool commaNeeded=true) print_VkFrontFace() argument
3030 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkFrontFace() local
3036 print_VkFrontFace(const VkFrontFace * obj, const std::string& str, bool commaNeeded=true) print_VkFrontFace() argument
3038 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkFrontFace() local
3049 print_VkVertexInputRate(VkVertexInputRate obj, const std::string& str, bool commaNeeded=true) print_VkVertexInputRate() argument
3051 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkVertexInputRate() local
3057 print_VkVertexInputRate(const VkVertexInputRate * obj, const std::string& str, bool commaNeeded=true) print_VkVertexInputRate() argument
3059 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkVertexInputRate() local
3079 print_VkPrimitiveTopology(VkPrimitiveTopology obj, const std::string& str, bool commaNeeded=true) print_VkPrimitiveTopology() argument
3081 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkPrimitiveTopology() local
3087 print_VkPrimitiveTopology(const VkPrimitiveTopology * obj, const std::string& str, bool commaNeeded=true) print_VkPrimitiveTopology() argument
3089 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkPrimitiveTopology() local
3102 print_VkPolygonMode(VkPolygonMode obj, const std::string& str, bool commaNeeded=true) print_VkPolygonMode() argument
3104 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkPolygonMode() local
3110 print_VkPolygonMode(const VkPolygonMode * obj, const std::string& str, bool commaNeeded=true) print_VkPolygonMode() argument
3112 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkPolygonMode() local
3129 print_VkStencilOp(VkStencilOp obj, const std::string& str, bool commaNeeded=true) print_VkStencilOp() argument
3131 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkStencilOp() local
3137 print_VkStencilOp(const VkStencilOp * obj, const std::string& str, bool commaNeeded=true) print_VkStencilOp() argument
3139 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkStencilOp() local
3164 print_VkLogicOp(VkLogicOp obj, const std::string& str, bool commaNeeded=true) print_VkLogicOp() argument
3166 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkLogicOp() local
3172 print_VkLogicOp(const VkLogicOp * obj, const std::string& str, bool commaNeeded=true) print_VkLogicOp() argument
3174 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkLogicOp() local
3191 print_VkBorderColor(VkBorderColor obj, const std::string& str, bool commaNeeded=true) print_VkBorderColor() argument
3193 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkBorderColor() local
3199 print_VkBorderColor(const VkBorderColor * obj, const std::string& str, bool commaNeeded=true) print_VkBorderColor() argument
3201 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkBorderColor() local
3213 print_VkFilter(VkFilter obj, const std::string& str, bool commaNeeded=true) print_VkFilter() argument
3215 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkFilter() local
3221 print_VkFilter(const VkFilter * obj, const std::string& str, bool commaNeeded=true) print_VkFilter() argument
3223 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkFilter() local
3238 print_VkSamplerAddressMode(VkSamplerAddressMode obj, const std::string& str, bool commaNeeded=true) print_VkSamplerAddressMode() argument
3240 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkSamplerAddressMode() local
3246 print_VkSamplerAddressMode(const VkSamplerAddressMode * obj, const std::string& str, bool commaNeeded=true) print_VkSamplerAddressMode() argument
3248 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkSamplerAddressMode() local
3261 print_VkSamplerCreateFlagBits(VkSamplerCreateFlagBits obj, const std::string& str, bool commaNeeded=true) print_VkSamplerCreateFlagBits() argument
3263 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkSamplerCreateFlagBits() local
3269 print_VkSamplerCreateFlagBits(const VkSamplerCreateFlagBits * obj, const std::string& str, bool commaNeeded=true) print_VkSamplerCreateFlagBits() argument
3271 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkSamplerCreateFlagBits() local
3282 print_VkSamplerMipmapMode(VkSamplerMipmapMode obj, const std::string& str, bool commaNeeded=true) print_VkSamplerMipmapMode() argument
3284 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkSamplerMipmapMode() local
3290 print_VkSamplerMipmapMode(const VkSamplerMipmapMode * obj, const std::string& str, bool commaNeeded=true) print_VkSamplerMipmapMode() argument
3292 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkSamplerMipmapMode() local
3304 print_VkDescriptorPoolCreateFlagBits(VkDescriptorPoolCreateFlagBits obj, const std::string& str, bool commaNeeded=true) print_VkDescriptorPoolCreateFlagBits() argument
3306 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkDescriptorPoolCreateFlagBits() local
3312 print_VkDescriptorPoolCreateFlagBits(const VkDescriptorPoolCreateFlagBits * obj, const std::string& str, bool commaNeeded=true) print_VkDescriptorPoolCreateFlagBits() argument
3314 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkDescriptorPoolCreateFlagBits() local
3338 print_VkDescriptorType(VkDescriptorType obj, const std::string& str, bool commaNeeded=true) print_VkDescriptorType() argument
3340 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkDescriptorType() local
3346 print_VkDescriptorType(const VkDescriptorType * obj, const std::string& str, bool commaNeeded=true) print_VkDescriptorType() argument
3348 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkDescriptorType() local
3362 print_VkDescriptorSetLayoutCreateFlagBits(VkDescriptorSetLayoutCreateFlagBits obj, const std::string& str, bool commaNeeded=true) print_VkDescriptorSetLayoutCreateFlagBits() argument
3364 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkDescriptorSetLayoutCreateFlagBits() local
3370 print_VkDescriptorSetLayoutCreateFlagBits(const VkDescriptorSetLayoutCreateFlagBits * obj, const std::string& str, bool commaNeeded=true) print_VkDescriptorSetLayoutCreateFlagBits() argument
3372 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkDescriptorSetLayoutCreateFlagBits() local
3382 print_VkAttachmentDescriptionFlagBits(VkAttachmentDescriptionFlagBits obj, const std::string& str, bool commaNeeded=true) print_VkAttachmentDescriptionFlagBits() argument
3384 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkAttachmentDescriptionFlagBits() local
3390 print_VkAttachmentDescriptionFlagBits(const VkAttachmentDescriptionFlagBits * obj, const std::string& str, bool commaNeeded=true) print_VkAttachmentDescriptionFlagBits() argument
3392 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkAttachmentDescriptionFlagBits() local
3405 print_VkAttachmentLoadOp(VkAttachmentLoadOp obj, const std::string& str, bool commaNeeded=true) print_VkAttachmentLoadOp() argument
3407 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkAttachmentLoadOp() local
3413 print_VkAttachmentLoadOp(const VkAttachmentLoadOp * obj, const std::string& str, bool commaNeeded=true) print_VkAttachmentLoadOp() argument
3415 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkAttachmentLoadOp() local
3427 print_VkAttachmentStoreOp(VkAttachmentStoreOp obj, const std::string& str, bool commaNeeded=true) print_VkAttachmentStoreOp() argument
3429 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkAttachmentStoreOp() local
3435 print_VkAttachmentStoreOp(const VkAttachmentStoreOp * obj, const std::string& str, bool commaNeeded=true) print_VkAttachmentStoreOp() argument
3437 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkAttachmentStoreOp() local
3449 print_VkDependencyFlagBits(VkDependencyFlagBits obj, const std::string& str, bool commaNeeded=true) print_VkDependencyFlagBits() argument
3451 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkDependencyFlagBits() local
3457 print_VkDependencyFlagBits(const VkDependencyFlagBits * obj, const std::string& str, bool commaNeeded=true) print_VkDependencyFlagBits() argument
3459 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkDependencyFlagBits() local
3469 print_VkFramebufferCreateFlagBits(VkFramebufferCreateFlagBits obj, const std::string& str, bool commaNeeded=true) print_VkFramebufferCreateFlagBits() argument
3471 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkFramebufferCreateFlagBits() local
3477 print_VkFramebufferCreateFlagBits(const VkFramebufferCreateFlagBits * obj, const std::string& str, bool commaNeeded=true) print_VkFramebufferCreateFlagBits() argument
3479 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkFramebufferCreateFlagBits() local
3492 print_VkPipelineBindPoint(VkPipelineBindPoint obj, const std::string& str, bool commaNeeded=true) print_VkPipelineBindPoint() argument
3494 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkPipelineBindPoint() local
3500 print_VkPipelineBindPoint(const VkPipelineBindPoint * obj, const std::string& str, bool commaNeeded=true) print_VkPipelineBindPoint() argument
3502 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkPipelineBindPoint() local
3513 print_VkRenderPassCreateFlagBits(VkRenderPassCreateFlagBits obj, const std::string& str, bool commaNeeded=true) print_VkRenderPassCreateFlagBits() argument
3515 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkRenderPassCreateFlagBits() local
3521 print_VkRenderPassCreateFlagBits(const VkRenderPassCreateFlagBits * obj, const std::string& str, bool commaNeeded=true) print_VkRenderPassCreateFlagBits() argument
3523 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkRenderPassCreateFlagBits() local
3539 print_VkSubpassDescriptionFlagBits(VkSubpassDescriptionFlagBits obj, const std::string& str, bool commaNeeded=true) print_VkSubpassDescriptionFlagBits() argument
3541 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkSubpassDescriptionFlagBits() local
3547 print_VkSubpassDescriptionFlagBits(const VkSubpassDescriptionFlagBits * obj, const std::string& str, bool commaNeeded=true) print_VkSubpassDescriptionFlagBits() argument
3549 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkSubpassDescriptionFlagBits() local
3561 print_VkCommandPoolCreateFlagBits(VkCommandPoolCreateFlagBits obj, const std::string& str, bool commaNeeded=true) print_VkCommandPoolCreateFlagBits() argument
3563 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkCommandPoolCreateFlagBits() local
3569 print_VkCommandPoolCreateFlagBits(const VkCommandPoolCreateFlagBits * obj, const std::string& str, bool commaNeeded=true) print_VkCommandPoolCreateFlagBits() argument
3571 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkCommandPoolCreateFlagBits() local
3581 print_VkCommandPoolResetFlagBits(VkCommandPoolResetFlagBits obj, const std::string& str, bool commaNeeded=true) print_VkCommandPoolResetFlagBits() argument
3583 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkCommandPoolResetFlagBits() local
3589 print_VkCommandPoolResetFlagBits(const VkCommandPoolResetFlagBits * obj, const std::string& str, bool commaNeeded=true) print_VkCommandPoolResetFlagBits() argument
3591 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkCommandPoolResetFlagBits() local
3602 print_VkCommandBufferLevel(VkCommandBufferLevel obj, const std::string& str, bool commaNeeded=true) print_VkCommandBufferLevel() argument
3604 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkCommandBufferLevel() local
3610 print_VkCommandBufferLevel(const VkCommandBufferLevel * obj, const std::string& str, bool commaNeeded=true) print_VkCommandBufferLevel() argument
3612 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkCommandBufferLevel() local
3624 print_VkCommandBufferUsageFlagBits(VkCommandBufferUsageFlagBits obj, const std::string& str, bool commaNeeded=true) print_VkCommandBufferUsageFlagBits() argument
3626 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkCommandBufferUsageFlagBits() local
3632 print_VkCommandBufferUsageFlagBits(const VkCommandBufferUsageFlagBits * obj, const std::string& str, bool commaNeeded=true) print_VkCommandBufferUsageFlagBits() argument
3634 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkCommandBufferUsageFlagBits() local
3644 print_VkQueryControlFlagBits(VkQueryControlFlagBits obj, const std::string& str, bool commaNeeded=true) print_VkQueryControlFlagBits() argument
3646 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkQueryControlFlagBits() local
3652 print_VkQueryControlFlagBits(const VkQueryControlFlagBits * obj, const std::string& str, bool commaNeeded=true) print_VkQueryControlFlagBits() argument
3654 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkQueryControlFlagBits() local
3664 print_VkCommandBufferResetFlagBits(VkCommandBufferResetFlagBits obj, const std::string& str, bool commaNeeded=true) print_VkCommandBufferResetFlagBits() argument
3666 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkCommandBufferResetFlagBits() local
3672 print_VkCommandBufferResetFlagBits(const VkCommandBufferResetFlagBits * obj, const std::string& str, bool commaNeeded=true) print_VkCommandBufferResetFlagBits() argument
3674 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkCommandBufferResetFlagBits() local
3687 print_VkIndexType(VkIndexType obj, const std::string& str, bool commaNeeded=true) print_VkIndexType() argument
3689 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkIndexType() local
3695 print_VkIndexType(const VkIndexType * obj, const std::string& str, bool commaNeeded=true) print_VkIndexType() argument
3697 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkIndexType() local
3709 print_VkStencilFaceFlagBits(VkStencilFaceFlagBits obj, const std::string& str, bool commaNeeded=true) print_VkStencilFaceFlagBits() argument
3711 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkStencilFaceFlagBits() local
3717 print_VkStencilFaceFlagBits(const VkStencilFaceFlagBits * obj, const std::string& str, bool commaNeeded=true) print_VkStencilFaceFlagBits() argument
3719 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkStencilFaceFlagBits() local
3730 print_VkSubpassContents(VkSubpassContents obj, const std::string& str, bool commaNeeded=true) print_VkSubpassContents() argument
3732 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkSubpassContents() local
3738 print_VkSubpassContents(const VkSubpassContents * obj, const std::string& str, bool commaNeeded=true) print_VkSubpassContents() argument
3740 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkSubpassContents() local
3747 print_VkAccessFlags(VkAccessFlags obj, const std::string& str, bool commaNeeded=true) print_VkAccessFlags() argument
3749 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkAccessFlags() local
3769 print_VkAccessFlags(const VkAccessFlags * obj, const std::string& str, bool commaNeeded=true) print_VkAccessFlags() argument
3771 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkAccessFlags() local
3792 print_VkImageAspectFlags(VkImageAspectFlags obj, const std::string& str, bool commaNeeded=true) print_VkImageAspectFlags() argument
3794 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkImageAspectFlags() local
3814 print_VkImageAspectFlags(const VkImageAspectFlags * obj, const std::string& str, bool commaNeeded=true) print_VkImageAspectFlags() argument
3816 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkImageAspectFlags() local
3837 print_VkFormatFeatureFlags(VkFormatFeatureFlags obj, const std::string& str, bool commaNeeded=true) print_VkFormatFeatureFlags() argument
3839 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkFormatFeatureFlags() local
3859 print_VkFormatFeatureFlags(const VkFormatFeatureFlags * obj, const std::string& str, bool commaNeeded=true) print_VkFormatFeatureFlags() argument
3861 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkFormatFeatureFlags() local
3882 print_VkImageCreateFlags(VkImageCreateFlags obj, const std::string& str, bool commaNeeded=true) print_VkImageCreateFlags() argument
3884 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkImageCreateFlags() local
3904 print_VkImageCreateFlags(const VkImageCreateFlags * obj, const std::string& str, bool commaNeeded=true) print_VkImageCreateFlags() argument
3906 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkImageCreateFlags() local
3927 print_VkSampleCountFlags(VkSampleCountFlags obj, const std::string& str, bool commaNeeded=true) print_VkSampleCountFlags() argument
3929 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkSampleCountFlags() local
3949 print_VkSampleCountFlags(const VkSampleCountFlags * obj, const std::string& str, bool commaNeeded=true) print_VkSampleCountFlags() argument
3951 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkSampleCountFlags() local
3972 print_VkImageUsageFlags(VkImageUsageFlags obj, const std::string& str, bool commaNeeded=true) print_VkImageUsageFlags() argument
3974 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkImageUsageFlags() local
3994 print_VkImageUsageFlags(const VkImageUsageFlags * obj, const std::string& str, bool commaNeeded=true) print_VkImageUsageFlags() argument
3996 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkImageUsageFlags() local
4017 print_VkInstanceCreateFlags(VkInstanceCreateFlags obj, const std::string& str, bool commaNeeded=true) print_VkInstanceCreateFlags() argument
4024 print_VkInstanceCreateFlags(const VkInstanceCreateFlags * obj, const std::string& str, bool commaNeeded=true) print_VkInstanceCreateFlags() argument
4032 print_VkMemoryHeapFlags(VkMemoryHeapFlags obj, const std::string& str, bool commaNeeded=true) print_VkMemoryHeapFlags() argument
4034 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkMemoryHeapFlags() local
4054 print_VkMemoryHeapFlags(const VkMemoryHeapFlags * obj, const std::string& str, bool commaNeeded=true) print_VkMemoryHeapFlags() argument
4056 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkMemoryHeapFlags() local
4077 print_VkMemoryPropertyFlags(VkMemoryPropertyFlags obj, const std::string& str, bool commaNeeded=true) print_VkMemoryPropertyFlags() argument
4079 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkMemoryPropertyFlags() local
4099 print_VkMemoryPropertyFlags(const VkMemoryPropertyFlags * obj, const std::string& str, bool commaNeeded=true) print_VkMemoryPropertyFlags() argument
4101 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkMemoryPropertyFlags() local
4122 print_VkQueueFlags(VkQueueFlags obj, const std::string& str, bool commaNeeded=true) print_VkQueueFlags() argument
4124 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkQueueFlags() local
4144 print_VkQueueFlags(const VkQueueFlags * obj, const std::string& str, bool commaNeeded=true) print_VkQueueFlags() argument
4146 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkQueueFlags() local
4167 print_VkDeviceCreateFlags(VkDeviceCreateFlags obj, const std::string& str, bool commaNeeded=true) print_VkDeviceCreateFlags() argument
4174 print_VkDeviceCreateFlags(const VkDeviceCreateFlags * obj, const std::string& str, bool commaNeeded=true) print_VkDeviceCreateFlags() argument
4182 print_VkDeviceQueueCreateFlags(VkDeviceQueueCreateFlags obj, const std::string& str, bool commaNeeded=true) print_VkDeviceQueueCreateFlags() argument
4184 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkDeviceQueueCreateFlags() local
4204 print_VkDeviceQueueCreateFlags(const VkDeviceQueueCreateFlags * obj, const std::string& str, bool commaNeeded=true) print_VkDeviceQueueCreateFlags() argument
4206 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkDeviceQueueCreateFlags() local
4227 print_VkPipelineStageFlags(VkPipelineStageFlags obj, const std::string& str, bool commaNeeded=true) print_VkPipelineStageFlags() argument
4229 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkPipelineStageFlags() local
4249 print_VkPipelineStageFlags(const VkPipelineStageFlags * obj, const std::string& str, bool commaNeeded=true) print_VkPipelineStageFlags() argument
4251 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkPipelineStageFlags() local
4272 print_VkMemoryMapFlags(VkMemoryMapFlags obj, const std::string& str, bool commaNeeded=true) print_VkMemoryMapFlags() argument
4279 print_VkMemoryMapFlags(const VkMemoryMapFlags * obj, const std::string& str, bool commaNeeded=true) print_VkMemoryMapFlags() argument
4287 print_VkFenceCreateFlags(VkFenceCreateFlags obj, const std::string& str, bool commaNeeded=true) print_VkFenceCreateFlags() argument
4289 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkFenceCreateFlags() local
4309 print_VkFenceCreateFlags(const VkFenceCreateFlags * obj, const std::string& str, bool commaNeeded=true) print_VkFenceCreateFlags() argument
4311 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkFenceCreateFlags() local
4332 print_VkSemaphoreCreateFlags(VkSemaphoreCreateFlags obj, const std::string& str, bool commaNeeded=true) print_VkSemaphoreCreateFlags() argument
4339 print_VkSemaphoreCreateFlags(const VkSemaphoreCreateFlags * obj, const std::string& str, bool commaNeeded=true) print_VkSemaphoreCreateFlags() argument
4347 print_VkEventCreateFlags(VkEventCreateFlags obj, const std::string& str, bool commaNeeded=true) print_VkEventCreateFlags() argument
4349 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkEventCreateFlags() local
4369 print_VkEventCreateFlags(const VkEventCreateFlags * obj, const std::string& str, bool commaNeeded=true) print_VkEventCreateFlags() argument
4371 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkEventCreateFlags() local
4392 print_VkQueryPipelineStatisticFlags(VkQueryPipelineStatisticFlags obj, const std::string& str, bool commaNeeded=true) print_VkQueryPipelineStatisticFlags() argument
4394 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkQueryPipelineStatisticFlags() local
4414 print_VkQueryPipelineStatisticFlags(const VkQueryPipelineStatisticFlags * obj, const std::string& str, bool commaNeeded=true) print_VkQueryPipelineStatisticFlags() argument
4416 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkQueryPipelineStatisticFlags() local
4437 print_VkQueryPoolCreateFlags(VkQueryPoolCreateFlags obj, const std::string& str, bool commaNeeded=true) print_VkQueryPoolCreateFlags() argument
4444 print_VkQueryPoolCreateFlags(const VkQueryPoolCreateFlags * obj, const std::string& str, bool commaNeeded=true) print_VkQueryPoolCreateFlags() argument
4452 print_VkQueryResultFlags(VkQueryResultFlags obj, const std::string& str, bool commaNeeded=true) print_VkQueryResultFlags() argument
4454 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkQueryResultFlags() local
4474 print_VkQueryResultFlags(const VkQueryResultFlags * obj, const std::string& str, bool commaNeeded=true) print_VkQueryResultFlags() argument
4476 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkQueryResultFlags() local
4497 print_VkBufferCreateFlags(VkBufferCreateFlags obj, const std::string& str, bool commaNeeded=true) print_VkBufferCreateFlags() argument
4499 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkBufferCreateFlags() local
4519 print_VkBufferCreateFlags(const VkBufferCreateFlags * obj, const std::string& str, bool commaNeeded=true) print_VkBufferCreateFlags() argument
4521 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkBufferCreateFlags() local
4542 print_VkBufferUsageFlags(VkBufferUsageFlags obj, const std::string& str, bool commaNeeded=true) print_VkBufferUsageFlags() argument
4544 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkBufferUsageFlags() local
4564 print_VkBufferUsageFlags(const VkBufferUsageFlags * obj, const std::string& str, bool commaNeeded=true) print_VkBufferUsageFlags() argument
4566 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkBufferUsageFlags() local
4587 print_VkBufferViewCreateFlags(VkBufferViewCreateFlags obj, const std::string& str, bool commaNeeded=true) print_VkBufferViewCreateFlags() argument
4594 print_VkBufferViewCreateFlags(const VkBufferViewCreateFlags * obj, const std::string& str, bool commaNeeded=true) print_VkBufferViewCreateFlags() argument
4602 print_VkImageViewCreateFlags(VkImageViewCreateFlags obj, const std::string& str, bool commaNeeded=true) print_VkImageViewCreateFlags() argument
4604 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkImageViewCreateFlags() local
4624 print_VkImageViewCreateFlags(const VkImageViewCreateFlags * obj, const std::string& str, bool commaNeeded=true) print_VkImageViewCreateFlags() argument
4626 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkImageViewCreateFlags() local
4647 print_VkPipelineCacheCreateFlags(VkPipelineCacheCreateFlags obj, const std::string& str, bool commaNeeded=true) print_VkPipelineCacheCreateFlags() argument
4649 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkPipelineCacheCreateFlags() local
4669 print_VkPipelineCacheCreateFlags(const VkPipelineCacheCreateFlags * obj, const std::string& str, bool commaNeeded=true) print_VkPipelineCacheCreateFlags() argument
4671 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkPipelineCacheCreateFlags() local
4692 print_VkColorComponentFlags(VkColorComponentFlags obj, const std::string& str, bool commaNeeded=true) print_VkColorComponentFlags() argument
4694 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkColorComponentFlags() local
4714 print_VkColorComponentFlags(const VkColorComponentFlags * obj, const std::string& str, bool commaNeeded=true) print_VkColorComponentFlags() argument
4716 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkColorComponentFlags() local
4737 print_VkPipelineCreateFlags(VkPipelineCreateFlags obj, const std::string& str, bool commaNeeded=true) print_VkPipelineCreateFlags() argument
4739 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkPipelineCreateFlags() local
4759 print_VkPipelineCreateFlags(const VkPipelineCreateFlags * obj, const std::string& str, bool commaNeeded=true) print_VkPipelineCreateFlags() argument
4761 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkPipelineCreateFlags() local
4782 print_VkPipelineShaderStageCreateFlags(VkPipelineShaderStageCreateFlags obj, const std::string& str, bool commaNeeded=true) print_VkPipelineShaderStageCreateFlags() argument
4784 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkPipelineShaderStageCreateFlags() local
4804 print_VkPipelineShaderStageCreateFlags(const VkPipelineShaderStageCreateFlags * obj, const std::string& str, bool commaNeeded=true) print_VkPipelineShaderStageCreateFlags() argument
4806 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkPipelineShaderStageCreateFlags() local
4827 print_VkCullModeFlags(VkCullModeFlags obj, const std::string& str, bool commaNeeded=true) print_VkCullModeFlags() argument
4829 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkCullModeFlags() local
4849 print_VkCullModeFlags(const VkCullModeFlags * obj, const std::string& str, bool commaNeeded=true) print_VkCullModeFlags() argument
4851 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkCullModeFlags() local
4872 print_VkPipelineVertexInputStateCreateFlags(VkPipelineVertexInputStateCreateFlags obj, const std::string& str, bool commaNeeded=true) print_VkPipelineVertexInputStateCreateFlags() argument
4879 print_VkPipelineVertexInputStateCreateFlags(const VkPipelineVertexInputStateCreateFlags * obj, const std::string& str, bool commaNeeded=true) print_VkPipelineVertexInputStateCreateFlags() argument
4887 print_VkPipelineInputAssemblyStateCreateFlags(VkPipelineInputAssemblyStateCreateFlags obj, const std::string& str, bool commaNeeded=true) print_VkPipelineInputAssemblyStateCreateFlags() argument
4894 print_VkPipelineInputAssemblyStateCreateFlags(const VkPipelineInputAssemblyStateCreateFlags * obj, const std::string& str, bool commaNeeded=true) print_VkPipelineInputAssemblyStateCreateFlags() argument
4902 print_VkPipelineTessellationStateCreateFlags(VkPipelineTessellationStateCreateFlags obj, const std::string& str, bool commaNeeded=true) print_VkPipelineTessellationStateCreateFlags() argument
4909 print_VkPipelineTessellationStateCreateFlags(const VkPipelineTessellationStateCreateFlags * obj, const std::string& str, bool commaNeeded=true) print_VkPipelineTessellationStateCreateFlags() argument
4917 print_VkPipelineViewportStateCreateFlags(VkPipelineViewportStateCreateFlags obj, const std::string& str, bool commaNeeded=true) print_VkPipelineViewportStateCreateFlags() argument
4924 print_VkPipelineViewportStateCreateFlags(const VkPipelineViewportStateCreateFlags * obj, const std::string& str, bool commaNeeded=true) print_VkPipelineViewportStateCreateFlags() argument
4932 print_VkPipelineRasterizationStateCreateFlags(VkPipelineRasterizationStateCreateFlags obj, const std::string& str, bool commaNeeded=true) print_VkPipelineRasterizationStateCreateFlags() argument
4939 print_VkPipelineRasterizationStateCreateFlags(const VkPipelineRasterizationStateCreateFlags * obj, const std::string& str, bool commaNeeded=true) print_VkPipelineRasterizationStateCreateFlags() argument
4947 print_VkPipelineMultisampleStateCreateFlags(VkPipelineMultisampleStateCreateFlags obj, const std::string& str, bool commaNeeded=true) print_VkPipelineMultisampleStateCreateFlags() argument
4954 print_VkPipelineMultisampleStateCreateFlags(const VkPipelineMultisampleStateCreateFlags * obj, const std::string& str, bool commaNeeded=true) print_VkPipelineMultisampleStateCreateFlags() argument
4962 print_VkPipelineDepthStencilStateCreateFlags(VkPipelineDepthStencilStateCreateFlags obj, const std::string& str, bool commaNeeded=true) print_VkPipelineDepthStencilStateCreateFlags() argument
4969 print_VkPipelineDepthStencilStateCreateFlags(const VkPipelineDepthStencilStateCreateFlags * obj, const std::string& str, bool commaNeeded=true) print_VkPipelineDepthStencilStateCreateFlags() argument
4977 print_VkPipelineColorBlendStateCreateFlags(VkPipelineColorBlendStateCreateFlags obj, const std::string& str, bool commaNeeded=true) print_VkPipelineColorBlendStateCreateFlags() argument
4984 print_VkPipelineColorBlendStateCreateFlags(const VkPipelineColorBlendStateCreateFlags * obj, const std::string& str, bool commaNeeded=true) print_VkPipelineColorBlendStateCreateFlags() argument
4992 print_VkPipelineDynamicStateCreateFlags(VkPipelineDynamicStateCreateFlags obj, const std::string& str, bool commaNeeded=true) print_VkPipelineDynamicStateCreateFlags() argument
4999 print_VkPipelineDynamicStateCreateFlags(const VkPipelineDynamicStateCreateFlags * obj, const std::string& str, bool commaNeeded=true) print_VkPipelineDynamicStateCreateFlags() argument
5007 print_VkPipelineLayoutCreateFlags(VkPipelineLayoutCreateFlags obj, const std::string& str, bool commaNeeded=true) print_VkPipelineLayoutCreateFlags() argument
5014 print_VkPipelineLayoutCreateFlags(const VkPipelineLayoutCreateFlags * obj, const std::string& str, bool commaNeeded=true) print_VkPipelineLayoutCreateFlags() argument
5022 print_VkShaderStageFlags(VkShaderStageFlags obj, const std::string& str, bool commaNeeded=true) print_VkShaderStageFlags() argument
5024 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkShaderStageFlags() local
5044 print_VkShaderStageFlags(const VkShaderStageFlags * obj, const std::string& str, bool commaNeeded=true) print_VkShaderStageFlags() argument
5046 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkShaderStageFlags() local
5067 print_VkSamplerCreateFlags(VkSamplerCreateFlags obj, const std::string& str, bool commaNeeded=true) print_VkSamplerCreateFlags() argument
5069 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkSamplerCreateFlags() local
5089 print_VkSamplerCreateFlags(const VkSamplerCreateFlags * obj, const std::string& str, bool commaNeeded=true) print_VkSamplerCreateFlags() argument
5091 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkSamplerCreateFlags() local
5112 print_VkDescriptorPoolCreateFlags(VkDescriptorPoolCreateFlags obj, const std::string& str, bool commaNeeded=true) print_VkDescriptorPoolCreateFlags() argument
5114 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkDescriptorPoolCreateFlags() local
5134 print_VkDescriptorPoolCreateFlags(const VkDescriptorPoolCreateFlags * obj, const std::string& str, bool commaNeeded=true) print_VkDescriptorPoolCreateFlags() argument
5136 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkDescriptorPoolCreateFlags() local
5157 print_VkDescriptorPoolResetFlags(VkDescriptorPoolResetFlags obj, const std::string& str, bool commaNeeded=true) print_VkDescriptorPoolResetFlags() argument
5164 print_VkDescriptorPoolResetFlags(const VkDescriptorPoolResetFlags * obj, const std::string& str, bool commaNeeded=true) print_VkDescriptorPoolResetFlags() argument
5172 print_VkDescriptorSetLayoutCreateFlags(VkDescriptorSetLayoutCreateFlags obj, const std::string& str, bool commaNeeded=true) print_VkDescriptorSetLayoutCreateFlags() argument
5174 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkDescriptorSetLayoutCreateFlags() local
5194 print_VkDescriptorSetLayoutCreateFlags(const VkDescriptorSetLayoutCreateFlags * obj, const std::string& str, bool commaNeeded=true) print_VkDescriptorSetLayoutCreateFlags() argument
5196 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkDescriptorSetLayoutCreateFlags() local
5217 print_VkAttachmentDescriptionFlags(VkAttachmentDescriptionFlags obj, const std::string& str, bool commaNeeded=true) print_VkAttachmentDescriptionFlags() argument
5219 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkAttachmentDescriptionFlags() local
5239 print_VkAttachmentDescriptionFlags(const VkAttachmentDescriptionFlags * obj, const std::string& str, bool commaNeeded=true) print_VkAttachmentDescriptionFlags() argument
5241 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkAttachmentDescriptionFlags() local
5262 print_VkDependencyFlags(VkDependencyFlags obj, const std::string& str, bool commaNeeded=true) print_VkDependencyFlags() argument
5264 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkDependencyFlags() local
5284 print_VkDependencyFlags(const VkDependencyFlags * obj, const std::string& str, bool commaNeeded=true) print_VkDependencyFlags() argument
5286 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkDependencyFlags() local
5307 print_VkFramebufferCreateFlags(VkFramebufferCreateFlags obj, const std::string& str, bool commaNeeded=true) print_VkFramebufferCreateFlags() argument
5309 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkFramebufferCreateFlags() local
5329 print_VkFramebufferCreateFlags(const VkFramebufferCreateFlags * obj, const std::string& str, bool commaNeeded=true) print_VkFramebufferCreateFlags() argument
5331 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkFramebufferCreateFlags() local
5352 print_VkRenderPassCreateFlags(VkRenderPassCreateFlags obj, const std::string& str, bool commaNeeded=true) print_VkRenderPassCreateFlags() argument
5354 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkRenderPassCreateFlags() local
5374 print_VkRenderPassCreateFlags(const VkRenderPassCreateFlags * obj, const std::string& str, bool commaNeeded=true) print_VkRenderPassCreateFlags() argument
5376 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkRenderPassCreateFlags() local
5397 print_VkSubpassDescriptionFlags(VkSubpassDescriptionFlags obj, const std::string& str, bool commaNeeded=true) print_VkSubpassDescriptionFlags() argument
5399 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkSubpassDescriptionFlags() local
5419 print_VkSubpassDescriptionFlags(const VkSubpassDescriptionFlags * obj, const std::string& str, bool commaNeeded=true) print_VkSubpassDescriptionFlags() argument
5421 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkSubpassDescriptionFlags() local
5442 print_VkCommandPoolCreateFlags(VkCommandPoolCreateFlags obj, const std::string& str, bool commaNeeded=true) print_VkCommandPoolCreateFlags() argument
5444 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkCommandPoolCreateFlags() local
5464 print_VkCommandPoolCreateFlags(const VkCommandPoolCreateFlags * obj, const std::string& str, bool commaNeeded=true) print_VkCommandPoolCreateFlags() argument
5466 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkCommandPoolCreateFlags() local
5487 print_VkCommandPoolResetFlags(VkCommandPoolResetFlags obj, const std::string& str, bool commaNeeded=true) print_VkCommandPoolResetFlags() argument
5489 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkCommandPoolResetFlags() local
5509 print_VkCommandPoolResetFlags(const VkCommandPoolResetFlags * obj, const std::string& str, bool commaNeeded=true) print_VkCommandPoolResetFlags() argument
5511 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkCommandPoolResetFlags() local
5532 print_VkCommandBufferUsageFlags(VkCommandBufferUsageFlags obj, const std::string& str, bool commaNeeded=true) print_VkCommandBufferUsageFlags() argument
5534 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkCommandBufferUsageFlags() local
5554 print_VkCommandBufferUsageFlags(const VkCommandBufferUsageFlags * obj, const std::string& str, bool commaNeeded=true) print_VkCommandBufferUsageFlags() argument
5556 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkCommandBufferUsageFlags() local
5577 print_VkQueryControlFlags(VkQueryControlFlags obj, const std::string& str, bool commaNeeded=true) print_VkQueryControlFlags() argument
5579 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkQueryControlFlags() local
5599 print_VkQueryControlFlags(const VkQueryControlFlags * obj, const std::string& str, bool commaNeeded=true) print_VkQueryControlFlags() argument
5601 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkQueryControlFlags() local
5622 print_VkCommandBufferResetFlags(VkCommandBufferResetFlags obj, const std::string& str, bool commaNeeded=true) print_VkCommandBufferResetFlags() argument
5624 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkCommandBufferResetFlags() local
5644 print_VkCommandBufferResetFlags(const VkCommandBufferResetFlags * obj, const std::string& str, bool commaNeeded=true) print_VkCommandBufferResetFlags() argument
5646 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkCommandBufferResetFlags() local
5667 print_VkStencilFaceFlags(VkStencilFaceFlags obj, const std::string& str, bool commaNeeded=true) print_VkStencilFaceFlags() argument
5669 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkStencilFaceFlags() local
5689 print_VkStencilFaceFlags(const VkStencilFaceFlags * obj, const std::string& str, bool commaNeeded=true) print_VkStencilFaceFlags() argument
5691 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkStencilFaceFlags() local
13583 print_VkSamplerYcbcrConversion(VkSamplerYcbcrConversion obj, const std::string& str, bool commaNeeded=true) print_VkSamplerYcbcrConversion() argument
13590 print_VkSamplerYcbcrConversion(const VkSamplerYcbcrConversion * obj, const std::string& str, bool commaNeeded=true) print_VkSamplerYcbcrConversion() argument
13609 print_VkSubgroupFeatureFlagBits(VkSubgroupFeatureFlagBits obj, const std::string& str, bool commaNeeded=true) print_VkSubgroupFeatureFlagBits() argument
13611 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkSubgroupFeatureFlagBits() local
13617 print_VkSubgroupFeatureFlagBits(const VkSubgroupFeatureFlagBits * obj, const std::string& str, bool commaNeeded=true) print_VkSubgroupFeatureFlagBits() argument
13619 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkSubgroupFeatureFlagBits() local
13632 print_VkPeerMemoryFeatureFlagBits(VkPeerMemoryFeatureFlagBits obj, const std::string& str, bool commaNeeded=true) print_VkPeerMemoryFeatureFlagBits() argument
13634 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkPeerMemoryFeatureFlagBits() local
13640 print_VkPeerMemoryFeatureFlagBits(const VkPeerMemoryFeatureFlagBits * obj, const std::string& str, bool commaNeeded=true) print_VkPeerMemoryFeatureFlagBits() argument
13642 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkPeerMemoryFeatureFlagBits() local
13654 print_VkMemoryAllocateFlagBits(VkMemoryAllocateFlagBits obj, const std::string& str, bool commaNeeded=true) print_VkMemoryAllocateFlagBits() argument
13656 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkMemoryAllocateFlagBits() local
13662 print_VkMemoryAllocateFlagBits(const VkMemoryAllocateFlagBits * obj, const std::string& str, bool commaNeeded=true) print_VkMemoryAllocateFlagBits() argument
13664 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkMemoryAllocateFlagBits() local
13675 print_VkPointClippingBehavior(VkPointClippingBehavior obj, const std::string& str, bool commaNeeded=true) print_VkPointClippingBehavior() argument
13677 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkPointClippingBehavior() local
13683 print_VkPointClippingBehavior(const VkPointClippingBehavior * obj, const std::string& str, bool commaNeeded=true) print_VkPointClippingBehavior() argument
13685 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkPointClippingBehavior() local
13696 print_VkTessellationDomainOrigin(VkTessellationDomainOrigin obj, const std::string& str, bool commaNeeded=true) print_VkTessellationDomainOrigin() argument
13698 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkTessellationDomainOrigin() local
13704 print_VkTessellationDomainOrigin(const VkTessellationDomainOrigin * obj, const std::string& str, bool commaNeeded=true) print_VkTessellationDomainOrigin() argument
13706 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkTessellationDomainOrigin() local
13720 print_VkSamplerYcbcrModelConversion(VkSamplerYcbcrModelConversion obj, const std::string& str, bool commaNeeded=true) print_VkSamplerYcbcrModelConversion() argument
13722 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkSamplerYcbcrModelConversion() local
13728 print_VkSamplerYcbcrModelConversion(const VkSamplerYcbcrModelConversion * obj, const std::string& str, bool commaNeeded=true) print_VkSamplerYcbcrModelConversion() argument
13730 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkSamplerYcbcrModelConversion() local
13741 print_VkSamplerYcbcrRange(VkSamplerYcbcrRange obj, const std::string& str, bool commaNeeded=true) print_VkSamplerYcbcrRange() argument
13743 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkSamplerYcbcrRange() local
13749 print_VkSamplerYcbcrRange(const VkSamplerYcbcrRange * obj, const std::string& str, bool commaNeeded=true) print_VkSamplerYcbcrRange() argument
13751 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkSamplerYcbcrRange() local
13762 print_VkChromaLocation(VkChromaLocation obj, const std::string& str, bool commaNeeded=true) print_VkChromaLocation() argument
13764 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkChromaLocation() local
13770 print_VkChromaLocation(const VkChromaLocation * obj, const std::string& str, bool commaNeeded=true) print_VkChromaLocation() argument
13772 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkChromaLocation() local
13795 print_VkExternalMemoryHandleTypeFlagBits(VkExternalMemoryHandleTypeFlagBits obj, const std::string& str, bool commaNeeded=true) print_VkExternalMemoryHandleTypeFlagBits() argument
13797 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkExternalMemoryHandleTypeFlagBits() local
13803 print_VkExternalMemoryHandleTypeFlagBits(const VkExternalMemoryHandleTypeFlagBits * obj, const std::string& str, bool commaNeeded=true) print_VkExternalMemoryHandleTypeFlagBits() argument
13805 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkExternalMemoryHandleTypeFlagBits() local
13817 print_VkExternalMemoryFeatureFlagBits(VkExternalMemoryFeatureFlagBits obj, const std::string& str, bool commaNeeded=true) print_VkExternalMemoryFeatureFlagBits() argument
13819 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkExternalMemoryFeatureFlagBits() local
13825 print_VkExternalMemoryFeatureFlagBits(const VkExternalMemoryFeatureFlagBits * obj, const std::string& str, bool commaNeeded=true) print_VkExternalMemoryFeatureFlagBits() argument
13827 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkExternalMemoryFeatureFlagBits() local
13844 print_VkExternalFenceHandleTypeFlagBits(VkExternalFenceHandleTypeFlagBits obj, const std::string& str, bool commaNeeded=true) print_VkExternalFenceHandleTypeFlagBits() argument
13846 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkExternalFenceHandleTypeFlagBits() local
13852 print_VkExternalFenceHandleTypeFlagBits(const VkExternalFenceHandleTypeFlagBits * obj, const std::string& str, bool commaNeeded=true) print_VkExternalFenceHandleTypeFlagBits() argument
13854 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkExternalFenceHandleTypeFlagBits() local
13865 print_VkExternalFenceFeatureFlagBits(VkExternalFenceFeatureFlagBits obj, const std::string& str, bool commaNeeded=true) print_VkExternalFenceFeatureFlagBits() argument
13867 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkExternalFenceFeatureFlagBits() local
13873 print_VkExternalFenceFeatureFlagBits(const VkExternalFenceFeatureFlagBits * obj, const std::string& str, bool commaNeeded=true) print_VkExternalFenceFeatureFlagBits() argument
13875 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkExternalFenceFeatureFlagBits() local
13885 print_VkFenceImportFlagBits(VkFenceImportFlagBits obj, const std::string& str, bool commaNeeded=true) print_VkFenceImportFlagBits() argument
13887 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkFenceImportFlagBits() local
13893 print_VkFenceImportFlagBits(const VkFenceImportFlagBits * obj, const std::string& str, bool commaNeeded=true) print_VkFenceImportFlagBits() argument
13895 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkFenceImportFlagBits() local
13905 print_VkSemaphoreImportFlagBits(VkSemaphoreImportFlagBits obj, const std::string& str, bool commaNeeded=true) print_VkSemaphoreImportFlagBits() argument
13907 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkSemaphoreImportFlagBits() local
13913 print_VkSemaphoreImportFlagBits(const VkSemaphoreImportFlagBits * obj, const std::string& str, bool commaNeeded=true) print_VkSemaphoreImportFlagBits() argument
13915 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkSemaphoreImportFlagBits() local
13931 print_VkExternalSemaphoreHandleTypeFlagBits(VkExternalSemaphoreHandleTypeFlagBits obj, const std::string& str, bool commaNeeded=true) print_VkExternalSemaphoreHandleTypeFlagBits() argument
13933 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkExternalSemaphoreHandleTypeFlagBits() local
13939 print_VkExternalSemaphoreHandleTypeFlagBits(const VkExternalSemaphoreHandleTypeFlagBits * obj, const std::string& str, bool commaNeeded=true) print_VkExternalSemaphoreHandleTypeFlagBits() argument
13941 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkExternalSemaphoreHandleTypeFlagBits() local
13952 print_VkExternalSemaphoreFeatureFlagBits(VkExternalSemaphoreFeatureFlagBits obj, const std::string& str, bool commaNeeded=true) print_VkExternalSemaphoreFeatureFlagBits() argument
13954 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkExternalSemaphoreFeatureFlagBits() local
13960 print_VkExternalSemaphoreFeatureFlagBits(const VkExternalSemaphoreFeatureFlagBits * obj, const std::string& str, bool commaNeeded=true) print_VkExternalSemaphoreFeatureFlagBits() argument
13962 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkExternalSemaphoreFeatureFlagBits() local
13969 print_VkSubgroupFeatureFlags(VkSubgroupFeatureFlags obj, const std::string& str, bool commaNeeded=true) print_VkSubgroupFeatureFlags() argument
13971 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkSubgroupFeatureFlags() local
13991 print_VkSubgroupFeatureFlags(const VkSubgroupFeatureFlags * obj, const std::string& str, bool commaNeeded=true) print_VkSubgroupFeatureFlags() argument
13993 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkSubgroupFeatureFlags() local
14014 print_VkPeerMemoryFeatureFlags(VkPeerMemoryFeatureFlags obj, const std::string& str, bool commaNeeded=true) print_VkPeerMemoryFeatureFlags() argument
14016 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkPeerMemoryFeatureFlags() local
14036 print_VkPeerMemoryFeatureFlags(const VkPeerMemoryFeatureFlags * obj, const std::string& str, bool commaNeeded=true) print_VkPeerMemoryFeatureFlags() argument
14038 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkPeerMemoryFeatureFlags() local
14059 print_VkMemoryAllocateFlags(VkMemoryAllocateFlags obj, const std::string& str, bool commaNeeded=true) print_VkMemoryAllocateFlags() argument
14061 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkMemoryAllocateFlags() local
14081 print_VkMemoryAllocateFlags(const VkMemoryAllocateFlags * obj, const std::string& str, bool commaNeeded=true) print_VkMemoryAllocateFlags() argument
14083 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkMemoryAllocateFlags() local
14104 print_VkExternalMemoryHandleTypeFlags(VkExternalMemoryHandleTypeFlags obj, const std::string& str, bool commaNeeded=true) print_VkExternalMemoryHandleTypeFlags() argument
14106 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkExternalMemoryHandleTypeFlags() local
14126 print_VkExternalMemoryHandleTypeFlags(const VkExternalMemoryHandleTypeFlags * obj, const std::string& str, bool commaNeeded=true) print_VkExternalMemoryHandleTypeFlags() argument
14128 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkExternalMemoryHandleTypeFlags() local
14149 print_VkExternalMemoryFeatureFlags(VkExternalMemoryFeatureFlags obj, const std::string& str, bool commaNeeded=true) print_VkExternalMemoryFeatureFlags() argument
14151 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkExternalMemoryFeatureFlags() local
14171 print_VkExternalMemoryFeatureFlags(const VkExternalMemoryFeatureFlags * obj, const std::string& str, bool commaNeeded=true) print_VkExternalMemoryFeatureFlags() argument
14173 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkExternalMemoryFeatureFlags() local
14194 print_VkExternalFenceHandleTypeFlags(VkExternalFenceHandleTypeFlags obj, const std::string& str, bool commaNeeded=true) print_VkExternalFenceHandleTypeFlags() argument
14196 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkExternalFenceHandleTypeFlags() local
14216 print_VkExternalFenceHandleTypeFlags(const VkExternalFenceHandleTypeFlags * obj, const std::string& str, bool commaNeeded=true) print_VkExternalFenceHandleTypeFlags() argument
14218 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkExternalFenceHandleTypeFlags() local
14239 print_VkExternalFenceFeatureFlags(VkExternalFenceFeatureFlags obj, const std::string& str, bool commaNeeded=true) print_VkExternalFenceFeatureFlags() argument
14241 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkExternalFenceFeatureFlags() local
14261 print_VkExternalFenceFeatureFlags(const VkExternalFenceFeatureFlags * obj, const std::string& str, bool commaNeeded=true) print_VkExternalFenceFeatureFlags() argument
14263 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkExternalFenceFeatureFlags() local
14284 print_VkFenceImportFlags(VkFenceImportFlags obj, const std::string& str, bool commaNeeded=true) print_VkFenceImportFlags() argument
14286 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkFenceImportFlags() local
14306 print_VkFenceImportFlags(const VkFenceImportFlags * obj, const std::string& str, bool commaNeeded=true) print_VkFenceImportFlags() argument
14308 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkFenceImportFlags() local
14329 print_VkSemaphoreImportFlags(VkSemaphoreImportFlags obj, const std::string& str, bool commaNeeded=true) print_VkSemaphoreImportFlags() argument
14331 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkSemaphoreImportFlags() local
14351 print_VkSemaphoreImportFlags(const VkSemaphoreImportFlags * obj, const std::string& str, bool commaNeeded=true) print_VkSemaphoreImportFlags() argument
14353 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkSemaphoreImportFlags() local
14374 print_VkExternalSemaphoreHandleTypeFlags(VkExternalSemaphoreHandleTypeFlags obj, const std::string& str, bool commaNeeded=true) print_VkExternalSemaphoreHandleTypeFlags() argument
14376 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkExternalSemaphoreHandleTypeFlags() local
14396 print_VkExternalSemaphoreHandleTypeFlags(const VkExternalSemaphoreHandleTypeFlags * obj, const std::string& str, bool commaNeeded=true) print_VkExternalSemaphoreHandleTypeFlags() argument
14398 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkExternalSemaphoreHandleTypeFlags() local
14419 print_VkExternalSemaphoreFeatureFlags(VkExternalSemaphoreFeatureFlags obj, const std::string& str, bool commaNeeded=true) print_VkExternalSemaphoreFeatureFlags() argument
14421 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkExternalSemaphoreFeatureFlags() local
14441 print_VkExternalSemaphoreFeatureFlags(const VkExternalSemaphoreFeatureFlags * obj, const std::string& str, bool commaNeeded=true) print_VkExternalSemaphoreFeatureFlags() argument
14443 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkExternalSemaphoreFeatureFlags() local
18096 print_VkDriverId(VkDriverId obj, const std::string& str, bool commaNeeded=true) print_VkDriverId() argument
18098 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkDriverId() local
18104 print_VkDriverId(const VkDriverId * obj, const std::string& str, bool commaNeeded=true) print_VkDriverId() argument
18106 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkDriverId() local
18118 print_VkShaderFloatControlsIndependence(VkShaderFloatControlsIndependence obj, const std::string& str, bool commaNeeded=true) print_VkShaderFloatControlsIndependence() argument
18120 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkShaderFloatControlsIndependence() local
18126 print_VkShaderFloatControlsIndependence(const VkShaderFloatControlsIndependence * obj, const std::string& str, bool commaNeeded=true) print_VkShaderFloatControlsIndependence() argument
18128 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkShaderFloatControlsIndependence() local
18142 print_VkResolveModeFlagBits(VkResolveModeFlagBits obj, const std::string& str, bool commaNeeded=true) print_VkResolveModeFlagBits() argument
18144 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkResolveModeFlagBits() local
18150 print_VkResolveModeFlagBits(const VkResolveModeFlagBits * obj, const std::string& str, bool commaNeeded=true) print_VkResolveModeFlagBits() argument
18152 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkResolveModeFlagBits() local
18166 print_VkDescriptorBindingFlagBits(VkDescriptorBindingFlagBits obj, const std::string& str, bool commaNeeded=true) print_VkDescriptorBindingFlagBits() argument
18168 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkDescriptorBindingFlagBits() local
18174 print_VkDescriptorBindingFlagBits(const VkDescriptorBindingFlagBits * obj, const std::string& str, bool commaNeeded=true) print_VkDescriptorBindingFlagBits() argument
18176 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkDescriptorBindingFlagBits() local
18188 print_VkSamplerReductionMode(VkSamplerReductionMode obj, const std::string& str, bool commaNeeded=true) print_VkSamplerReductionMode() argument
18190 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkSamplerReductionMode() local
18196 print_VkSamplerReductionMode(const VkSamplerReductionMode * obj, const std::string& str, bool commaNeeded=true) print_VkSamplerReductionMode() argument
18198 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkSamplerReductionMode() local
18209 print_VkSemaphoreType(VkSemaphoreType obj, const std::string& str, bool commaNeeded=true) print_VkSemaphoreType() argument
18211 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkSemaphoreType() local
18217 print_VkSemaphoreType(const VkSemaphoreType * obj, const std::string& str, bool commaNeeded=true) print_VkSemaphoreType() argument
18219 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkSemaphoreType() local
18229 print_VkSemaphoreWaitFlagBits(VkSemaphoreWaitFlagBits obj, const std::string& str, bool commaNeeded=true) print_VkSemaphoreWaitFlagBits() argument
18231 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkSemaphoreWaitFlagBits() local
18237 print_VkSemaphoreWaitFlagBits(const VkSemaphoreWaitFlagBits * obj, const std::string& str, bool commaNeeded=true) print_VkSemaphoreWaitFlagBits() argument
18239 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkSemaphoreWaitFlagBits() local
18246 print_VkResolveModeFlags(VkResolveModeFlags obj, const std::string& str, bool commaNeeded=true) print_VkResolveModeFlags() argument
18248 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkResolveModeFlags() local
18268 print_VkResolveModeFlags(const VkResolveModeFlags * obj, const std::string& str, bool commaNeeded=true) print_VkResolveModeFlags() argument
18270 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkResolveModeFlags() local
18291 print_VkDescriptorBindingFlags(VkDescriptorBindingFlags obj, const std::string& str, bool commaNeeded=true) print_VkDescriptorBindingFlags() argument
18293 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkDescriptorBindingFlags() local
18313 print_VkDescriptorBindingFlags(const VkDescriptorBindingFlags * obj, const std::string& str, bool commaNeeded=true) print_VkDescriptorBindingFlags() argument
18315 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkDescriptorBindingFlags() local
18336 print_VkSemaphoreWaitFlags(VkSemaphoreWaitFlags obj, const std::string& str, bool commaNeeded=true) print_VkSemaphoreWaitFlags() argument
18338 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkSemaphoreWaitFlags() local
18358 print_VkSemaphoreWaitFlags(const VkSemaphoreWaitFlags * obj, const std::string& str, bool commaNeeded=true) print_VkSemaphoreWaitFlags() argument
18360 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkSemaphoreWaitFlags() local
22490 print_VkFaultLevel(VkFaultLevel obj, const std::string& str, bool commaNeeded=true) print_VkFaultLevel() argument
22492 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkFaultLevel() local
22498 print_VkFaultLevel(const VkFaultLevel * obj, const std::string& str, bool commaNeeded=true) print_VkFaultLevel() argument
22500 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkFaultLevel() local
22516 print_VkFaultType(VkFaultType obj, const std::string& str, bool commaNeeded=true) print_VkFaultType() argument
22518 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkFaultType() local
22524 print_VkFaultType(const VkFaultType * obj, const std::string& str, bool commaNeeded=true) print_VkFaultType() argument
22526 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkFaultType() local
22536 print_VkFaultQueryBehavior(VkFaultQueryBehavior obj, const std::string& str, bool commaNeeded=true) print_VkFaultQueryBehavior() argument
22538 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkFaultQueryBehavior() local
22544 print_VkFaultQueryBehavior(const VkFaultQueryBehavior * obj, const std::string& str, bool commaNeeded=true) print_VkFaultQueryBehavior() argument
22546 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkFaultQueryBehavior() local
22556 print_VkPipelineMatchControl(VkPipelineMatchControl obj, const std::string& str, bool commaNeeded=true) print_VkPipelineMatchControl() argument
22558 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkPipelineMatchControl() local
22564 print_VkPipelineMatchControl(const VkPipelineMatchControl * obj, const std::string& str, bool commaNeeded=true) print_VkPipelineMatchControl() argument
22566 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkPipelineMatchControl() local
22576 print_VkPipelineCacheValidationVersion(VkPipelineCacheValidationVersion obj, const std::string& str, bool commaNeeded=true) print_VkPipelineCacheValidationVersion() argument
22578 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkPipelineCacheValidationVersion() local
22584 print_VkPipelineCacheValidationVersion(const VkPipelineCacheValidationVersion * obj, const std::string& str, bool commaNeeded=true) print_VkPipelineCacheValidationVersion() argument
22586 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkPipelineCacheValidationVersion() local
23561 print_VkSurfaceKHR(VkSurfaceKHR obj, const std::string& str, bool commaNeeded=true) print_VkSurfaceKHR() argument
23568 print_VkSurfaceKHR(const VkSurfaceKHR * obj, const std::string& str, bool commaNeeded=true) print_VkSurfaceKHR() argument
23587 print_VkSurfaceTransformFlagBitsKHR(VkSurfaceTransformFlagBitsKHR obj, const std::string& str, bool commaNeeded=true) print_VkSurfaceTransformFlagBitsKHR() argument
23589 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkSurfaceTransformFlagBitsKHR() local
23595 print_VkSurfaceTransformFlagBitsKHR(const VkSurfaceTransformFlagBitsKHR * obj, const std::string& str, bool commaNeeded=true) print_VkSurfaceTransformFlagBitsKHR() argument
23597 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkSurfaceTransformFlagBitsKHR() local
23612 print_VkPresentModeKHR(VkPresentModeKHR obj, const std::string& str, bool commaNeeded=true) print_VkPresentModeKHR() argument
23614 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkPresentModeKHR() local
23620 print_VkPresentModeKHR(const VkPresentModeKHR * obj, const std::string& str, bool commaNeeded=true) print_VkPresentModeKHR() argument
23622 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkPresentModeKHR() local
23647 print_VkColorSpaceKHR(VkColorSpaceKHR obj, const std::string& str, bool commaNeeded=true) print_VkColorSpaceKHR() argument
23649 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkColorSpaceKHR() local
23655 print_VkColorSpaceKHR(const VkColorSpaceKHR * obj, const std::string& str, bool commaNeeded=true) print_VkColorSpaceKHR() argument
23657 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkColorSpaceKHR() local
23670 print_VkCompositeAlphaFlagBitsKHR(VkCompositeAlphaFlagBitsKHR obj, const std::string& str, bool commaNeeded=true) print_VkCompositeAlphaFlagBitsKHR() argument
23672 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkCompositeAlphaFlagBitsKHR() local
23678 print_VkCompositeAlphaFlagBitsKHR(const VkCompositeAlphaFlagBitsKHR * obj, const std::string& str, bool commaNeeded=true) print_VkCompositeAlphaFlagBitsKHR() argument
23680 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkCompositeAlphaFlagBitsKHR() local
23687 print_VkCompositeAlphaFlagsKHR(VkCompositeAlphaFlagsKHR obj, const std::string& str, bool commaNeeded=true) print_VkCompositeAlphaFlagsKHR() argument
23689 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkCompositeAlphaFlagsKHR() local
23709 print_VkCompositeAlphaFlagsKHR(const VkCompositeAlphaFlagsKHR * obj, const std::string& str, bool commaNeeded=true) print_VkCompositeAlphaFlagsKHR() argument
23711 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkCompositeAlphaFlagsKHR() local
23732 print_VkSurfaceTransformFlagsKHR(VkSurfaceTransformFlagsKHR obj, const std::string& str, bool commaNeeded=true) print_VkSurfaceTransformFlagsKHR() argument
23734 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkSurfaceTransformFlagsKHR() local
23754 print_VkSurfaceTransformFlagsKHR(const VkSurfaceTransformFlagsKHR * obj, const std::string& str, bool commaNeeded=true) print_VkSurfaceTransformFlagsKHR() argument
23756 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkSurfaceTransformFlagsKHR() local
23899 print_VkSwapchainKHR(VkSwapchainKHR obj, const std::string& str, bool commaNeeded=true) print_VkSwapchainKHR() argument
23906 print_VkSwapchainKHR(const VkSwapchainKHR * obj, const std::string& str, bool commaNeeded=true) print_VkSwapchainKHR() argument
23920 print_VkSwapchainCreateFlagBitsKHR(VkSwapchainCreateFlagBitsKHR obj, const std::string& str, bool commaNeeded=true) print_VkSwapchainCreateFlagBitsKHR() argument
23922 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkSwapchainCreateFlagBitsKHR() local
23928 print_VkSwapchainCreateFlagBitsKHR(const VkSwapchainCreateFlagBitsKHR * obj, const std::string& str, bool commaNeeded=true) print_VkSwapchainCreateFlagBitsKHR() argument
23930 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkSwapchainCreateFlagBitsKHR() local
23943 print_VkDeviceGroupPresentModeFlagBitsKHR(VkDeviceGroupPresentModeFlagBitsKHR obj, const std::string& str, bool commaNeeded=true) print_VkDeviceGroupPresentModeFlagBitsKHR() argument
23945 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkDeviceGroupPresentModeFlagBitsKHR() local
23951 print_VkDeviceGroupPresentModeFlagBitsKHR(const VkDeviceGroupPresentModeFlagBitsKHR * obj, const std::string& str, bool commaNeeded=true) print_VkDeviceGroupPresentModeFlagBitsKHR() argument
23953 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkDeviceGroupPresentModeFlagBitsKHR() local
23960 print_VkSwapchainCreateFlagsKHR(VkSwapchainCreateFlagsKHR obj, const std::string& str, bool commaNeeded=true) print_VkSwapchainCreateFlagsKHR() argument
23962 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkSwapchainCreateFlagsKHR() local
23982 print_VkSwapchainCreateFlagsKHR(const VkSwapchainCreateFlagsKHR * obj, const std::string& str, bool commaNeeded=true) print_VkSwapchainCreateFlagsKHR() argument
23984 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkSwapchainCreateFlagsKHR() local
24005 print_VkDeviceGroupPresentModeFlagsKHR(VkDeviceGroupPresentModeFlagsKHR obj, const std::string& str, bool commaNeeded=true) print_VkDeviceGroupPresentModeFlagsKHR() argument
24007 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkDeviceGroupPresentModeFlagsKHR() local
24027 print_VkDeviceGroupPresentModeFlagsKHR(const VkDeviceGroupPresentModeFlagsKHR * obj, const std::string& str, bool commaNeeded=true) print_VkDeviceGroupPresentModeFlagsKHR() argument
24029 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkDeviceGroupPresentModeFlagsKHR() local
24742 print_VkDisplayKHR(VkDisplayKHR obj, const std::string& str, bool commaNeeded=true) print_VkDisplayKHR() argument
24749 print_VkDisplayKHR(const VkDisplayKHR * obj, const std::string& str, bool commaNeeded=true) print_VkDisplayKHR() argument
24757 print_VkDisplayModeKHR(VkDisplayModeKHR obj, const std::string& str, bool commaNeeded=true) print_VkDisplayModeKHR() argument
24764 print_VkDisplayModeKHR(const VkDisplayModeKHR * obj, const std::string& str, bool commaNeeded=true) print_VkDisplayModeKHR() argument
24778 print_VkDisplayPlaneAlphaFlagBitsKHR(VkDisplayPlaneAlphaFlagBitsKHR obj, const std::string& str, bool commaNeeded=true) print_VkDisplayPlaneAlphaFlagBitsKHR() argument
24780 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkDisplayPlaneAlphaFlagBitsKHR() local
24786 print_VkDisplayPlaneAlphaFlagBitsKHR(const VkDisplayPlaneAlphaFlagBitsKHR * obj, const std::string& str, bool commaNeeded=true) print_VkDisplayPlaneAlphaFlagBitsKHR() argument
24788 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkDisplayPlaneAlphaFlagBitsKHR() local
24795 print_VkDisplayModeCreateFlagsKHR(VkDisplayModeCreateFlagsKHR obj, const std::string& str, bool commaNeeded=true) print_VkDisplayModeCreateFlagsKHR() argument
24802 print_VkDisplayModeCreateFlagsKHR(const VkDisplayModeCreateFlagsKHR * obj, const std::string& str, bool commaNeeded=true) print_VkDisplayModeCreateFlagsKHR() argument
24810 print_VkDisplayPlaneAlphaFlagsKHR(VkDisplayPlaneAlphaFlagsKHR obj, const std::string& str, bool commaNeeded=true) print_VkDisplayPlaneAlphaFlagsKHR() argument
24812 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkDisplayPlaneAlphaFlagsKHR() local
24832 print_VkDisplayPlaneAlphaFlagsKHR(const VkDisplayPlaneAlphaFlagsKHR * obj, const std::string& str, bool commaNeeded=true) print_VkDisplayPlaneAlphaFlagsKHR() argument
24834 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkDisplayPlaneAlphaFlagsKHR() local
24855 print_VkDisplaySurfaceCreateFlagsKHR(VkDisplaySurfaceCreateFlagsKHR obj, const std::string& str, bool commaNeeded=true) print_VkDisplaySurfaceCreateFlagsKHR() argument
24862 print_VkDisplaySurfaceCreateFlagsKHR(const VkDisplaySurfaceCreateFlagsKHR * obj, const std::string& str, bool commaNeeded=true) print_VkDisplaySurfaceCreateFlagsKHR() argument
26044 print_VkPerformanceCounterUnitKHR(VkPerformanceCounterUnitKHR obj, const std::string& str, bool commaNeeded=true) print_VkPerformanceCounterUnitKHR() argument
26046 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkPerformanceCounterUnitKHR() local
26052 print_VkPerformanceCounterUnitKHR(const VkPerformanceCounterUnitKHR * obj, const std::string& str, bool commaNeeded=true) print_VkPerformanceCounterUnitKHR() argument
26054 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkPerformanceCounterUnitKHR() local
26066 print_VkPerformanceCounterScopeKHR(VkPerformanceCounterScopeKHR obj, const std::string& str, bool commaNeeded=true) print_VkPerformanceCounterScopeKHR() argument
26068 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkPerformanceCounterScopeKHR() local
26074 print_VkPerformanceCounterScopeKHR(const VkPerformanceCounterScopeKHR * obj, const std::string& str, bool commaNeeded=true) print_VkPerformanceCounterScopeKHR() argument
26076 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkPerformanceCounterScopeKHR() local
26091 print_VkPerformanceCounterStorageKHR(VkPerformanceCounterStorageKHR obj, const std::string& str, bool commaNeeded=true) print_VkPerformanceCounterStorageKHR() argument
26093 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkPerformanceCounterStorageKHR() local
26099 print_VkPerformanceCounterStorageKHR(const VkPerformanceCounterStorageKHR * obj, const std::string& str, bool commaNeeded=true) print_VkPerformanceCounterStorageKHR() argument
26101 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkPerformanceCounterStorageKHR() local
26112 print_VkPerformanceCounterDescriptionFlagBitsKHR(VkPerformanceCounterDescriptionFlagBitsKHR obj, const std::string& str, bool commaNeeded=true) print_VkPerformanceCounterDescriptionFlagBitsKHR() argument
26114 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkPerformanceCounterDescriptionFlagBitsKHR() local
26120 print_VkPerformanceCounterDescriptionFlagBitsKHR(const VkPerformanceCounterDescriptionFlagBitsKHR * obj, const std::string& str, bool commaNeeded=true) print_VkPerformanceCounterDescriptionFlagBitsKHR() argument
26122 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkPerformanceCounterDescriptionFlagBitsKHR() local
26131 print_VkAcquireProfilingLockFlagBitsKHR(VkAcquireProfilingLockFlagBitsKHR obj, const std::string& str, bool commaNeeded=true) print_VkAcquireProfilingLockFlagBitsKHR() argument
26133 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkAcquireProfilingLockFlagBitsKHR() local
26139 print_VkAcquireProfilingLockFlagBitsKHR(const VkAcquireProfilingLockFlagBitsKHR * obj, const std::string& str, bool commaNeeded=true) print_VkAcquireProfilingLockFlagBitsKHR() argument
26141 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkAcquireProfilingLockFlagBitsKHR() local
26148 print_VkPerformanceCounterDescriptionFlagsKHR(VkPerformanceCounterDescriptionFlagsKHR obj, const std::string& str, bool commaNeeded=true) print_VkPerformanceCounterDescriptionFlagsKHR() argument
26150 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkPerformanceCounterDescriptionFlagsKHR() local
26170 print_VkPerformanceCounterDescriptionFlagsKHR(const VkPerformanceCounterDescriptionFlagsKHR * obj, const std::string& str, bool commaNeeded=true) print_VkPerformanceCounterDescriptionFlagsKHR() argument
26172 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkPerformanceCounterDescriptionFlagsKHR() local
26193 print_VkAcquireProfilingLockFlagsKHR(VkAcquireProfilingLockFlagsKHR obj, const std::string& str, bool commaNeeded=true) print_VkAcquireProfilingLockFlagsKHR() argument
26195 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkAcquireProfilingLockFlagsKHR() local
26215 print_VkAcquireProfilingLockFlagsKHR(const VkAcquireProfilingLockFlagsKHR * obj, const std::string& str, bool commaNeeded=true) print_VkAcquireProfilingLockFlagsKHR() argument
26217 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkAcquireProfilingLockFlagsKHR() local
27338 print_VkFragmentShadingRateCombinerOpKHR(VkFragmentShadingRateCombinerOpKHR obj, const std::string& str, bool commaNeeded=true) print_VkFragmentShadingRateCombinerOpKHR() argument
27340 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkFragmentShadingRateCombinerOpKHR() local
27346 print_VkFragmentShadingRateCombinerOpKHR(const VkFragmentShadingRateCombinerOpKHR * obj, const std::string& str, bool commaNeeded=true) print_VkFragmentShadingRateCombinerOpKHR() argument
27348 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkFragmentShadingRateCombinerOpKHR() local
27758 print_VkRefreshObjectFlagBitsKHR(VkRefreshObjectFlagBitsKHR obj, const std::string& str, bool commaNeeded=true) print_VkRefreshObjectFlagBitsKHR() argument
27760 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkRefreshObjectFlagBitsKHR() local
27766 print_VkRefreshObjectFlagBitsKHR(const VkRefreshObjectFlagBitsKHR * obj, const std::string& str, bool commaNeeded=true) print_VkRefreshObjectFlagBitsKHR() argument
27768 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkRefreshObjectFlagBitsKHR() local
27775 print_VkRefreshObjectFlagsKHR(VkRefreshObjectFlagsKHR obj, const std::string& str, bool commaNeeded=true) print_VkRefreshObjectFlagsKHR() argument
27777 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkRefreshObjectFlagsKHR() local
27797 print_VkRefreshObjectFlagsKHR(const VkRefreshObjectFlagsKHR * obj, const std::string& str, bool commaNeeded=true) print_VkRefreshObjectFlagsKHR() argument
27799 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkRefreshObjectFlagsKHR() local
27942 print_VkFlags64(VkFlags64 obj, const std::string& str, bool commaNeeded=true) print_VkFlags64() argument
27946 print_VkFlags64(const VkFlags64 * obj, const std::string& str, bool commaNeeded=true) print_VkFlags64() argument
27992 print_VkPipelineStageFlagBits2KHR(VkPipelineStageFlagBits2KHR obj, const std::string& str, bool commaNeeded=true) print_VkPipelineStageFlagBits2KHR() argument
27994 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkPipelineStageFlagBits2KHR() local
28000 print_VkPipelineStageFlagBits2KHR(const VkPipelineStageFlagBits2KHR * obj, const std::string& str, bool commaNeeded=true) print_VkPipelineStageFlagBits2KHR() argument
28002 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkPipelineStageFlagBits2KHR() local
28050 print_VkAccessFlagBits2KHR(VkAccessFlagBits2KHR obj, const std::string& str, bool commaNeeded=true) print_VkAccessFlagBits2KHR() argument
28052 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkAccessFlagBits2KHR() local
28058 print_VkAccessFlagBits2KHR(const VkAccessFlagBits2KHR * obj, const std::string& str, bool commaNeeded=true) print_VkAccessFlagBits2KHR() argument
28060 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkAccessFlagBits2KHR() local
28070 print_VkSubmitFlagBitsKHR(VkSubmitFlagBitsKHR obj, const std::string& str, bool commaNeeded=true) print_VkSubmitFlagBitsKHR() argument
28072 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkSubmitFlagBitsKHR() local
28078 print_VkSubmitFlagBitsKHR(const VkSubmitFlagBitsKHR * obj, const std::string& str, bool commaNeeded=true) print_VkSubmitFlagBitsKHR() argument
28080 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkSubmitFlagBitsKHR() local
28087 print_VkPipelineStageFlags2KHR(VkPipelineStageFlags2KHR obj, const std::string& str, bool commaNeeded=true) print_VkPipelineStageFlags2KHR() argument
28094 print_VkPipelineStageFlags2KHR(const VkPipelineStageFlags2KHR * obj, const std::string& str, bool commaNeeded=true) print_VkPipelineStageFlags2KHR() argument
28102 print_VkAccessFlags2KHR(VkAccessFlags2KHR obj, const std::string& str, bool commaNeeded=true) print_VkAccessFlags2KHR() argument
28109 print_VkAccessFlags2KHR(const VkAccessFlags2KHR * obj, const std::string& str, bool commaNeeded=true) print_VkAccessFlags2KHR() argument
28117 print_VkSubmitFlagsKHR(VkSubmitFlagsKHR obj, const std::string& str, bool commaNeeded=true) print_VkSubmitFlagsKHR() argument
28119 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkSubmitFlagsKHR() local
28139 print_VkSubmitFlagsKHR(const VkSubmitFlagsKHR * obj, const std::string& str, bool commaNeeded=true) print_VkSubmitFlagsKHR() argument
28141 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkSubmitFlagsKHR() local
30225 print_VkSurfaceCounterFlagBitsEXT(VkSurfaceCounterFlagBitsEXT obj, const std::string& str, bool commaNeeded=true) print_VkSurfaceCounterFlagBitsEXT() argument
30227 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkSurfaceCounterFlagBitsEXT() local
30233 print_VkSurfaceCounterFlagBitsEXT(const VkSurfaceCounterFlagBitsEXT * obj, const std::string& str, bool commaNeeded=true) print_VkSurfaceCounterFlagBitsEXT() argument
30235 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkSurfaceCounterFlagBitsEXT() local
30242 print_VkSurfaceCounterFlagsEXT(VkSurfaceCounterFlagsEXT obj, const std::string& str, bool commaNeeded=true) print_VkSurfaceCounterFlagsEXT() argument
30244 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkSurfaceCounterFlagsEXT() local
30264 print_VkSurfaceCounterFlagsEXT(const VkSurfaceCounterFlagsEXT * obj, const std::string& str, bool commaNeeded=true) print_VkSurfaceCounterFlagsEXT() argument
30266 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkSurfaceCounterFlagsEXT() local
30403 print_VkDisplayPowerStateEXT(VkDisplayPowerStateEXT obj, const std::string& str, bool commaNeeded=true) print_VkDisplayPowerStateEXT() argument
30405 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkDisplayPowerStateEXT() local
30411 print_VkDisplayPowerStateEXT(const VkDisplayPowerStateEXT * obj, const std::string& str, bool commaNeeded=true) print_VkDisplayPowerStateEXT() argument
30413 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkDisplayPowerStateEXT() local
30423 print_VkDeviceEventTypeEXT(VkDeviceEventTypeEXT obj, const std::string& str, bool commaNeeded=true) print_VkDeviceEventTypeEXT() argument
30425 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkDeviceEventTypeEXT() local
30431 print_VkDeviceEventTypeEXT(const VkDeviceEventTypeEXT * obj, const std::string& str, bool commaNeeded=true) print_VkDeviceEventTypeEXT() argument
30433 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkDeviceEventTypeEXT() local
30443 print_VkDisplayEventTypeEXT(VkDisplayEventTypeEXT obj, const std::string& str, bool commaNeeded=true) print_VkDisplayEventTypeEXT() argument
30445 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkDisplayEventTypeEXT() local
30451 print_VkDisplayEventTypeEXT(const VkDisplayEventTypeEXT * obj, const std::string& str, bool commaNeeded=true) print_VkDisplayEventTypeEXT() argument
30453 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkDisplayEventTypeEXT() local
30652 print_VkDiscardRectangleModeEXT(VkDiscardRectangleModeEXT obj, const std::string& str, bool commaNeeded=true) print_VkDiscardRectangleModeEXT() argument
30654 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkDiscardRectangleModeEXT() local
30660 print_VkDiscardRectangleModeEXT(const VkDiscardRectangleModeEXT * obj, const std::string& str, bool commaNeeded=true) print_VkDiscardRectangleModeEXT() argument
30662 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkDiscardRectangleModeEXT() local
30669 print_VkPipelineDiscardRectangleStateCreateFlagsEXT(VkPipelineDiscardRectangleStateCreateFlagsEXT obj, const std::string& str, bool commaNeeded=true) print_VkPipelineDiscardRectangleStateCreateFlagsEXT() argument
30676 print_VkPipelineDiscardRectangleStateCreateFlagsEXT(const VkPipelineDiscardRectangleStateCreateFlagsEXT * obj, const std::string& str, bool commaNeeded=true) print_VkPipelineDiscardRectangleStateCreateFlagsEXT() argument
30829 print_VkConservativeRasterizationModeEXT(VkConservativeRasterizationModeEXT obj, const std::string& str, bool commaNeeded=true) print_VkConservativeRasterizationModeEXT() argument
30831 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkConservativeRasterizationModeEXT() local
30837 print_VkConservativeRasterizationModeEXT(const VkConservativeRasterizationModeEXT * obj, const std::string& str, bool commaNeeded=true) print_VkConservativeRasterizationModeEXT() argument
30839 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkConservativeRasterizationModeEXT() local
30846 print_VkPipelineRasterizationConservativeStateCreateFlagsEXT(VkPipelineRasterizationConservativeStateCreateFlagsEXT obj, const std::string& str, bool commaNeeded=true) print_VkPipelineRasterizationConservativeStateCreateFlagsEXT() argument
30853 print_VkPipelineRasterizationConservativeStateCreateFlagsEXT(const VkPipelineRasterizationConservativeStateCreateFlagsEXT * obj, const std::string& str, bool commaNeeded=true) print_VkPipelineRasterizationConservativeStateCreateFlagsEXT() argument
30995 print_VkPipelineRasterizationDepthClipStateCreateFlagsEXT(VkPipelineRasterizationDepthClipStateCreateFlagsEXT obj, const std::string& str, bool commaNeeded=true) print_VkPipelineRasterizationDepthClipStateCreateFlagsEXT() argument
31002 print_VkPipelineRasterizationDepthClipStateCreateFlagsEXT(const VkPipelineRasterizationDepthClipStateCreateFlagsEXT * obj, const std::string& str, bool commaNeeded=true) print_VkPipelineRasterizationDepthClipStateCreateFlagsEXT() argument
31248 print_VkDebugUtilsMessengerEXT(VkDebugUtilsMessengerEXT obj, const std::string& str, bool commaNeeded=true) print_VkDebugUtilsMessengerEXT() argument
31255 print_VkDebugUtilsMessengerEXT(const VkDebugUtilsMessengerEXT * obj, const std::string& str, bool commaNeeded=true) print_VkDebugUtilsMessengerEXT() argument
31269 print_VkDebugUtilsMessageSeverityFlagBitsEXT(VkDebugUtilsMessageSeverityFlagBitsEXT obj, const std::string& str, bool commaNeeded=true) print_VkDebugUtilsMessageSeverityFlagBitsEXT() argument
31271 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkDebugUtilsMessageSeverityFlagBitsEXT() local
31277 print_VkDebugUtilsMessageSeverityFlagBitsEXT(const VkDebugUtilsMessageSeverityFlagBitsEXT * obj, const std::string& str, bool commaNeeded=true) print_VkDebugUtilsMessageSeverityFlagBitsEXT() argument
31279 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkDebugUtilsMessageSeverityFlagBitsEXT() local
31291 print_VkDebugUtilsMessageTypeFlagBitsEXT(VkDebugUtilsMessageTypeFlagBitsEXT obj, const std::string& str, bool commaNeeded=true) print_VkDebugUtilsMessageTypeFlagBitsEXT() argument
31293 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkDebugUtilsMessageTypeFlagBitsEXT() local
31299 print_VkDebugUtilsMessageTypeFlagBitsEXT(const VkDebugUtilsMessageTypeFlagBitsEXT * obj, const std::string& str, bool commaNeeded=true) print_VkDebugUtilsMessageTypeFlagBitsEXT() argument
31301 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkDebugUtilsMessageTypeFlagBitsEXT() local
31308 print_VkDebugUtilsMessengerCallbackDataFlagsEXT(VkDebugUtilsMessengerCallbackDataFlagsEXT obj, const std::string& str, bool commaNeeded=true) print_VkDebugUtilsMessengerCallbackDataFlagsEXT() argument
31315 print_VkDebugUtilsMessengerCallbackDataFlagsEXT(const VkDebugUtilsMessengerCallbackDataFlagsEXT * obj, const std::string& str, bool commaNeeded=true) print_VkDebugUtilsMessengerCallbackDataFlagsEXT() argument
31323 print_VkDebugUtilsMessageTypeFlagsEXT(VkDebugUtilsMessageTypeFlagsEXT obj, const std::string& str, bool commaNeeded=true) print_VkDebugUtilsMessageTypeFlagsEXT() argument
31325 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkDebugUtilsMessageTypeFlagsEXT() local
31345 print_VkDebugUtilsMessageTypeFlagsEXT(const VkDebugUtilsMessageTypeFlagsEXT * obj, const std::string& str, bool commaNeeded=true) print_VkDebugUtilsMessageTypeFlagsEXT() argument
31347 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkDebugUtilsMessageTypeFlagsEXT() local
31368 print_VkDebugUtilsMessageSeverityFlagsEXT(VkDebugUtilsMessageSeverityFlagsEXT obj, const std::string& str, bool commaNeeded=true) print_VkDebugUtilsMessageSeverityFlagsEXT() argument
31370 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkDebugUtilsMessageSeverityFlagsEXT() local
31390 print_VkDebugUtilsMessageSeverityFlagsEXT(const VkDebugUtilsMessageSeverityFlagsEXT * obj, const std::string& str, bool commaNeeded=true) print_VkDebugUtilsMessageSeverityFlagsEXT() argument
31392 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkDebugUtilsMessageSeverityFlagsEXT() local
31413 print_VkDebugUtilsMessengerCreateFlagsEXT(VkDebugUtilsMessengerCreateFlagsEXT obj, const std::string& str, bool commaNeeded=true) print_VkDebugUtilsMessengerCreateFlagsEXT() argument
31420 print_VkDebugUtilsMessengerCreateFlagsEXT(const VkDebugUtilsMessengerCreateFlagsEXT * obj, const std::string& str, bool commaNeeded=true) print_VkDebugUtilsMessengerCreateFlagsEXT() argument
32414 print_VkBlendOverlapEXT(VkBlendOverlapEXT obj, const std::string& str, bool commaNeeded=true) print_VkBlendOverlapEXT() argument
32416 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkBlendOverlapEXT() local
32422 print_VkBlendOverlapEXT(const VkBlendOverlapEXT * obj, const std::string& str, bool commaNeeded=true) print_VkBlendOverlapEXT() argument
32424 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkBlendOverlapEXT() local
32636 print_VkFormatFeatureFlagBits2KHR(VkFormatFeatureFlagBits2KHR obj, const std::string& str, bool commaNeeded=true) print_VkFormatFeatureFlagBits2KHR() argument
32638 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkFormatFeatureFlagBits2KHR() local
32644 print_VkFormatFeatureFlagBits2KHR(const VkFormatFeatureFlagBits2KHR * obj, const std::string& str, bool commaNeeded=true) print_VkFormatFeatureFlagBits2KHR() argument
32646 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkFormatFeatureFlagBits2KHR() local
32653 print_VkFormatFeatureFlags2KHR(VkFormatFeatureFlags2KHR obj, const std::string& str, bool commaNeeded=true) print_VkFormatFeatureFlags2KHR() argument
32660 print_VkFormatFeatureFlags2KHR(const VkFormatFeatureFlags2KHR * obj, const std::string& str, bool commaNeeded=true) print_VkFormatFeatureFlags2KHR() argument
33314 print_VkQueueGlobalPriorityEXT(VkQueueGlobalPriorityEXT obj, const std::string& str, bool commaNeeded=true) print_VkQueueGlobalPriorityEXT() argument
33316 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkQueueGlobalPriorityEXT() local
33322 print_VkQueueGlobalPriorityEXT(const VkQueueGlobalPriorityEXT * obj, const std::string& str, bool commaNeeded=true) print_VkQueueGlobalPriorityEXT() argument
33324 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkQueueGlobalPriorityEXT() local
33529 print_VkTimeDomainEXT(VkTimeDomainEXT obj, const std::string& str, bool commaNeeded=true) print_VkTimeDomainEXT() argument
33531 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkTimeDomainEXT() local
33537 print_VkTimeDomainEXT(const VkTimeDomainEXT * obj, const std::string& str, bool commaNeeded=true) print_VkTimeDomainEXT() argument
33539 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkTimeDomainEXT() local
34170 print_VkValidationFeatureEnableEXT(VkValidationFeatureEnableEXT obj, const std::string& str, bool commaNeeded=true) print_VkValidationFeatureEnableEXT() argument
34172 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkValidationFeatureEnableEXT() local
34178 print_VkValidationFeatureEnableEXT(const VkValidationFeatureEnableEXT * obj, const std::string& str, bool commaNeeded=true) print_VkValidationFeatureEnableEXT() argument
34180 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkValidationFeatureEnableEXT() local
34197 print_VkValidationFeatureDisableEXT(VkValidationFeatureDisableEXT obj, const std::string& str, bool commaNeeded=true) print_VkValidationFeatureDisableEXT() argument
34199 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkValidationFeatureDisableEXT() local
34205 print_VkValidationFeatureDisableEXT(const VkValidationFeatureDisableEXT * obj, const std::string& str, bool commaNeeded=true) print_VkValidationFeatureDisableEXT() argument
34207 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkValidationFeatureDisableEXT() local
34427 print_VkHeadlessSurfaceCreateFlagsEXT(VkHeadlessSurfaceCreateFlagsEXT obj, const std::string& str, bool commaNeeded=true) print_VkHeadlessSurfaceCreateFlagsEXT() argument
34434 print_VkHeadlessSurfaceCreateFlagsEXT(const VkHeadlessSurfaceCreateFlagsEXT * obj, const std::string& str, bool commaNeeded=true) print_VkHeadlessSurfaceCreateFlagsEXT() argument
34495 print_VkLineRasterizationModeEXT(VkLineRasterizationModeEXT obj, const std::string& str, bool commaNeeded=true) print_VkLineRasterizationModeEXT() argument
34497 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkLineRasterizationModeEXT() local
34503 print_VkLineRasterizationModeEXT(const VkLineRasterizationModeEXT * obj, const std::string& str, bool commaNeeded=true) print_VkLineRasterizationModeEXT() argument
34505 if (str != "") _OUT << "\\"" << str << "\\"" << " : "; print_VkLineRasterizationModeEXT() local
[all...]
/third_party/alsa-utils/alsaloop/
H A Dcontrol.c34 static char str[128]; in id_str() local
36 sprintf(str, "%i,%s,%i,%i,%s,%i", in id_str()
43 return str; in id_str()
46 int control_parse_id(const char *str, snd_ctl_elem_id_t *id) in control_parse_id() argument
51 while (*str == ' ' || *str == '\t') in control_parse_id()
52 str++; in control_parse_id()
53 if (!(*str)) in control_parse_id()
56 while (*str) { in control_parse_id()
57 if (!strncasecmp(str, "numi in control_parse_id()
[all...]
/third_party/jerryscript/tools/
H A Dbuild.py77 buildgrp.add_argument('--lto', metavar='X', choices=['ON', 'OFF'], type=str.upper,
79 buildgrp.add_argument('--shared-libs', metavar='X', choices=['ON', 'OFF'], type=str.upper,
81 buildgrp.add_argument('--strip', metavar='X', choices=['ON', 'OFF'], type=str.upper,
89 compgrp.add_argument('--doctests', metavar='X', choices=['ON', 'OFF'], type=str.upper,
91 compgrp.add_argument('--jerry-cmdline', metavar='X', choices=['ON', 'OFF'], type=str.upper,
93 compgrp.add_argument('--jerry-cmdline-snapshot', metavar='X', choices=['ON', 'OFF'], type=str.upper,
95 compgrp.add_argument('--jerry-cmdline-test', metavar='X', choices=['ON', 'OFF'], type=str.upper,
97 compgrp.add_argument('--libfuzzer', metavar='X', choices=['ON', 'OFF'], type=str.upper,
99 compgrp.add_argument('--jerry-ext', metavar='X', choices=['ON', 'OFF'], type=str.upper,
101 compgrp.add_argument('--jerry-libm', metavar='X', choices=['ON', 'OFF'], type=str
[all...]
/third_party/icu/icu4c/source/test/intltest/
H A Dtchcfmt.cpp50 UnicodeString str; in TestSimpleExample() local
61 str = ""; in TestSimpleExample()
62 res1 = form->format(i, str, fpos, status ); in TestSimpleExample()
173 UnicodeString str; in TestComplexExample() local
208 str = ""; in TestComplexExample()
212 res2 = pattform->format(testArgs, 3, str, fpos, status ); in TestComplexExample()
274 str = ""; in TestComplexExample()
278 res2 = pattform->format(testArgs, 3, str, fpos, status ); in TestComplexExample()
368 str = ""; in TestComplexExample()
372 res1 = form_pat.format( arg_double, str, fpo in TestComplexExample()
488 UnicodeString str; TestClosures() local
590 const char* str[] = {str1, str2, str3}; _testPattern() local
[all...]
/third_party/python/Tools/peg_generator/pegen/
H A Dparser_generator.py46 def __init__(self, rules: Dict[str, Rule], callmakervisitor: GrammarVisitor) -> None:
60 def __init__(self, gen: "ParserGenerator", keywords: Dict[str, int], soft_keywords: Set[str]):
75 def __init__(self, rules: Dict[str, Rule], tokens: Set[str]):
93 def __init__(self, grammar: Grammar, tokens: Set[str], file: Optional[IO[Text]]):
96 self.keywords: Dict[str, int] = {}
97 self.soft_keywords: Set[str] = set()
110 self.all_rules: Dict[str, Rule] = self.rules.copy() # Rules + temporal rules
111 self._local_variable_stack: List[List[str]]
[all...]
/third_party/icu/icu4c/source/test/cintltst/
H A Dcmsgtst.c111 UChar *str; in MessageFormatTest() local
119 str=(UChar*)malloc(sizeof(UChar) * 7); in MessageFormatTest()
120 u_uastrncpy(str, "MyDisk", 7); in MessageFormatTest()
152 free(str); in MessageFormatTest()
281 UChar *str; in TestSampleMessageFormat() local
290 str=(UChar*)malloc(sizeof(UChar) * 15); in TestSampleMessageFormat()
291 u_uastrcpy(str, "abc"); in TestSampleMessageFormat()
298 resultLengthOut=u_formatMessage( "en_US", pattern, u_strlen(pattern), result, resultlength, &status, str, d); in TestSampleMessageFormat()
304 u_formatMessage( "en_US", pattern, u_strlen(pattern), result, resultlength, &status, str, d); in TestSampleMessageFormat()
320 u_uastrcpy(str, "MyDis in TestSampleMessageFormat()
382 UChar *result = NULL, tzID[4], str[25]; TestNewFormatAndParseAPI() local
484 UChar *result, *tzID, *str; TestSampleFormatAndParseWithError() local
584 UChar *result, *tzID, *str; TestSampleFormatAndParse() local
680 UChar* str; TestMsgFormatSelect() local
751 UChar* str; TestMsgFormatChoice() local
848 UChar str[10]; TestParseMessage() local
899 UChar *str; TestMessageFormatWithValist() local
960 UChar str[10]; TestParseMessageWithValist() local
[all...]
H A Dcbiditransformtst.c60 static char* pseudoScript(const UChar *str);
62 static void shapeDigits(UChar *str, UChar srcZero, UChar destZero);
64 static void shapeLetters(UChar *str, const UChar *from, const UChar *to);
98 pseudoScript(const UChar *str) {
100 if (str) {
101 for (; *str; str++, p++) {
102 switch (u_charDirection(*str)) {
104 substituteByPseudoChar(str, p, MIN_HEB_LETTER, 'K', 'Z');
107 if (*str >
127 pseudoScript(const UChar *str) pseudoScript() argument
201 shapeDigits(UChar *str, UChar srcZero, UChar destZero) shapeDigits() argument
216 shapeLetters(UChar *str, const UChar *from, const UChar *to) shapeLetters() argument
[all...]
/third_party/musl/libc-test/src/functionalext/supplement/string/
H A Dstrrchr.c20 #define T(no, str, c, substr) \
22 char *result = strrchr(str, c); \
24 t_error("%s strrchr(%s,%s) returned %s, wanted %s\n", #no, #str, #c, result, substr); \
27 #define N(no, str, c) \
29 char *result = strrchr(str, c); \
31 t_error("%s strrchr(%s,%s) returned %s is not NULL\n", #no, #str, #c, result); \
34 #define N1(no, str) \
36 char *result = strrchr(str, 0); \
38 t_error("%s strrchr(%s,NULL) returned %s is not ''\n", #no, #str, result); \
/third_party/musl/libc-test/src/functionalext/supplement/string/string_gtest/
H A Dstring_wmemcmp_test.cpp19 wchar_t str[] = L"ABCDEFG"; in HWTEST_F() local
21 EXPECT_EQ(1, wmemcmp(str, tar, wcslen(str))); in HWTEST_F()
22 EXPECT_EQ(-1, wmemcmp(tar, str, wcslen(str))); in HWTEST_F()
23 EXPECT_EQ(0, wmemcmp(str, str, wcslen(str))); in HWTEST_F()
24 EXPECT_EQ(0, wmemcmp(tar, str, 0)); in HWTEST_F()
/third_party/python/Lib/importlib/metadata/
H A D_meta.py11 def __contains__(self, item: str) -> bool:
14 def __getitem__(self, key: str) -> str:
17 def __iter__(self) -> Iterator[str]:
20 def get_all(self, name: str, failobj: _T = ...) -> Union[List[Any], _T]:
26 def json(self) -> Dict[str, Union[str, List[str]]]:
46 def read_text(self) -> str:
/third_party/rust/crates/nom/tests/
H A Dmultiline.rs8 pub fn end_of_line(input: &str) -> IResult<&str, &str> { in end_of_line()
16 pub fn read_line(input: &str) -> IResult<&str, &str> { in read_line()
20 pub fn read_lines(input: &str) -> IResult<&str, Vec<&str>> { in read_lines()
/third_party/node/deps/openssl/openssl/include/openssl/
H A Dpem.h99 # define IMPLEMENT_PEM_read_fp(name, type, str, asn1) /**/
100 # define IMPLEMENT_PEM_write_fp(name, type, str, asn1) /**/
102 # define IMPLEMENT_PEM_write_fp_const(name, type, str, asn1) /**/
104 # define IMPLEMENT_PEM_write_cb_fp(name, type, str, asn1) /**/
106 # define IMPLEMENT_PEM_write_cb_fp_const(name, type, str, asn1) /**/
110 # define IMPLEMENT_PEM_read_fp(name, type, str, asn1) \
113 return PEM_ASN1_read((d2i_of_void *)d2i_##asn1, str, fp, \
117 # define IMPLEMENT_PEM_write_fp(name, type, str, asn1) \
120 return PEM_ASN1_write((i2d_of_void *)i2d_##asn1, str, out, \
125 # define IMPLEMENT_PEM_write_fp_const(name, type, str, asn
[all...]
/third_party/openssl/include/openssl/
H A Dpem.h99 # define IMPLEMENT_PEM_read_fp(name, type, str, asn1) /**/
100 # define IMPLEMENT_PEM_write_fp(name, type, str, asn1) /**/
102 # define IMPLEMENT_PEM_write_fp_const(name, type, str, asn1) /**/
104 # define IMPLEMENT_PEM_write_cb_fp(name, type, str, asn1) /**/
106 # define IMPLEMENT_PEM_write_cb_fp_const(name, type, str, asn1) /**/
110 # define IMPLEMENT_PEM_read_fp(name, type, str, asn1) \
113 return PEM_ASN1_read((d2i_of_void *)d2i_##asn1, str, fp, \
117 # define IMPLEMENT_PEM_write_fp(name, type, str, asn1) \
120 return PEM_ASN1_write((i2d_of_void *)i2d_##asn1, str, out, \
125 # define IMPLEMENT_PEM_write_fp_const(name, type, str, asn
[all...]
/drivers/peripheral/battery/interfaces/hdi_service/include/
H A Dpower_supply_provider.h124 static inline int32_t ParseInt(const char* str);
125 static inline void Trim(char* str);
126 static inline void CapacityAssigner(const char* str, struct BatterydInfo* info);
127 static inline void TotalEnergyAssigner(const char* str, struct BatterydInfo* info);
128 static inline void CurrentAverageAssigner(const char* str, struct BatterydInfo* info);
129 static inline void CurrentNowAssigner(const char* str, struct BatterydInfo* info);
130 static inline void RemainEnergyAssigner(const char* str, struct BatterydInfo* info);
131 static inline void VoltageAssigner(const char* str, struct BatterydInfo* info);
132 static inline void TemperatureAssigner(const char* str, struct BatterydInfo* info);
133 static int32_t HealthStateEnumConverter(const char* str);
[all...]

Completed in 45 milliseconds

1...<<11121314151617181920>>...377