HomeSort by relevance Sort by last modified time
    Searched refs:indent (Results 201 - 225 of 774) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/pyxelator/
node.py 128 def deepstr(self,level=0,comment=False,nl='\n',indent=' '):
130 nl = ""; indent = ""
132 #nl="\n"; indent = " "
138 s.append( indent*(level+1)+item.deepstr(level+1,False,nl,indent) )
140 s.append( indent*(level+1)+repr(item) )
145 s.append( indent*(level+1)+"<recursion...>" )
147 s.append( indent*(level+1)+"%s"%repr(item) )
  /external/chromium_org/third_party/icu/source/tools/genrb/
derb.c 62 static void printOutBundle(FILE *out, UConverter *converter, UResourceBundle *resource, int32_t indent, const char *pname, UErrorCode *status);
65 static void printIndent(FILE *out, UConverter *converter, int32_t indent);
450 static void printIndent(FILE *out, UConverter *converter, int32_t indent) {
453 for(i = 0; i<indent; i++) {
456 inchar[indent] = 0;
458 printString(out, converter, inchar, indent);
471 static void printOutAlias(FILE *out, UConverter *converter, UResourceBundle *parent, Resource r, const char *key, int32_t indent, const char *pname, UErrorCode *status) {
478 printIndent(out, converter, indent);
487 printIndent(out, converter, indent);
504 static void printOutBundle(FILE *out, UConverter *converter, UResourceBundle *resource, int32_t indent, const char *pname, UErrorCode *status
    [all...]