Searched refs:import_path (Results 1 – 9 of 9) sorted by relevance
/external/libchrome/libchrome_tools/ |
D | update_libchrome.py | 113 if not any(path.startswith(import_path) for import_path in _IMPORT_LIST)] 116 for import_path in _IMPORT_LIST: 117 import_root = os.path.join(chromium_root, import_path) 121 candidates.append(import_path)
|
/external/mesa3d/src/intel/compiler/ |
D | brw_nir_trig_workarounds.py | 47 sys.path.insert(0, args.import_path)
|
/external/mesa3d/src/gallium/drivers/freedreno/ir3/ |
D | ir3_nir_trig.py | 36 sys.path.insert(0, args.import_path)
|
/external/protobuf/objectivec/DevTools/ |
D | pddm.py | 655 import_path = os.path.join(a_dir, name) 656 if not os.path.exists(import_path): 658 return open(import_path, 'r')
|
/external/pdfium/third_party/pymock/ |
D | mock.py | 1087 def _dot_lookup(thing, comp, import_path): argument 1091 __import__(import_path) 1097 import_path = components.pop(0) 1098 thing = __import__(import_path) 1101 import_path += ".%s" % comp 1102 thing = _dot_lookup(thing, comp, import_path)
|
/external/python/cpython2/Lib/test/ |
D | _mock_backport.py | 1040 def _dot_lookup(thing, comp, import_path): argument 1044 __import__(import_path) 1050 import_path = components.pop(0) 1051 thing = __import__(import_path) 1054 import_path += ".%s" % comp 1055 thing = _dot_lookup(thing, comp, import_path)
|
/external/python/cpython3/Lib/unittest/ |
D | mock.py | 1094 def _dot_lookup(thing, comp, import_path): argument 1098 __import__(import_path) 1104 import_path = components.pop(0) 1105 thing = __import__(import_path) 1108 import_path += ".%s" % comp 1109 thing = _dot_lookup(thing, comp, import_path)
|
/external/python/mock/mock/ |
D | mock.py | 1195 def _dot_lookup(thing, comp, import_path): argument 1199 __import__(import_path) 1205 import_path = components.pop(0) 1206 thing = __import__(import_path) 1209 import_path += ".%s" % comp 1210 thing = _dot_lookup(thing, comp, import_path)
|
/external/golang-protobuf/ |
D | README.md | 215 protoc --go_out=plugins=grpc,import_path=mypackage:. *.proto 230 - `import_path=foo/bar` - used as the package if no input files
|