Home | History | Annotate | Download | only in tests

Lines Matching refs:GetOutDir

140 def GetOutDir():
143 if GetOutDir.cache is None:
146 GetOutDir.cache = os.environ['ANDROID_HOST_OUT']
150 GetOutDir.cache = subprocess.check_output(['bash', '-c',
155 GetOutDir.cache = GetOutDir.cache.strip()
156 return GetOutDir.cache
159 # Declare/define cache variable for GetOutDir to cache results
161 GetOutDir.cache = None
168 '-I ../../../../../external/clang/lib/Headers/') % GetOutDir()