Home
last modified time | relevance | path

Searched refs:newl (Results 1 – 14 of 14) sorted by relevance

/third_party/libxml2/result/
Dent11.sax4 SAX.entityDecl(newl, 1, (null), (null),
6 SAX.getEntity(newl)
9 SAX.getEntity(newl)
12 SAX.reference(newl)
Dent11.sax24 SAX.entityDecl(newl, 1, (null), (null),
6 SAX.getEntity(newl)
9 SAX.getEntity(newl)
12 SAX.reference(newl)
Dent11.rdr3 1 5 newl 0 0
/third_party/node/tools/gyp/pylib/gyp/
Dxml_fix.py25 def _Replacement_writexml(self, writer, indent="", addindent="", newl=""): argument
39 writer.write(">%s" % newl)
41 node.writexml(writer, indent + addindent, addindent, newl)
42 writer.write("%s</%s>%s" % (indent, self.tagName, newl))
44 writer.write("/>%s" % newl)
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/
Dxml_fix.py28 def _Replacement_writexml(self, writer, indent="", addindent="", newl=""): argument
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)
/third_party/libxml2/result/noent/
Dent11.sax24 SAX.entityDecl(newl, 1, (null), (null),
6 SAX.getEntity(newl)
9 SAX.getEntity(newl)
/third_party/python/Lib/xml/dom/
Dminidom.py49 def toprettyxml(self, indent="\t", newl="\n", encoding=None, argument
60 self.writexml(writer, "", indent, newl, encoding, standalone)
62 self.writexml(writer, "", indent, newl)
869 def writexml(self, writer, indent="", addindent="", newl=""): argument
893 writer.write(newl)
895 node.writexml(writer, indent+addindent, addindent, newl)
897 writer.write("</%s>%s" % (self.tagName, newl))
899 writer.write("/>%s"%(newl))
1012 def writexml(self, writer, indent="", addindent="", newl=""): argument
1013 writer.write("%s<?%s %s?>%s" % (indent,self.target, self.data, newl))
[all …]
/third_party/toybox/kconfig/lxdialog/
Dutil.c316 int newl, cur_x, cur_y; in print_autowrap() local
338 newl = 1; in print_autowrap()
351 (newl && wlen < 4 && sp in print_autowrap()
365 newl = 1; in print_autowrap()
367 newl = 0; in print_autowrap()
/third_party/python/Parser/
Dtokenizer.c650 const char *newl[2] = {NULL, NULL}; in decode_str() local
671 newl[lineno] = s; in decode_str()
679 if (newl[0]) { in decode_str()
680 if (!check_coding_spec(str, newl[0] - str, tok, buf_setreadl)) { in decode_str()
683 if (tok->enc == NULL && tok->decoding_state != STATE_NORMAL && newl[1]) { in decode_str()
684 if (!check_coding_spec(newl[0]+1, newl[1] - newl[0], in decode_str()
/third_party/selinux/libsepol/include/sepol/policydb/
Dexpand.h81 cond_av_list_t ** newl, avtab_t * expa);
/third_party/python/Doc/library/
Dxml.dom.minidom.rst135 .. method:: Node.writexml(writer, indent="", addindent="", newl="", \
142 of the current one. The *newl* parameter specifies the string to use to
183 .. method:: Node.toprettyxml(indent="\\t", newl="\\n", encoding=None, \
187 indentation string and defaults to a tabulator; *newl* specifies the string
/third_party/selinux/libsepol/src/
Dexpand.c3405 cond_av_list_t ** newl, avtab_t * expa) in expand_cond_av_node() argument
3423 return expand_cond_insert(newl, expa, k, d); in expand_cond_av_node()
3431 rc = expand_cond_insert(newl, expa, &newkey, d); in expand_cond_av_node()
3443 rc = expand_cond_insert(newl, expa, &newkey, d); in expand_cond_av_node()
3455 rc = expand_cond_insert(newl, expa, &newkey, d); in expand_cond_av_node()
3465 cond_av_list_t ** newl, avtab_t * expa) in expand_cond_av_list() argument
3476 *newl = NULL; in expand_cond_av_list()
3479 rc = expand_cond_av_node(p, node, newl, expa); in expand_cond_av_list()
/third_party/mksh/
Dedit.c5181 redraw_line(bool newl) in redraw_line() argument
5185 if (newl) { in redraw_line()
/third_party/python/Lib/test/
Dtest_minidom.py496 domstr = dom.toprettyxml(newl="\r\n")