HomeSort by relevance Sort by last modified time
    Searched refs:newl (Results 1 - 10 of 10) sorted by null

  /external/chromium_org/tools/gyp/pylib/gyp/
xml_fix.py 28 def _Replacement_writexml(self, writer, indent="", addindent="", newl=""):
31 # newl = newline string
43 writer.write(">%s" % newl)
45 node.writexml(writer, indent + addindent, addindent, newl)
46 writer.write("%s</%s>%s" % (indent, self.tagName, newl))
48 writer.write("/>%s" % newl)
  /external/libsepol/include/sepol/policydb/
expand.h 77 cond_av_list_t ** newl, avtab_t * expa);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/dom/
minidom.py 48 def toprettyxml(self, indent="\t", newl="\n", encoding = None):
50 # newl = the newline string to append
58 self.writexml(writer, "", indent, newl, encoding)
60 self.writexml(writer, "", indent, newl)
795 def writexml(self, writer, indent="", addindent="", newl=""):
798 # newl = newline string
815 writer.write(newl)
817 node.writexml(writer, indent+addindent, addindent, newl)
819 writer.write("</%s>%s" % (self.tagName, newl))
821 writer.write("/>%s"%(newl))
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/dom/
minidom.py 48 def toprettyxml(self, indent="\t", newl="\n", encoding = None):
50 # newl = the newline string to append
58 self.writexml(writer, "", indent, newl, encoding)
60 self.writexml(writer, "", indent, newl)
795 def writexml(self, writer, indent="", addindent="", newl=""):
798 # newl = newline string
815 writer.write(newl)
817 node.writexml(writer, indent+addindent, addindent, newl)
819 writer.write("</%s>%s" % (self.tagName, newl))
821 writer.write("/>%s"%(newl))
    [all...]
  /external/compiler-rt/lib/BlocksRuntime/
runtime.c 51 static __inline bool OSAtomicCompareAndSwapLong(long oldl, long newl, long volatile *dst) {
53 long original = InterlockedCompareExchange(dst, newl, oldl);
72 static __inline bool OSAtomicCompareAndSwapLong(long oldl, long newl, long volatile *dst) {
73 return __sync_bool_compare_and_swap(dst, oldl, newl);
  /cts/tools/utils/cts/
tools.py 106 doc.writexml(writer, addindent=' ', newl='\n', encoding=self.encoding)
215 doc.writexml(stream, addindent=' ', newl='\n', encoding='UTF-8')
  /external/libsepol/src/
expand.c     [all...]
  /external/mksh/src/
edit.c     [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_minidom.py 438 domstr = dom.toprettyxml(newl="\r\n")
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_minidom.py 438 domstr = dom.toprettyxml(newl="\r\n")
    [all...]

Completed in 3787 milliseconds