HomeSort by relevance Sort by last modified time
    Searched refs:rstrip (Results 1 - 25 of 272) sorted by null

1 2 3 4 5 6 7 8 91011

  /external/chromium_org/remoting/tools/
runclient.py 34 username = authinfo[0].rstrip()
35 authtoken = authinfo[1].rstrip()
  /external/valgrind/unittest/
match_output.py 8 line_re = line_re.rstrip()
15 line = line.rstrip()
  /external/chromium_org/third_party/jemalloc/chromium/
build-crt.py 15 line = line.rstrip()
  /external/chromium_org/third_party/jemalloc/vendor/
build-crt.py 15 line = line.rstrip()
  /external/chromium_org/tools/
find_depot_tools.py 17 if i.rstrip(os.sep).endswith('depot_tools'):
21 if i.rstrip(os.sep).endswith('depot_tools'):
22 sys.path.append(i.rstrip(os.sep))
  /external/llvm/utils/lint/
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/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/checkers/
cmake.py 118 line_content = line_content.rstrip('\n') # chr(10), newline
119 line_content = line_content.rstrip('\r') # chr(13), carriage return
120 line_content = line_content.rstrip('\x0c') # chr(12), form feed, ^L
121 stripped = line_content.rstrip()
common.py 55 lines[line_number] = lines[line_number].rstrip("\r")
  /external/chromium_org/tools/gyp/test/mac/
gyptest-sdkroot.py 34 sdk_path = proc.communicate()[0].rstrip('\n')
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
RstripExtension.py 9 ('Strip trailing whitespace', '<<do-rstrip>>'),
14 self.editwin.text.bind("<<do-rstrip>>", self.do_rstrip)
26 cut = len(txt.rstrip())
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
RstripExtension.py 9 ('Strip trailing whitespace', '<<do-rstrip>>'),
14 self.editwin.text.bind("<<do-rstrip>>", self.do_rstrip)
26 cut = len(txt.rstrip())
  /external/chromium_org/chrome/common/extensions/docs/server2/
example_zipper.py 12 self._base_path = base_path.rstrip('/')
32 redundant_prefix = '%s/' % base_dir.rstrip('/').rsplit('/', 1)[0]
  /external/llvm/docs/
conf.py 230 title = f.readline().rstrip('\n')
231 header = f.readline().rstrip('\n')
  /external/skia/tools/
find_mac_sdk.py 35 out.rstrip(), 'Platforms/MacOSX.platform/Developer/SDKs')
39 sdk_dir = os.path.join(out.rstrip(), 'SDKs')
sanitize_source_files.py 87 stripped_line = line.rstrip() + '\n'
120 file_content = file_content.rstrip()
  /external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/common/
htmlutil.py 66 if data.rstrip(' \t') != data.rstrip(' \t\n\r\f'):
67 data = data.rstrip(' \t')
  /external/chromium_org/third_party/closure_linter/closure_linter/common/
htmlutil.py 66 if data.rstrip(' \t') != data.rstrip(' \t\n\r\f'):
67 data = data.rstrip(' \t')
  /external/compiler-rt/lib/asan/scripts/
symbolize.py 88 function_name = p.stdout.readline().rstrip()
89 file_name = p.stdout.readline().rstrip()
110 print line.rstrip().encode('utf-8')
asan_symbolize.py 84 function_name = self.pipe.stdout.readline().rstrip()
87 file_name = self.pipe.stdout.readline().rstrip()
131 function_name = self.pipe.stdout.readline().rstrip()
132 file_name = self.pipe.stdout.readline().rstrip()
167 return self.r.readline().rstrip()
254 fragments = lines[0].rstrip().split()
351 print ' #' + str(self.frame_no) + ' ' + symbolized_frame.rstrip()
360 self.current_line = line.rstrip()
  /external/chromium_org/build/mac/
find_sdk.py 49 out.rstrip(), 'Platforms/MacOSX.platform/Developer/SDKs')
53 sdk_dir = os.path.join(out.rstrip(), 'SDKs')
  /external/chromium_org/tools/flakiness/
find_flakiness.py 66 print line.rstrip()
68 line = line.rstrip()
110 print line.rstrip()
  /external/chromium_org/tools/valgrind/asan/third_party/
asan_symbolize.py 82 function_name = self.pipe.stdout.readline().rstrip()
85 file_name = self.pipe.stdout.readline().rstrip()
129 function_name = self.pipe.stdout.readline().rstrip()
130 file_name = self.pipe.stdout.readline().rstrip()
168 atos_line = self.pipe.stdout.readline().rstrip()
229 fragments = lines[0].rstrip().split()
326 print ' #' + str(self.frame_no) + ' ' + symbolized_frame.rstrip()
335 self.current_line = line.rstrip()
  /bionic/libc/tools/
check-symbols.py 22 symbols.add(line.rstrip())
  /external/chromium_org/ppapi/native_client/tools/browser_tester/browsertester/
rpclistener.py 23 lines = [line.rstrip() for line in message.split('\n')]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/
import-w3c-performance-wg-tests 85 line = line.replace(to_find, replace_with).rstrip() + '\n'

Completed in 634 milliseconds

1 2 3 4 5 6 7 8 91011