HomeSort by relevance Sort by last modified time
    Searched refs:_PROJECT_BASE (Results 1 - 4 of 4) sorted by null

  /external/python/cpython2/Lib/
sysconfig.py 104 _PROJECT_BASE = os.path.dirname(_safe_realpath(sys.executable))
108 _PROJECT_BASE = _safe_realpath(os.getcwd())
110 if os.name == "nt" and "pcbuild" in _PROJECT_BASE[-8:].lower():
111 _PROJECT_BASE = _safe_realpath(os.path.join(_PROJECT_BASE, pardir))
113 if os.name == "nt" and "\\pc\\v" in _PROJECT_BASE[-10:].lower():
114 _PROJECT_BASE = _safe_realpath(os.path.join(_PROJECT_BASE, pardir, pardir))
117 and os.path.basename(os.path.dirname(os.path.dirname(_PROJECT_BASE))).lower() == "pc"
118 and os.path.basename(os.path.dirname(_PROJECT_BASE)).lower() == "vs9.0")
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
sysconfig.py 104 _PROJECT_BASE = os.path.dirname(_safe_realpath(sys.executable))
108 _PROJECT_BASE = _safe_realpath(os.getcwd())
110 if os.name == "nt" and "pcbuild" in _PROJECT_BASE[-8:].lower():
111 _PROJECT_BASE = _safe_realpath(os.path.join(_PROJECT_BASE, pardir))
113 if os.name == "nt" and "\\pc\\v" in _PROJECT_BASE[-10:].lower():
114 _PROJECT_BASE = _safe_realpath(os.path.join(_PROJECT_BASE, pardir, pardir))
116 if os.name == "nt" and "\\pcbuild\\amd64" in _PROJECT_BASE[-14:].lower():
117 _PROJECT_BASE = _safe_realpath(os.path.join(_PROJECT_BASE, pardir, pardir))
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
sysconfig.py 104 _PROJECT_BASE = os.path.dirname(_safe_realpath(sys.executable))
108 _PROJECT_BASE = _safe_realpath(os.getcwd())
110 if os.name == "nt" and "pcbuild" in _PROJECT_BASE[-8:].lower():
111 _PROJECT_BASE = _safe_realpath(os.path.join(_PROJECT_BASE, pardir))
113 if os.name == "nt" and "\\pc\\v" in _PROJECT_BASE[-10:].lower():
114 _PROJECT_BASE = _safe_realpath(os.path.join(_PROJECT_BASE, pardir, pardir))
116 if os.name == "nt" and "\\pcbuild\\amd64" in _PROJECT_BASE[-14:].lower():
117 _PROJECT_BASE = _safe_realpath(os.path.join(_PROJECT_BASE, pardir, pardir))
    [all...]
  /external/python/cpython3/Lib/
sysconfig.py 107 _PROJECT_BASE = os.path.dirname(_safe_realpath(sys.executable))
111 _PROJECT_BASE = _safe_realpath(os.getcwd())
114 _PROJECT_BASE.lower().endswith(('\\pcbuild\\win32', '\\pcbuild\\amd64'))):
115 _PROJECT_BASE = _safe_realpath(os.path.join(_PROJECT_BASE, pardir, pardir))
119 _PROJECT_BASE = _safe_realpath(os.environ["_PYTHON_PROJECT_BASE"])
135 _PROJECT_BASE = _fix_pcbuild(_PROJECT_BASE)
141 return _is_python_source_dir(_PROJECT_BASE)
336 return os.path.join(_sys_home or _PROJECT_BASE, "Makefile"
    [all...]

Completed in 723 milliseconds