Searched refs:lstrip (Results 1 – 25 of 118) sorted by relevance
12345
/third_party/cef/tools/yapf/yapf/yapflib/ |
D | verifier.py | 46 ast.parse(textwrap.dedent(code.lstrip('\n')).lstrip(), '<string>', 'exec') 57 code = textwrap.dedent(code.lstrip('\n')).lstrip() 75 textwrap.dedent(try_code.lstrip('\n')).lstrip(), '<string>', 'exec')
|
D | comment_splicer.py | 53 if child.prefix.lstrip().startswith('#'): 62 child_prefix = child.prefix.lstrip('\n') 75 comment_column += len(comment_prefix) - len(comment_prefix.lstrip()) 128 after_column = len(after[0]) - len(after[0].lstrip()) 174 value = comment_lines[0].lstrip() 179 len(comment_lines[0]) - len(comment_lines[0].lstrip())) 191 len(comment_prefix[rindex:].lstrip())) 231 while index < len(lines) and lines[index].lstrip().startswith('#'): 247 while index < len(lines) and not lines[index].lstrip():
|
D | continuation_splicer.py | 38 if node.prefix.lstrip().startswith('\\\n'):
|
D | format_token.py | 128 comment_lines = [s.lstrip() for s in self.value.splitlines()] 143 '\n' * newlines_before + self.whitespace_prefix.lstrip('\n'))
|
/third_party/ltp/tools/sparse/sparse-src/validation/ |
D | call-inlined.c | 12 static inline const char *lstrip(const char *str) in lstrip() function 17 const char *bas(void) { return lstrip("abc"); } in bas() 18 const char *qus(void) { return lstrip(messg); } in qus()
|
/third_party/mesa3d/src/mapi/new/ |
D | gen_gldispatch_mapi.py | 62 """.lstrip("\n")) 82 """.lstrip("\n") 157 """.lstrip("\n").format(f=func, retStr=retStr)
|
/third_party/skia/platform_tools/debugging/lldb/ |
D | skia.py | 57 return int(name.lstrip('[').rstrip(']')) 103 return int(name.lstrip('[').rstrip(']')) 152 return int(name.lstrip('[').rstrip(']'))
|
/third_party/mesa3d/bin/ |
D | gen_release_notes.py | 197 bug = line.lstrip('Closes:').strip() 202 issues.extend([b.strip().lstrip('#') for b in bug.split(',')]) 204 issues.append(bug.lstrip('#')) 246 yield l.lstrip(), False
|
/third_party/icu/icu4c/source/test/depstest/ |
D | dependencies.py | 130 line = line.lstrip() 154 name = line[9:].lstrip() 163 name = line[7:].lstrip()
|
/third_party/python/Lib/distutils/ |
D | text_file.py | 226 line = line.lstrip() 251 line = line.lstrip()
|
/third_party/python/Tools/clinic/ |
D | cpp.py | 121 line = before.rstrip() + ' ' + after.lstrip() 137 line = line[1:].lstrip()
|
/third_party/python/Lib/email/ |
D | quoprimime.py | 111 L.append(s.lstrip()) 115 L.append(s.lstrip())
|
D | header.py | 92 unencoded = unencoded.lstrip() 377 formatter.feed(self._continuation_ws, ' ' + line.lstrip(), 380 sline = line.lstrip()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/ |
D | abseil.podspec.gen.py | 72 return [path.lstrip("/").replace(":", "/") for path in paths] 140 SPEC_TEMPLATE).lstrip()
|
/third_party/mesa3d/src/egl/generate/ |
D | gen_egl_dispatch.py | 107 """.lstrip("\n")) 192 """).lstrip("\n").format(f=func, ef=eglFunc)
|
/third_party/python/Doc/includes/sqlite3/ |
D | complete_statement.py | 24 if buffer.lstrip().upper().startswith("SELECT"):
|
/third_party/python/Doc/tools/ |
D | rstlint.py | 114 if line.lstrip()[0] not in '+|' and \ 116 not line.lstrip().startswith(('.. function',
|
/third_party/rust/crates/clap/.github/workflows/ |
D | release-notes.py | 24 version = args.tag.lstrip("v")
|
/third_party/rust/crates/regex/scripts/ |
D | frequencies.py | 22 '''.lstrip()
|
/third_party/rust/crates/memchr/scripts/ |
D | make-byte-frequency-table | 22 '''.lstrip()
|
/third_party/nghttp2/doc/_exts/rubydomain/ |
D | rubydomain.py | 124 name_prefix = name_prefix[len(classname):].lstrip('.') 457 title = title.lstrip('.') # only has a meaning for the target 458 title = title.lstrip('#') 461 target = target.lstrip('~') # only has a meaning for the title
|
/third_party/python/Tools/scripts/ |
D | generate_opcode_h.py | 16 """.lstrip()
|
/third_party/python/Tools/peg_generator/pegen/ |
D | keywordgen.py | 36 '''.lstrip()
|
/third_party/python/Tools/c-analyzer/c_parser/parser/ |
D | _regexes.py | 13 text = '\n' + indent + text.lstrip()
|
/third_party/python/Lib/ |
D | textwrap.py | 262 if len(indent) + len(self.placeholder.lstrip()) > self.width: 339 lines.append(indent + self.placeholder.lstrip())
|
12345