| /device/generic/vulkan-cereal/third-party/angle/scripts/ |
| D | gen_angle_gn_info_json.py | 48 def load_json_deps(desc, gn_out, target_name, all_desc, indent=" "): argument 56 indent: Print with indent to show recursion depth 62 logging.debug("dep: %s%s" % (indent, dep)) 65 load_json_deps(new_desc, gn_out, dep, all_desc, indent + " ") 67 logging.debug("dup: %s%s" % (indent, dep)) 108 fh.write(json.dumps(desc, indent=4, sort_keys=True))
|
| D | generate_android_bp.py | 28 def tabs(indent): argument 29 return ' ' * (indent * 4) 47 def write_blueprint_key_value(output, name, value, indent=1): argument 55 output.append(tabs(indent) + '%s: [' % name) 57 output.append(tabs(indent + 1) + '"%s",' % item) 58 output.append(tabs(indent) + '],') 63 output.append(tabs(indent) + '%s: {' % name) 65 write_blueprint_key_value(output, item, item_value, indent + 1) 66 output.append(tabs(indent) + '},') 69 output.append(tabs(indent) + '%s: %s,' % (name, 'true' if value else 'false')) [all …]
|
| /device/generic/vulkan-cereal/protocols/vulkan/xml/ |
| D | comment_convert.py | 68 def dump_converted_comment_lines(self, indent): argument 77 indent = indent + ' ' 110 self.output_line(indent + line) 112 # Don't indent empty comment lines 164 indent = def_match.group('indentation') 166 self.dump_converted_comment_lines(indent)
|
| D | reflow.py | 146 """indent level (in spaces) of the first line of a paragraph.""" 149 """indent level of the remaining lines of a paragraph.""" 236 logDiag('reflowPara lead indent = ', self.leadIndent, 282 # a hanging indent level if there isn't one already. 287 'but indent already hanging @ input line', 522 Paragraphs may have "hanging indent", e.g. 534 indent = len(line) - len(line.lstrip()) 537 if self.para != [] and indent < self.hangIndent: 550 self.leadIndent = indent 551 self.hangIndent = indent [all …]
|
| D | spirvcapgenerator.py | 69 # How to "indent" a pseudo-column for better use of space. 71 indent = '{captableindent}' 168 indent, link, altlink, continuation)) 170 body.append('{} <<{}>>{}'.format(indent, link, continuation))
|
| D | extensionmetadocgenerator.py | 166 def conditionalLinkExt(self, extName, indent = ' '): argument 168 doc += indent + self.conventions.formatExtension(extName) + '\n' 171 doc += indent + '`' + extName + '`\n' 438 indent = '' 439 … write(' * {blank}\n+\n' + ext.conditionalLinkExt(ext.name, indent), file=promoted_extensions_fp)
|
| D | generator.py | 565 # Indent requirements comment, if there is one 797 indent = ' ' 798 paramdecl = indent + noneStr(param.text) 820 paramdecl = indent + ' '.join(paramdecl.split())
|
| /device/generic/vulkan-cereal/third-party/angle/ |
| D | .clang-format | 9 # Indent 4 spaces at a time. 36 # Indent case labels. 55 # Indent nested PP directives.
|
| /device/google/cuttlefish/tools/ |
| D | tombstone_to_line.py | 59 def simple_match(line, info, indent, out_file): argument 64 def source_match(line, info, indent, out_file): argument 72 simple_match(line, info, indent, out_file) 76 ' ' * indent, info.file_name, info.line_number), file=out_file) 77 print('{} {}'.format(' ' * indent, ' '.join(source.strip().split())),
|
| /device/generic/vulkan-cereal/protocols/vulkan/xml/cereal/common/ |
| D | codegen.py | 191 def indent(self,extra=0): member in CodeGen 203 self.code += self.indent() + "{\n" 210 self.code += self.indent() + "}\n" 214 self.code += self.indent() + "if (" + cond + ")\n" 220 self.indent() + \ 223 self.code += self.indent() + "else\n" 233 self.code += self.indent() + "switch (" + switchvar + ")\n" 237 self.code += self.indent() + "case %s:" % switchval 241 self.code += self.indent() + "case %s:" % switchval 245 self.code += self.indent() + "default:" % switchval [all …]
|
| /device/generic/vulkan-cereal/protocols/vulkan/ |
| D | reflow.py | 113 # leadIndent - indent level (in spaces) of the first line of a paragraph. 114 # hangIndent - indent level of the remaining lines of a paragraph. 194 logDiag('reflowPara lead indent = ', self.leadIndent, 238 # a hanging indent level if there isn't one already. 243 'but indent already hanging @ input line', 453 # Paragraphs may have "hanging indent", e.g. 462 indent = len(line) - len(line.lstrip()) 465 if self.para != [] and indent < self.hangIndent: 478 self.leadIndent = indent 479 self.hangIndent = indent [all …]
|
| /device/generic/vulkan-cereal/third-party/angle/doc/ |
| D | CodingStandard.md | 100 * {DEV} indent 4 spaces at a time. 103 * class format(eg private, public, protected): indent by 2 spaces. Regular 104 4-space indent from the outer scope for declarations/definitions.
|
| D | Orientation.md | 29 finish. **Important**: set indent style to spaces, not tabs!
|
| /device/google/trout/ |
| D | CPPLINT.cfg | 33 filter=-whitespace/indent
|
| /device/google/crosshatch/json-c/ |
| D | json_object.c | 299 static void indent(struct printbuf *pb, int level, int flags) in indent() function 331 indent(pb, level+1, flags); in json_object_object_to_json_string() 347 indent(pb,level,flags); in json_object_object_to_json_string() 832 indent(pb, level + 1, flags); in json_object_array_to_json_string() 843 indent(pb,level,flags); in json_object_array_to_json_string()
|
| /device/google/bonito/json-c/ |
| D | json_object.c | 299 static void indent(struct printbuf *pb, int level, int flags) in indent() function 331 indent(pb, level+1, flags); in json_object_object_to_json_string() 347 indent(pb,level,flags); in json_object_object_to_json_string() 832 indent(pb, level + 1, flags); in json_object_array_to_json_string() 843 indent(pb,level,flags); in json_object_array_to_json_string()
|
| /device/google/sunfish/json-c/ |
| D | json_object.c | 299 static void indent(struct printbuf *pb, int level, int flags) in indent() function 331 indent(pb, level+1, flags); in json_object_object_to_json_string() 347 indent(pb,level,flags); in json_object_object_to_json_string() 832 indent(pb, level + 1, flags); in json_object_array_to_json_string() 843 indent(pb,level,flags); in json_object_array_to_json_string()
|
| /device/google/redbull/json-c/ |
| D | json_object.c | 299 static void indent(struct printbuf *pb, int level, int flags) in indent() function 331 indent(pb, level+1, flags); in json_object_object_to_json_string() 347 indent(pb,level,flags); in json_object_object_to_json_string() 832 indent(pb, level + 1, flags); in json_object_array_to_json_string() 843 indent(pb,level,flags); in json_object_array_to_json_string()
|
| /device/google/coral/json-c/ |
| D | json_object.c | 299 static void indent(struct printbuf *pb, int level, int flags) in indent() function 331 indent(pb, level+1, flags); in json_object_object_to_json_string() 347 indent(pb,level,flags); in json_object_object_to_json_string() 832 indent(pb, level + 1, flags); in json_object_array_to_json_string() 843 indent(pb,level,flags); in json_object_array_to_json_string()
|
| /device/generic/vulkan-cereal/protocols/vulkan/config/themes/ |
| D | pdf-theme.yml | 218 indent: $horizontal_rhythm * 1.5 234 indent: $horizontal_rhythm
|
| /device/generic/vulkan-cereal/fake-android-guest/utils/ |
| D | CallStack.h | 64 void dump(int fd, int indent = 0, const char* prefix = 0) const;
|
| /device/generic/vulkan-cereal/protocols/vulkan/xml/spec_tools/ |
| D | console_printer.py | 221 indent = ' ' * headingSize 243 print(colored(indent + line, attrs=['bold']))
|
| /device/generic/vulkan-cereal/third-party/angle/tools/flex-bison/third_party/skeletons/ |
| D | c-like.m4 | 22 # Put TEXT in comment. Avoid trailing spaces: don't indent empty lines.
|
| /device/generic/goldfish-opengl/ |
| D | cmake_transform.py | 158 out_file.write(json.dumps(modules, indent=2))
|
| /device/generic/vulkan-cereal/third-party/angle/src/libANGLE/renderer/vulkan/ |
| D | RendererVk.cpp | 254 size_t indent = kStartIndent; in DebugUtilsMessenger() local 257 log << std::string(indent++, ' ') << "<Queue Label Hierarchy:>" << std::endl; in DebugUtilsMessenger() 260 log << std::string(indent++, ' ') << callbackData->pQueueLabels[i].pLabelName in DebugUtilsMessenger() 266 log << std::string(indent++, ' ') << "<Command Buffer Label Hierarchy:>" << std::endl; in DebugUtilsMessenger() 269 log << std::string(indent++, ' ') << callbackData->pCmdBufLabels[i].pLabelName in DebugUtilsMessenger() 281 log << std::string(indent, ' ') << "Object: "; in DebugUtilsMessenger()
|