Searched refs:USER_BASE (Results 1 - 6 of 6) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
H A Dsite.py76 USER_BASE = None variable
236 variable ``USER_BASE`` is not initialized yet, this function will also set
239 global USER_BASE
240 if USER_BASE is not None:
241 return USER_BASE
243 USER_BASE = get_config_var('userbase')
244 return USER_BASE
253 user_base = getuserbase() # this will also set USER_BASE
277 # this call will also make sure USER_BASE and USER_SITE are set
570 With arguments print the value of USER_BASE an
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Lib/
H A Dsite.py83 USER_BASE = None variable
231 variable ``USER_BASE`` is not initialized yet, this function will also set
234 global USER_BASE
235 if USER_BASE is not None:
236 return USER_BASE
238 USER_BASE = get_config_var('userbase')
239 return USER_BASE
248 user_base = getuserbase() # this will also set USER_BASE
266 # this call will also make sure USER_BASE and USER_SITE are set
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Lib/
H A Dsite.py85 USER_BASE = None variable
233 variable ``USER_BASE`` is not initialized yet, this function will also set
236 global USER_BASE
237 if USER_BASE is not None:
238 return USER_BASE
240 USER_BASE = get_config_var('userbase')
241 return USER_BASE
250 user_base = getuserbase() # this will also set USER_BASE
269 # this call will also make sure USER_BASE and USER_SITE are set
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
H A Dtest_site.py43 self.old_base = site.USER_BASE
51 site.USER_BASE = self.old_base
191 'import sys, site; sys.exit(site.USER_BASE.startswith("/tmp"))'],
196 site.USER_BASE = None
199 # the call sets site.USER_BASE
200 self.assertEqual(site.USER_BASE, user_base)
203 site.USER_BASE = None
214 site.USER_BASE = None
217 # the call sets USER_BASE *and* USER_SITE
219 self.assertTrue(user_site.startswith(site.USER_BASE), user_sit
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/command/
H A Dbuild_ext.py13 from site import USER_BASE, USER_SITE namespace
270 user_include = os.path.join(USER_BASE, "include")
271 user_lib = os.path.join(USER_BASE, "lib")
H A Dinstall.py21 from site import USER_BASE namespace
189 self.install_userbase = USER_BASE

Completed in 61 milliseconds