Searched refs:rstrip (Results 1 – 25 of 594) sorted by relevance
12345678910>>...24
/external/u-boot/scripts/ |
D | mailmapper | 63 toplevel = toplevel.rstrip() 93 mail = '<' + mail.rstrip() 95 _, name = tmp.rstrip().split(None, 1) 122 config_mailmap = config_mailmap.rstrip()
|
/external/compiler-rt/lib/asan/scripts/ |
D | symbolize.py | 60 print line.rstrip().encode('utf-8') 75 function_name = p.stdout.readline().rstrip() 76 file_name = p.stdout.readline().rstrip() 97 print line.rstrip().encode('utf-8')
|
D | asan_symbolize.py | 106 function_name = self.pipe.stdout.readline().rstrip() 109 file_name = self.pipe.stdout.readline().rstrip() 163 function_name = self.pipe.stdout.readline().rstrip() 164 file_name = self.pipe.stdout.readline().rstrip() 205 return self.r.readline().rstrip() 288 fragments = lines[0].rstrip().split() 420 result.append(' #%s %s' % (str(self.frame_no), symbolized_frame.rstrip())) 431 return [line.rstrip()] 434 self.current_line = line.rstrip()
|
/external/python/cpython3/Lib/idlelib/idle_test/ |
D | test_rstrip.py | 3 from idlelib import rstrip 12 do_rstrip = rstrip.Rstrip(editor).do_rstrip 30 do_rstrip = rstrip.Rstrip(editor).do_rstrip
|
/external/u-boot/tools/buildman/ |
D | test.py | 219 errors[0].rstrip().replace('\n', '\nw+')) 229 errors[1].rstrip().replace('\n', '\n+')) 238 errors[1].rstrip().replace('\n', '\n-')) 242 errors[2].rstrip().replace('\n', '\nw+')) 250 expect = errors[3].rstrip().split('\n') 256 errors[2].rstrip().replace('\n', '\nw-')) 262 expect = errors[3].rstrip().split('\n') 268 errors[0].rstrip().replace('\n', '\nw-')) 274 expect_str = errors[4].rstrip().replace('%(basedir)s', '').split('\n')
|
/external/v8/tools/ |
D | find_depot_tools.py | 19 if i.rstrip(os.sep).endswith('depot_tools'): 25 if i.rstrip(os.sep).endswith('depot_tools'): 27 sys.path.insert(0, i.rstrip(os.sep))
|
/external/swiftshader/third_party/llvm-7.0/llvm/utils/lint/ |
D | common_lint.py | 23 length = len(line.rstrip('\n')) 45 if tab_re.match(line.rstrip('\n')): 66 if trailing_whitespace_re.match(line.rstrip('\n')):
|
/external/llvm/utils/lint/ |
D | common_lint.py | 23 length = len(line.rstrip('\n')) 45 if tab_re.match(line.rstrip('\n')): 66 if trailing_whitespace_re.match(line.rstrip('\n')):
|
/external/swiftshader/third_party/LLVM/utils/lint/ |
D | common_lint.py | 23 length = len(line.rstrip('\n')) 45 if tab_re.match(line.rstrip('\n')): 66 if trailing_whitespace_re.match(line.rstrip('\n')):
|
/external/python/cpython3/Tools/clinic/ |
D | cpp.py | 86 self.continuation = line[:-1].rstrip() + " " 121 line = before.rstrip() + ' ' + after.lstrip() 125 line = before.rstrip() 132 line = before.rstrip()
|
/external/u-boot/cmd/ |
D | ini.c | 39 static char *rstrip(char *s) in rstrip() function 136 start = lskip(rstrip(line)); in ini_parse() 173 name = rstrip(start); in ini_parse() 178 rstrip(value); in ini_parse()
|
/external/markdown/markdown/ |
D | preprocessors.py | 89 return tag.lstrip("<").rstrip(">"), i + len(p)-2 + len(left_tag) 90 return block.rstrip()[-len(left_tag)-2:-1].lower(), len(block) 151 if block.rstrip().endswith(">") \ 160 and not block.rstrip().endswith(">"):
|
/external/autotest/client/site_tests/kernel_Delay/ |
D | kernel_Delay.py | 100 return [self._get_file(p).rstrip() for p in self._governor_paths] 111 return self._get_file(self.QUIET_GOVERNOR_PATH).rstrip() 161 governor = self._get_file(p).rstrip() 187 line = line.rstrip()
|
/external/bcc/scripts/ |
D | git-clang-format | 283 filename = match.group(1).rstrip('\r\n') 383 return stdout.rstrip('\r\n') 430 new_tree).rstrip('\0').split('\0') 468 print >>sys.stderr, stderr.rstrip() 470 stdout = stdout.rstrip('\r\n') 475 print >>sys.stderr, stderr.rstrip()
|
/external/iptables/ |
D | iptables-test.py | 192 chain_array = line.rstrip()[1:].split(",") 197 external_cmd = line.rstrip()[1:] 202 table = line.rstrip()[1:] 224 res = item[2].rstrip()
|
/external/yapf/yapf/yapflib/ |
D | comment_splicer.py | 164 if value.rstrip('\n'): 171 value=value.rstrip('\n'), 177 rindex = (0 if '\n' not in comment_prefix.rstrip() else 178 comment_prefix.rstrip().rindex('\n') + 1)
|
/external/clang/tools/clang-format/ |
D | git-clang-format | 305 filename = match.group(1).rstrip('\r\n') 425 return stdout.rstrip('\r\n') 478 new_tree).rstrip('\0').split('\0') 516 print >>sys.stderr, stderr.rstrip() 518 stdout = stdout.rstrip('\r\n') 523 print >>sys.stderr, stderr.rstrip()
|
/external/wpa_supplicant_8/wpa_supplicant/examples/ |
D | wps-nfc.py | 84 return ret.rstrip().decode("hex") 94 return ret.rstrip().decode("hex") 104 return ret.rstrip().decode("hex") 113 return ret.rstrip().decode("hex") 121 res = wpas.request("NFC_GET_HANDOVER_SEL NDEF WPS-CR").rstrip() 123 res = wpas.request("NFC_GET_HANDOVER_SEL NDEF WPS-CR " + uuid).rstrip()
|
/external/selinux/mcstrans/share/util/ |
D | mlscolor-test | 19 line = line.rstrip('\n') 32 colors = colors.rstrip()
|
/external/python/cpython3/Lib/distutils/tests/ |
D | test_log.py | 32 self.assertEqual(stdout.read().rstrip(), 37 self.assertEqual(stderr.read().rstrip(),
|
/external/python/cpython3/Lib/test/libregrtest/ |
D | runtest_mp.py | 126 self.output.put((test, stdout.rstrip(), stderr.rstrip(), 137 self.output.put((test, stdout.rstrip(), stderr.rstrip(),
|
/external/python/cpython3/Lib/html/ |
D | __init__.py | 96 num = int(s[2:].rstrip(';'), 16) 98 num = int(s[1:].rstrip(';'))
|
/external/tensorflow/tensorflow/python/ops/ |
D | summary_op_util.py | 99 tag = scope.rstrip('/') 102 tag = '{}/{}'.format(family, scope.rstrip('/'))
|
/external/clang/docs/ |
D | conf.py | 232 title = f.readline().rstrip('\n') 233 header = f.readline().rstrip('\n')
|
/external/python/cpython3/Lib/test/test_asyncio/ |
D | test_windows_utils.py | 112 out = ovout.getresult().rstrip() 113 err = overr.getresult().rstrip() 118 self.assertTrue(msg.upper().rstrip().startswith(out))
|
12345678910>>...24