/external/python/cpython3/Lib/distutils/tests/ |
D | test_util.py | 174 def _join(path): function 176 os.path.join = _join 183 def _join(*path): function 185 os.path.join = _join 201 def _join(*path): function 203 os.path.join = _join 220 def _join(*path): function 222 os.path.join = _join
|
/external/python/cpython3/Tools/c-analyzer/c_analyzer/common/ |
D | files.py | 45 _join=os.path.join, argument 56 for filename in _glob(_join(_escape(root), f'*{suffix}')): 58 for filename in _glob(_join(_escape(root), f'**/*{suffix}')):
|
/external/bazelbuild-rules_android/rules/ |
D | path.bzl | 29 def _join(path_segments): 79 return _join(_normalize_path_fragments(relative_path_fragments)) 93 return _join(fragments) 97 join = _join,
|
/external/pigweed/pw_env_setup/py/pw_env_setup/ |
D | batch_visitor.py | 66 def _join(self, *args): member in BatchVisitor 73 value = self._join(value, '%{}%'.format(prepend.name)) 79 value = self._join('%{}%'.format(append.name), value)
|
D | shell_visitor.py | 91 def _join(self, *args): member in ShellVisitor 98 value = self._join(value, '${}'.format(prepend.name)) 104 value = self._join('${}'.format(append.name), value)
|
D | environment.py | 164 self._join = join 178 self._join = join 285 self._join = Join(pathsep) 337 self._actions.append(Append(name, value, self._join)) 348 self._actions.append(Prepend(name, value, self._join))
|
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/deser/filter/ |
D | ProblemHandlerLocation1440Test.java | 51 final String path = _join(".", pathList) + "#" + propertyName; in handleUnknownProperty() 59 static String _join(String sep, Collection<String> parts) { in _join() method in ProblemHandlerLocation1440Test.DeserializationProblemLogger
|
/external/python/cpython3/Lib/unittest/test/ |
D | test_program.py | 382 def _join(name): function 384 argv = ['progname', _join('foo/bar/baz.py'), _join('green\\red.py')]
|
/external/python/cpython2/Lib/lib-tk/ |
D | ttk.py | 29 from Tkinter import _flatten, _join, _stringify, _splitdict 56 value = _join(value) 127 imagespec = _join(_mapdict_values(args[1:])) 136 statemap = _join(_mapdict_values(args[2:]))
|
D | Tkinter.py | 65 def _join(value): function 77 value = '{%s}' % _join(value)
|
/external/python/cpython3/Lib/tkinter/ |
D | ttk.py | 29 from tkinter import _flatten, _join, _stringify, _splitdict 56 value = _join(value) 123 imagespec = _join(_mapdict_values(args[1:])) 132 statemap = _join(_mapdict_values(args[2:]))
|
D | __init__.py | 56 def _join(value): function 69 value = '{%s}' % _join(value)
|
/external/starlark-go/starlark/testdata/ |
D | paths.star | 78 def _join(path, *others): 245 join = _join,
|
/external/python/cpython2/Lib/lib-tk/test/test_tkinter/ |
D | test_images.py | 120 return tkinter._join(args)
|
/external/python/cpython3/Lib/tkinter/test/test_tkinter/ |
D | test_images.py | 119 return tkinter._join(args)
|
/external/python/cpython3/Lib/tkinter/test/ |
D | widget_tests.py | 58 expected = tkinter._join(expected)
|
/external/python/cpython2/Lib/lib-tk/test/ |
D | widget_tests.py | 63 expected = tkinter._join(expected)
|
/external/python/cpython2/Lib/test/ |
D | test_tcl.py | 665 join = tkinter._join
|
/external/python/cpython3/Lib/test/ |
D | test_tcl.py | 663 join = tkinter._join
|