Lines Matching refs:appendSection

1090         self.appendSection('header_file', self.inline_copyright_message)
1095 self.appendSection('header_file', '#pragma once')
1096 self.appendSection('header_file', '')
1097 self.appendSection('header_file', '#if defined(LAYER_CHASSIS_CAN_WRAP_HANDLES)')
1098 self.appendSection('header_file', 'extern bool wrap_handles;')
1099 self.appendSection('header_file', '#else')
1100 self.appendSection('header_file', 'extern bool wrap_handles;')
1101 self.appendSection('header_file', '#endif')
1185 def appendSection(self, section, text): member in LayerChassisDispatchOutputGenerator
1723 …self.appendSection('header_file', self.GenDispatchFunctionPrototype(cmdinfo, feature_extra_protect…
1727 self.appendSection('source_file', '')
1728 … self.appendSection('source_file', '// Skip %s dispatch, manually generated' % cmdname)
1738 self.appendSection('source_file', '')
1739 self.appendSection('source_file', '#ifdef ' + feature_extra_protect)
1745 self.appendSection('source_file', '')
1746 self.appendSection('source_file', func_sig)
1747 self.appendSection('source_file', '{')
1773 …self.appendSection('source_file', ' auto layer_data = GetLayerDataPtr(get_dispatch_key(%s), lay…
1777 … self.appendSection('source_file', ' if (!wrap_handles) return %s;' % unwrapped_dispatch_call)
1789 self.appendSection('source_file', "\n".join(str(api_decls).rstrip().split("\n")))
1791 self.appendSection('source_file', "\n".join(str(api_pre).rstrip().split("\n")))
1793 …self.appendSection('source_file', ' ' + assignresult + api_func + '(' + wrapped_paramstext + ')…
1796 self.appendSection('source_file', "\n".join(str(api_post).rstrip().split("\n")))
1799 self.appendSection('source_file', ' return result;')
1800 self.appendSection('source_file', '}')
1802 self.appendSection('source_file', '#endif // '+ feature_extra_protect)