HomeSort by relevance Sort by last modified time
    Searched refs:rstrip (Results 101 - 125 of 267) sorted by null

1 2 3 45 6 7 8 91011

  /external/v8/test/message/
testcfg.py 60 pattern = re.escape(line.rstrip() % env)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/
test_msvc9compiler.py 158 content = '\n'.join([line.rstrip() for line in f.readlines()])
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
multifile.py 92 marker = line.rstrip()
py_compile.py 150 filename = filename.rstrip('\n')
uu.py 119 out_file = hdrfields[2].rstrip()
UserString.py 117 def rstrip(self, chars=None): return self.__class__(self.data.rstrip(chars)) member in class:UserString
string.py 270 def rstrip(s, chars=None): function
271 """rstrip(s [,chars]) -> string
277 return s.rstrip(chars)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/
test_msvc9compiler.py 158 content = '\n'.join([line.rstrip() for line in f.readlines()])
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
multifile.py 92 marker = line.rstrip()
py_compile.py 150 filename = filename.rstrip('\n')
uu.py 119 out_file = hdrfields[2].rstrip()
UserString.py 117 def rstrip(self, chars=None): return self.__class__(self.data.rstrip(chars)) member in class:UserString
string.py 270 def rstrip(s, chars=None): function
271 """rstrip(s [,chars]) -> string
277 return s.rstrip(chars)
  /external/chromium_org/tools/code_coverage/
process_coverage.py 80 dash_root = dash_root.rstrip('/') # Remove trailing '/'
133 src_root = src_root.rstrip('/') # Remove trailing '/'
  /external/llvm/utils/
llvm-compilers-check 164 component = component.rstrip("2")
301 + str(line, "utf-8").rstrip())
456 srcdir = source + "/" + comp.rstrip("2")
464 "extra_" + comp_key.rstrip("2")
  /external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/
error_fixer.py 126 ending_space = len(iterator.string) - len(iterator.string.rstrip())
127 iterator.string = '%s=%s' % (iterator.string.rstrip(),
259 len(last_type.string.rstrip()))
  /external/chromium_org/third_party/closure_linter/closure_linter/
error_fixer.py 126 ending_space = len(iterator.string) - len(iterator.string.rstrip())
127 iterator.string = '%s=%s' % (iterator.string.rstrip(),
259 len(last_type.string.rstrip()))
  /external/chromium_org/chrome/app/policy/
syntax_check_policy_template_json.py 372 line = line.rstrip('\n')
377 line = line.rstrip()
  /external/chromium_org/tools/grit/grit/extern/
tclib.py 161 s = s0.rstrip()
389 s = s0.rstrip()
  /external/chromium_org/tools/mac/
symbolicate_crash.py 137 line = fd.readline().rstrip()
347 return stdout.rstrip().split('\n')
  /external/markdown/markdown/
blockprocessors.py 203 code.text = markdown.AtomicString('%s\n%s\n' % (code.text, block.rstrip()))
209 code.text = markdown.AtomicString('%s\n' % block.rstrip())
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/
feedparser.py 451 lhdr = EMPTYSTRING.join(lastvalue)[:-1].rstrip('\r\n')
486 self._cur[lastheader] = EMPTYSTRING.join(lastvalue).rstrip('\r\n')
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_bytes.py 432 self.assertEqual(b.rstrip(b'i'), b'mississipp')
433 self.assertEqual(b.rstrip(b'm'), b'mississippi')
434 self.assertEqual(b.rstrip(b'pi'), b'mississ')
435 self.assertEqual(b.rstrip(b'im'), b'mississipp')
436 self.assertEqual(b.rstrip(b'pim'), b'mississ')
442 self.assertEqual(b.rstrip(), b' \t\n\r\f\vabc')
447 self.assertEqual(self.type2test(b'abc').rstrip(memoryview(b'ac')), b'ab')
452 self.assertRaises(TypeError, self.type2test(b'abc').rstrip, u'b')
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/
feedparser.py 451 lhdr = EMPTYSTRING.join(lastvalue)[:-1].rstrip('\r\n')
486 self._cur[lastheader] = EMPTYSTRING.join(lastvalue).rstrip('\r\n')
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_bytes.py 432 self.assertEqual(b.rstrip(b'i'), b'mississipp')
433 self.assertEqual(b.rstrip(b'm'), b'mississippi')
434 self.assertEqual(b.rstrip(b'pi'), b'mississ')
435 self.assertEqual(b.rstrip(b'im'), b'mississipp')
436 self.assertEqual(b.rstrip(b'pim'), b'mississ')
442 self.assertEqual(b.rstrip(), b' \t\n\r\f\vabc')
447 self.assertEqual(self.type2test(b'abc').rstrip(memoryview(b'ac')), b'ab')
452 self.assertRaises(TypeError, self.type2test(b'abc').rstrip, u'b')
    [all...]

Completed in 1125 milliseconds

1 2 3 45 6 7 8 91011