/external/curl/src/ |
D | tool_cb_dbg.c | 104 static bool newl = FALSE; in tool_debug_cb() local 114 if(!newl) { in tool_debug_cb() 119 newl = FALSE; in tool_debug_cb() 122 if(!newl) in tool_debug_cb() 126 newl = (size && (data[size - 1] != '\n')) ? TRUE : FALSE; in tool_debug_cb() 131 if(!newl) in tool_debug_cb() 134 newl = (size && (data[size - 1] != '\n')) ? TRUE : FALSE; in tool_debug_cb() 147 if(!newl) in tool_debug_cb() 150 newl = FALSE; in tool_debug_cb() 156 newl = FALSE; in tool_debug_cb()
|
/external/libxml2/result/ |
D | ent11.sax | 4 SAX.entityDecl(newl, 1, (null), (null), 6 SAX.getEntity(newl) 9 SAX.getEntity(newl) 12 SAX.reference(newl)
|
D | ent11.sax2 | 4 SAX.entityDecl(newl, 1, (null), (null), 6 SAX.getEntity(newl) 9 SAX.getEntity(newl) 12 SAX.reference(newl)
|
D | ent11.rdr | 3 1 5 newl 0 0
|
/external/libxml2/result/noent/ |
D | ent11.sax2 | 4 SAX.entityDecl(newl, 1, (null), (null), 6 SAX.getEntity(newl) 9 SAX.getEntity(newl)
|
/external/python/cpython3/Lib/xml/dom/ |
D | minidom.py | 49 def toprettyxml(self, indent="\t", newl="\n", encoding=None): argument 59 self.writexml(writer, "", indent, newl, encoding) 61 self.writexml(writer, "", indent, newl) 849 def writexml(self, writer, indent="", addindent="", newl=""): argument 868 writer.write(newl) 870 node.writexml(writer, indent+addindent, addindent, newl) 872 writer.write("</%s>%s" % (self.tagName, newl)) 874 writer.write("/>%s"%(newl)) 987 def writexml(self, writer, indent="", addindent="", newl=""): argument 988 writer.write("%s<?%s %s?>%s" % (indent,self.target, self.data, newl)) [all …]
|
/external/python/cpython2/Lib/xml/dom/ |
D | minidom.py | 48 def toprettyxml(self, indent="\t", newl="\n", encoding = None): argument 58 self.writexml(writer, "", indent, newl, encoding) 60 self.writexml(writer, "", indent, newl) 792 def writexml(self, writer, indent="", addindent="", newl=""): argument 812 writer.write(newl) 814 node.writexml(writer, indent+addindent, addindent, newl) 816 writer.write("</%s>%s" % (self.tagName, newl)) 818 writer.write("/>%s"%(newl)) 934 def writexml(self, writer, indent="", addindent="", newl=""): argument 935 writer.write("%s<?%s %s?>%s" % (indent,self.target, self.data, newl)) [all …]
|
/external/compiler-rt/lib/BlocksRuntime/ |
D | runtime.c | 51 static __inline bool OSAtomicCompareAndSwapLong(long oldl, long newl, long volatile *dst) { in OSAtomicCompareAndSwapLong() argument 53 long original = InterlockedCompareExchange(dst, newl, oldl); in OSAtomicCompareAndSwapLong() 72 static __inline bool OSAtomicCompareAndSwapLong(long oldl, long newl, long volatile *dst) { in OSAtomicCompareAndSwapLong() argument 73 return __sync_bool_compare_and_swap(dst, oldl, newl); in OSAtomicCompareAndSwapLong()
|
/external/honggfuzz/third_party/android/libBlocksRuntime/ |
D | runtime.c | 51 static __inline bool OSAtomicCompareAndSwapLong(long oldl, long newl, long volatile *dst) { in OSAtomicCompareAndSwapLong() argument 53 long original = InterlockedCompareExchange(dst, newl, oldl); in OSAtomicCompareAndSwapLong() 72 static __inline bool OSAtomicCompareAndSwapLong(long oldl, long newl, long volatile *dst) { in OSAtomicCompareAndSwapLong() argument 73 return __sync_bool_compare_and_swap(dst, oldl, newl); in OSAtomicCompareAndSwapLong()
|
/external/toybox/kconfig/lxdialog/ |
D | util.c | 316 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()
|
/external/u-boot/scripts/kconfig/lxdialog/ |
D | util.c | 371 int newl, cur_x, cur_y; in print_autowrap() local 385 newl = 1; in print_autowrap() 401 (newl && wlen < 4 && sp in print_autowrap() 423 newl = 1; in print_autowrap() 425 newl = 0; in print_autowrap()
|
/external/python/cpython2/Parser/ |
D | tokenizer.c | 675 const char *newl[2] = {NULL, NULL}; in decode_str() local 698 newl[lineno] = s; in decode_str() 706 if (newl[0]) { in decode_str() 707 if (!check_coding_spec(str, newl[0] - str, tok, buf_setreadl)) in decode_str() 709 if (tok->enc == NULL && !tok->read_coding_spec && newl[1]) { in decode_str() 710 if (!check_coding_spec(newl[0]+1, newl[1] - newl[0], in decode_str()
|
/external/python/cpython3/Parser/ |
D | tokenizer.c | 752 const char *newl[2] = {NULL, NULL}; in decode_str() local 773 newl[lineno] = s; in decode_str() 781 if (newl[0]) { in decode_str() 782 if (!check_coding_spec(str, newl[0] - str, tok, buf_setreadl)) in decode_str() 784 if (tok->enc == NULL && !tok->read_coding_spec && newl[1]) { in decode_str() 785 if (!check_coding_spec(newl[0]+1, newl[1] - newl[0], in decode_str()
|
/external/python/cpython2/Doc/library/ |
D | xml.dom.minidom.rst | 134 .. method:: Node.writexml(writer, indent="", addindent="", newl="") 139 indentation to use for subnodes of the current one. The *newl* parameter 146 The optional keyword parameters *indent*, *addindent*, and *newl* were added to 172 .. method:: Node.toprettyxml([indent=""[, newl=""[, encoding=""]]]) 175 indentation string and defaults to a tabulator; *newl* specifies the string
|
/external/selinux/libsepol/include/sepol/policydb/ |
D | expand.h | 81 cond_av_list_t ** newl, avtab_t * expa);
|
/external/python/cpython3/Doc/library/ |
D | xml.dom.minidom.rst | 135 .. method:: Node.writexml(writer, indent="", addindent="", newl="") 140 indentation to use for subnodes of the current one. The *newl* parameter 159 .. method:: Node.toprettyxml(indent="\\t", newl="\\n", encoding=None) 162 indentation string and defaults to a tabulator; *newl* specifies the string
|
/external/toolchain-utils/cros_utils/ |
D | pstat.py | 342 newl = [] 345 newl.append(l[i][j]) 346 return newl
|
/external/selinux/libsepol/src/ |
D | expand.c | 3425 cond_av_list_t ** newl, avtab_t * expa) in expand_cond_av_node() argument 3443 return expand_cond_insert(newl, expa, k, d); in expand_cond_av_node() 3453 rc = expand_cond_insert(newl, expa, &newkey, d); in expand_cond_av_node() 3467 rc = expand_cond_insert(newl, expa, &newkey, d); in expand_cond_av_node() 3483 rc = expand_cond_insert(newl, expa, &newkey, d); in expand_cond_av_node() 3493 cond_av_list_t ** newl, avtab_t * expa) in expand_cond_av_list() argument 3504 *newl = NULL; in expand_cond_av_list() 3507 rc = expand_cond_av_node(p, node, newl, expa); in expand_cond_av_list()
|
/external/mksh/src/ |
D | edit.c | 5115 redraw_line(bool newl) in redraw_line() argument 5119 if (newl) { in redraw_line()
|
/external/python/cpython2/Lib/test/ |
D | test_minidom.py | 430 domstr = dom.toprettyxml(newl="\r\n")
|
/external/python/cpython3/Lib/test/ |
D | test_minidom.py | 495 domstr = dom.toprettyxml(newl="\r\n")
|