/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_macpath.py | 33 splitext = macpath.splitext 34 self.assertEqual(splitext(":foo.ext"), (':foo', '.ext')) 35 self.assertEqual(splitext("foo:foo.ext"), ('foo:foo', '.ext')) 36 self.assertEqual(splitext(".ext"), ('.ext', '')) 37 self.assertEqual(splitext("foo.ext:foo"), ('foo.ext:foo', '')) 38 self.assertEqual(splitext(":foo.ext:"), (':foo.ext:', '')) 39 self.assertEqual(splitext(""), ('', '')) 40 self.assertEqual(splitext("foo.bar.ext"), ('foo.bar', '.ext'))
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_macpath.py | 33 splitext = macpath.splitext 34 self.assertEqual(splitext(":foo.ext"), (':foo', '.ext')) 35 self.assertEqual(splitext("foo:foo.ext"), ('foo:foo', '.ext')) 36 self.assertEqual(splitext(".ext"), ('.ext', '')) 37 self.assertEqual(splitext("foo.ext:foo"), ('foo.ext:foo', '')) 38 self.assertEqual(splitext(":foo.ext:"), (':foo.ext:', '')) 39 self.assertEqual(splitext(""), ('', '')) 40 self.assertEqual(splitext("foo.bar.ext"), ('foo.bar', '.ext'))
|
/external/libcxx/test/ |
makemake.py | 23 out_name = os.path.splitext(path)[0] # trim .cpp 24 out_name = os.path.splitext(out_name)[0] # trim .pass
|
/external/chromium_org/third_party/WebKit/Source/build/scripts/ |
make_mediaquery_tokenizer_codepoints.py | 12 module_pyname = os.path.splitext(module_basename)[0] + '.py'
|
/external/chromium_org/tools/gyp/test/standalone/ |
gyptest-standalone.py | 24 if os.path.splitext(__file__)[0] in file:
|
/external/chromium_org/tools/ |
boilerplate.py | 32 _, ext = os.path.splitext(filename) 51 base, _ = os.path.splitext(filename) 77 _, ext = os.path.splitext(f)
|
/external/antlr/antlr-3.4/runtime/Python/tests/ |
t019lexer.py | 12 inputPath = os.path.splitext(__file__)[0] + '.input'
|
t018llstar.py | 15 inputPath = os.path.splitext(__file__)[0] + '.input' 24 outputPath = os.path.splitext(__file__)[0] + '.output'
|
t020fuzzy.py | 15 inputPath = os.path.splitext(__file__)[0] + '.input' 27 outputPath = os.path.splitext(__file__)[0] + '.output'
|
/external/chromium_org/chrome/test/chromedriver/ |
embed_user_data_dir_in_cpp.py | 24 title = os.path.basename(os.path.splitext(data_file)[0]).title()
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/ |
fileset.py | 63 def splitext(self): member in class:FileSetFileHandle 64 return self._filesystem.splitext(self.name())
|
logutils.py | 54 path = os.path.splitext(path)[0] # Remove the extension, if any. 123 logger_name = os.path.splitext(basename)[0]
|
/external/chromium_org/tools/telemetry/telemetry/core/ |
discover.py | 34 if os.path.splitext(filename)[1] != '.py': 42 module_name = re.sub(r'[/\\]', '.', os.path.splitext(module_rel_path)[0]) 129 root_name, ext_name = os.path.splitext(file_path)
|
/external/chromium_org/build/android/pylib/instrumentation/ |
test_package.py | 20 self._apk_name = os.path.splitext(os.path.basename(apk_path))[0]
|
/external/chromium_org/mojo/public/tools/bindings/pylib/mojom_tests/parse/ |
run_translate.py | 31 os.path.splitext(os.path.basename(filename))[0])
|
/external/chromium_org/remoting/tools/ |
jscompile.py | 32 name, extension = os.path.splitext(file)
|
/external/chromium_org/tools/gyp/test/small/ |
gyptest-small.py | 40 name = os.path.splitext(os.path.split(filename)[1])[0]
|
/external/chromium_org/tools/gyp/test/win/linker-flags/ |
update_pgd.py | 31 (pgd_basename, _) = os.path.splitext(os.path.basename(pgd_file))
|
/external/chromium_org/native_client_sdk/src/tools/ |
create_html.py | 118 basename, ext = os.path.splitext(filename) 133 basename = os.path.splitext(os.path.basename(htmlfile))[0] 136 nmf = os.path.splitext(htmlfile)[0] + '.nmf'
|
/external/chromium_org/tools/git/ |
move_source_file.py | 40 return os.path.splitext(path)[1] in HANDLED_EXTENSIONS 56 dest_extension = os.path.splitext(to_path)[1] 80 if os.path.splitext(from_path)[1] in ['.h', '.hh']:
|
/external/chromium_org/content/test/gpu/page_sets/ |
PRESUBMIT.py | 36 _, extension = os.path.splitext(hash_path) 71 file_paths.append(os.path.splitext(hash_path)[0])
|
/external/chromium_org/tools/perf/page_sets/ |
PRESUBMIT.py | 34 _, extension = os.path.splitext(hash_path) 69 file_path, _ = os.path.splitext(hash_path)
|
/external/chromium-trace/trace-viewer/build/ |
generate_deps_js_contents.py | 19 os.path.splitext(x)[1] == ".js"]
|
generate_template_contents.py | 19 os.path.splitext(x)[1] == ".html"]
|
/external/chromium_org/build/android/pylib/host_driven/ |
tests_annotations.py | 25 module_name = os.path.splitext(os.path.basename(
|