HomeSort by relevance Sort by last modified time
    Searched full:indent (Results 51 - 75 of 1973) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/pyxelator/
genpyx.py 48 def indent( self ): member in class:OStream
75 def pyxstr(self,toks=None,indent=0,**kw):
83 x.pyxstr(toks, indent, **kw)
102 def pyxstr(self,toks=None,indent=0,**kw):
113 def pyxstr(self,toks=None,indent=0,**kw):
127 def pyxstr(self,toks=None,indent=0,**kw):
138 def pyxstr(self,toks=None,indent=0,cprefix="",**kw):
143 x.pyxstr(toks, indent, cprefix=cprefix, **kw)
155 def pyxstr(self,toks,indent=0,**kw):
162 _toks.append( self[i].pyxstr(indent=indent, **kw)
    [all...]
  /external/llvm/lib/DebugInfo/
DWARFDebugLoc.cpp 21 const unsigned Indent = 12;
24 OS.indent(Indent);
27 OS.indent(Indent) << " Ending address offset: "
29 OS.indent(Indent) << " Location description: ";
115 const unsigned Indent = 12;
118 OS.indent(Indent);
    [all...]
  /external/qemu/qobject/
qjson.c 75 int indent; member in struct:ToJsonIterState
81 static void to_json(const QObject *obj, QString *str, int pretty, int indent);
94 for (j = 0 ; j < s->indent ; j++)
99 to_json(QOBJECT(qkey), s->str, s->pretty, s->indent);
103 to_json(obj, s->str, s->pretty, s->indent);
117 for (j = 0 ; j < s->indent ; j++)
121 to_json(obj, s->str, s->pretty, s->indent);
125 static void to_json(const QObject *obj, QString *str, int pretty, int indent)
198 s.indent = indent + 1
    [all...]
  /external/chromium_org/v8/src/
prettyprinter.cc 720 IndentedScope indent(this, s);
727 { IndentedScope indent(this, "FUNC");
740 IndentedScope indent(this, "DECLS");
750 IndentedScope indent(this, "PARAMS");
775 IndentedScope indent(this, block_txt);
799 IndentedScope indent(this, "MODULE");
806 IndentedScope indent(this, "IMPORT");
813 IndentedScope indent(this, "EXPORT ");
819 IndentedScope indent(this, "MODULE LITERAL");
825 IndentedScope indent(this, "MODULE VARIABLE")
    [all...]
json.js 50 function SerializeArray(value, replacer, stack, indent, gap) {
54 var stepback = indent;
55 indent += gap;
60 indent, gap);
70 var separator = ",\n" + indent;
71 final = "[\n" + indent + partial.join(separator) + "\n" +
80 function SerializeObject(value, replacer, stack, indent, gap) {
84 var stepback = indent;
85 indent += gap;
92 var strP = JSONSerialize(p, value, replacer, stack, indent, gap)
    [all...]
  /external/chromium_org/tools/emacs/
chrome-filetypes.el 9 (setq indent-tabs-mode nil
11 python-indent 2))
  /external/chromium_org/tools/telemetry/telemetry/timeline/
tracing_timeline_data.py 18 json.dump(self._event_data, f, indent=4)
20 json.dump({'traceEvents' : self._event_data}, f, indent=4)
  /frameworks/compile/slang/
slang_rs_reflect_utils.cpp 121 out.indent() << "// return byte array representation of the " << bitwidth
123 out.indent() << "public static byte[] getBitCode" << bitwidth << "()";
125 out.indent() << "return getBitCode" << bitwidth << "Internal();\n";
134 out.indent() << "private static byte[] getSegment" << bitwidth << "_"
137 out.indent() << "byte[] data = {";
141 int position = kEntriesPerLine; // We start with a new line and indent.
145 out.indent();
155 out.indent() << "};\n";
156 out.indent() << "return data;\n";
197 out.indent() << "private static int bitCode" << bitwidth << "Length =
    [all...]
slang_rs_reflection_cpp.cpp 143 mOut.indent() << "#include \"RenderScript.h\"\n\n";
144 mOut.indent() << "using namespace android::RSC;\n\n";
150 mOut.indent() << "class " << mClassName << " : public android::RSC::ScriptC";
154 mOut.indent() << "private:\n";
162 mOut.indent() << "public:\n";
166 mOut.indent() << mClassName << "(android::RSC::sp<android::RSC::RS> rs);\n";
167 mOut.indent() << "virtual ~" << mClassName << "();\n\n";
210 mOut.indent() << "android::RSC::sp<const android::RSC::Element> "
235 mOut.indent() << GetTypeName(ev->getType()) << " " RS_EXPORT_VAR_PREFIX
249 mOut.indent() << "// No forEach_root(...)\n"
    [all...]
  /external/chromium_org/third_party/jsoncpp/
jsoncpp.gyp 19 # indent-tabs-mode:nil
  /external/tcpdump/
print-rpki-rtr.c 133 indent_string (u_int indent)
144 if (sizeof(buf) < ((indent/8) + (indent %8) + 2)) {
154 while (indent >= 8) {
157 indent -= 8;
160 while (indent > 0) {
163 indent--;
178 rpki_rtr_pdu_print (const u_char *tptr, u_int indent)
205 indent_string(indent+2),
223 indent_string(indent+2)
    [all...]
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
XMPSerializerRDF.java 409 * @param indent the current indent level
413 private boolean serializeCompactRDFAttrProps(XMPNode parentNode, int indent) throws IOException
424 writeIndent(indent);
442 * field of a struct, or an item of an array. The indent is that for the
484 * @param indent the current indent level
488 private void serializeCompactRDFElementProps(XMPNode parentNode, int indent)
511 writeIndent(indent);
540 serializeCompactRDFGeneralQualifier(indent, node)
844 declareNamespace(field.getName(), null, usedPrefixes, indent); local
857 declareNamespace(qualifier.getName(), null, usedPrefixes, indent); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/custom/
CustomElementMicrotaskRunQueue.cpp 75 void CustomElementMicrotaskRunQueue::show(unsigned indent)
78 m_syncQueue->show(indent);
80 m_asyncQueue->show(indent);
  /external/chromium_org/third_party/icu/source/samples/uresb/
uresb.c 59 void printOutBundle(UFILE *out, UResourceBundle *resource, int32_t indent, UErrorCode *status);
60 void printIndent(UFILE *out, int32_t indent);
171 void printIndent(UFILE *out, int32_t indent) {
174 for(i = 0; i<indent; i++) {
177 inchar[indent] = '\0';
221 void printOutBundle(UFILE *out, UResourceBundle *resource, int32_t indent, UErrorCode *status) {
235 printIndent(out, indent);
240 printIndent(out, indent);
254 printIndent(out, indent);
270 printIndent(out, indent);
    [all...]
  /external/icu/icu4c/source/samples/uresb/
uresb.c 59 void printOutBundle(UFILE *out, UResourceBundle *resource, int32_t indent, UErrorCode *status);
60 void printIndent(UFILE *out, int32_t indent);
171 void printIndent(UFILE *out, int32_t indent) {
174 for(i = 0; i<indent; i++) {
177 inchar[indent] = '\0';
221 void printOutBundle(UFILE *out, UResourceBundle *resource, int32_t indent, UErrorCode *status) {
235 printIndent(out, indent);
240 printIndent(out, indent);
254 printIndent(out, indent);
270 printIndent(out, indent);
    [all...]
  /external/chromium_org/build/android/pylib/utils/
apk_helper.py 38 indent = ' '
45 while line[(len(indent) * indent_depth):].startswith(indent):
51 m = _MANIFEST_ELEMENT_RE.match(line[len(indent) * indent_depth:])
58 m = _MANIFEST_ATTRIBUTE_RE.match(line[len(indent) * indent_depth:])
  /external/chromium_org/third_party/libvpx/source/libvpx/build/make/
gen_msvs_sln.sh 48 indent=""
50 indent="${indent}${indent1}"
53 indent="${indent%${indent1}}"
110 echo "${indent}ProjectSection(ProjectDependencies) = postProject"
116 echo "${indent}$dep_guid = $dep_guid"
120 echo "${indent}EndProjectSection"
135 echo "${indent}GlobalSection(SolutionConfigurationPlatforms) = preSolution"
145 echo "${indent}$config = $config
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/
radeon_debug.c 73 const size_t length = sizeof(radeon->debug.indent)
74 / sizeof(radeon->debug.indent[0]);
76 radeon->debug.indent[radeon->debug.indent_depth] = '\t';
86 radeon->debug.indent[radeon->debug.indent_depth] = '\0';
103 fprintf(stderr, "%s", radeon->debug.indent);
  /external/chromium_org/tools/gn/
parse_tree.cc 58 void ParseNode::PrintComments(std::ostream& out, int indent) const {
60 std::string ind = IndentFor(indent + 1);
114 void AccessorNode::Print(std::ostream& out, int indent) const {
115 out << IndentFor(indent) << "ACCESSOR\n";
116 PrintComments(out, indent);
117 out << IndentFor(indent + 1) << base_.value() << "\n";
119 index_->Print(out, indent + 1);
121 member_->Print(out, indent + 1);
230 void BinaryOpNode::Print(std::ostream& out, int indent) const {
231 out << IndentFor(indent) << "BINARY(" << op_.value() << ")\n"
    [all...]
  /external/chromium_org/tools/gyp/pylib/gyp/
xml_fix.py 28 def _Replacement_writexml(self, writer, indent="", addindent="", newl=""):
29 # indent = current indentation
32 writer.write(indent+"<" + self.tagName)
45 node.writexml(writer, indent + addindent, addindent, newl)
46 writer.write("%s</%s>%s" % (indent, self.tagName, newl))
  /external/libvpx/libvpx/build/make/
gen_msvs_sln.sh 48 indent=""
50 indent="${indent}${indent1}"
53 indent="${indent%${indent1}}"
110 echo "${indent}ProjectSection(ProjectDependencies) = postProject"
116 echo "${indent}$dep_guid = $dep_guid"
120 echo "${indent}EndProjectSection"
135 echo "${indent}GlobalSection(SolutionConfigurationPlatforms) = preSolution"
145 echo "${indent}$config = $config
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_debug.c 73 const size_t length = sizeof(radeon->debug.indent)
74 / sizeof(radeon->debug.indent[0]);
76 radeon->debug.indent[radeon->debug.indent_depth] = '\t';
86 radeon->debug.indent[radeon->debug.indent_depth] = '\0';
103 fprintf(stderr, "%s", radeon->debug.indent);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/build/make/
gen_msvs_sln.sh 48 indent=""
50 indent="${indent}${indent1}"
53 indent="${indent%${indent1}}"
110 echo "${indent}ProjectSection(ProjectDependencies) = postProject"
116 echo "${indent}$dep_guid = $dep_guid"
120 echo "${indent}EndProjectSection"
135 echo "${indent}GlobalSection(SolutionConfigurationPlatforms) = preSolution"
145 echo "${indent}$config = $config
    [all...]
  /external/proguard/src/proguard/classfile/visitor/
ClassPrinter.java 96 indent(); method
115 indent(); method
121 indent(); method
127 indent(); method
133 indent(); method
139 indent(); method
151 indent(); method
232 indent(); method
242 indent(); method
306 indent(); method
325 indent(); method
355 indent(); method
372 indent(); method
399 indent(); method
410 indent(); method
421 indent(); method
432 indent(); method
443 indent(); method
473 indent(); method
493 indent(); method
506 indent(); method
530 indent(); method
542 indent(); method
554 indent(); method
566 indent(); method
578 indent(); method
589 indent(); method
600 indent(); method
611 indent(); method
622 indent(); method
633 indent(); method
647 indent(); method
661 indent(); method
683 indent(); method
693 indent(); method
714 indent(); method
904 indent(); method
920 indent(); method
954 indent(); method
967 indent(); method
975 private void indent() method in class:ClassPrinter
    [all...]
  /external/fonttools/Lib/fontTools/misc/
xmlWriter.py 8 INDENT = " "
13 def __init__(self, fileOrPath, indentwhite=INDENT, idlefunc=None):
35 def write(self, string, indent=True):
37 self._writeraw(escape(string), indent=indent)
55 self._writeraw(escape(string), indent=False)
57 def _writeraw(self, data, indent=True, strip=False):
59 if indent and self.needindent:
94 self.indent()
117 def indent(self) member in class:XMLWriter
    [all...]

Completed in 1005 milliseconds

1 23 4 5 6 7 8 91011>>