/external/swiftshader/third_party/LLVM/utils/lit/lit/ |
D | ShCommands.py | 2 def __init__(self, args, redirects): argument 4 self.redirects = list(redirects) 7 return 'Command(%r, %r)' % (self.args, self.redirects) 13 return cmp((self.args, self.redirects), 14 (other.args, other.redirects)) 32 for r in self.redirects:
|
D | TestRunner.py | 80 redirects = [(0,), (1,), (2,)] 81 for r in j.redirects: 83 redirects[2] = [r[1], 'w', None] 85 redirects[2] = [r[1], 'a', None] 87 redirects[2] = redirects[int(r[1])] 89 redirects[1] = redirects[2] = [r[1], 'w', None] 91 redirects[1] = [r[1], 'w', None] 93 redirects[1] = [r[1], 'a', None] 95 redirects[0] = [r[1], 'r', None] 101 for index,r in enumerate(redirects):
|
D | TclUtil.py | 212 commands[-1].redirects.insert(0, (('>&',2),'1')) 215 commands[-1].redirects.append(self.parse_redirect(arg, 4)) 217 commands[-1].redirects.append(self.parse_redirect(arg, 3)) 219 commands[-1].redirects.append(self.parse_redirect(arg, 2)) 221 commands[-1].redirects.append(self.parse_redirect(arg, 1))
|
/external/llvm/utils/lit/lit/ |
D | ShCommands.py | 2 def __init__(self, args, redirects): argument 4 self.redirects = list(redirects) 7 return 'Command(%r, %r)' % (self.args, self.redirects) 13 return ((self.args, self.redirects) == 14 (other.args, other.redirects)) 32 for r in self.redirects:
|
D | TestRunner.py | 221 redirects = [(0,), (1,), (2,)] 222 for r in j.redirects: 224 redirects[2] = [r[1], 'w', None] 226 redirects[2] = [r[1], 'a', None] 228 redirects[2] = redirects[int(r[1])] 230 redirects[1] = redirects[2] = [r[1], 'w', None] 232 redirects[1] = [r[1], 'w', None] 234 redirects[1] = [r[1], 'a', None] 236 redirects[0] = [r[1], 'r', None] 242 for index,r in enumerate(redirects):
|
/external/swiftshader/third_party/llvm-7.0/llvm/utils/lit/lit/ |
D | ShCommands.py | 2 def __init__(self, args, redirects): argument 4 self.redirects = list(redirects) 7 return 'Command(%r, %r)' % (self.args, self.redirects) 13 return ((self.args, self.redirects) == 14 (other.args, other.redirects)) 32 for r in self.redirects:
|
D | ShUtil.py | 214 redirects = [] 237 redirects.append((op, arg)) 239 return Command(args, redirects)
|
/external/swiftshader/third_party/LLVM/lib/Support/ |
D | Program.cpp | 28 const Path** redirects, in ExecuteAndWait() argument 33 if (prg.Execute(path, args, envp, redirects, memoryLimit, ErrMsg)) in ExecuteAndWait() 43 const Path** redirects, in ExecuteNoWait() argument 47 prg.Execute(path, args, envp, redirects, memoryLimit, ErrMsg); in ExecuteNoWait()
|
/external/llvm/lib/Support/ |
D | Program.cpp | 31 const StringRef **redirects, unsigned secondsToWait, in ExecuteAndWait() argument 35 if (Execute(PI, Program, args, envp, redirects, memoryLimit, ErrMsg)) { in ExecuteAndWait() 50 const char **envp, const StringRef **redirects, in ExecuteNoWait() argument 56 if (!Execute(PI, Program, args, envp, redirects, memoryLimit, ErrMsg)) in ExecuteNoWait()
|
/external/swiftshader/third_party/llvm-subzero/lib/Support/ |
D | Program.cpp | 31 const StringRef **redirects, unsigned secondsToWait, in ExecuteAndWait() argument 35 if (Execute(PI, Program, args, envp, redirects, memoryLimit, ErrMsg)) { in ExecuteAndWait() 50 const char **envp, const StringRef **redirects, in ExecuteNoWait() argument 56 if (!Execute(PI, Program, args, envp, redirects, memoryLimit, ErrMsg)) in ExecuteNoWait()
|
/external/swiftshader/third_party/LLVM/lib/Support/Unix/ |
D | Program.inc | 182 const Path **redirects, unsigned memoryLimit, 191 if (redirects) { 196 if (RedirectIO_PS(redirects[0], 0, ErrMsg, FileActions) || 197 RedirectIO_PS(redirects[1], 1, ErrMsg, FileActions)) 199 if (redirects[1] == 0 || redirects[2] == 0 || 200 *redirects[1] != *redirects[2]) { 202 if (RedirectIO_PS(redirects[2], 2, ErrMsg, FileActions)) return false; 247 if (redirects) { 249 if (RedirectIO(redirects[0], 0, ErrMsg)) { return false; } 251 if (RedirectIO(redirects[1], 1, ErrMsg)) { return false; } [all …]
|
/external/swiftshader/third_party/llvm-subzero/lib/Support/Unix/ |
D | Program.inc | 182 const char **envp, const StringRef **redirects, 203 if (redirects) { 206 if (redirects[I]) { 207 RedirectsStorage[I] = *redirects[I]; 219 if (redirects[1] == nullptr || redirects[2] == nullptr || 220 *redirects[1] != *redirects[2]) { 270 if (redirects) { 272 if (RedirectIO(redirects[0], 0, ErrMsg)) { return false; } 274 if (RedirectIO(redirects[1], 1, ErrMsg)) { return false; } 275 if (redirects[1] && redirects[2] && [all …]
|
/external/llvm/lib/Support/Unix/ |
D | Program.inc | 182 const char **envp, const StringRef **redirects, 203 if (redirects) { 206 if (redirects[I]) { 207 RedirectsStorage[I] = *redirects[I]; 219 if (redirects[1] == nullptr || redirects[2] == nullptr || 220 *redirects[1] != *redirects[2]) { 270 if (redirects) { 272 if (RedirectIO(redirects[0], 0, ErrMsg)) { return false; } 274 if (RedirectIO(redirects[1], 1, ErrMsg)) { return false; } 275 if (redirects[1] && redirects[2] && [all …]
|
/external/swiftshader/third_party/LLVM/include/llvm/Support/ |
D | Program.h | 67 const sys::Path** redirects = 0, ///< An optional array of pointers to 138 const sys::Path** redirects = 0, 148 const sys::Path** redirects = 0,
|
/external/emma/core/java12/com/vladium/emma/ |
D | EMMAProperties.java | 192 final Map redirects = new HashMap (); 193 redirects.put (IReportProperties.PREFIX.concat (IReportProperties.OUT_ENCODING), in IReportProperties.PREFIX.concat() 195 redirects.put (IReportProperties.PREFIX.concat (IReportProperties.OUT_DIR), in IReportProperties.PREFIX.concat() 198 SYSTEM_PROPERTY_REDIRECTS = Collections.unmodifiableMap (redirects);
|
/external/swiftshader/third_party/LLVM/lib/Support/Windows/ |
D | Program.inc | 156 const Path** redirects, 242 if (redirects) { 245 si.hStdInput = RedirectIO(redirects[0], 0, ErrMsg); 250 si.hStdOutput = RedirectIO(redirects[1], 1, ErrMsg); 256 if (redirects[1] && redirects[2] && *(redirects[1]) == *(redirects[2])) { 264 si.hStdError = RedirectIO(redirects[2], 2, ErrMsg);
|
/external/glide/library/src/main/java/com/bumptech/glide/load/data/ |
D | HttpUrlFetcher.java | 43 …private InputStream loadDataWithRedirects(URL url, int redirects, URL lastUrl) throws IOException { in loadDataWithRedirects() argument 44 if (redirects >= MAXIMUM_REDIRECTS) { in loadDataWithRedirects() 78 return loadDataWithRedirects(redirectUrl, redirects + 1, url); in loadDataWithRedirects()
|
/external/tensorflow/tensorflow/tools/docs/ |
D | generate_lib.py | 84 redirects = [] 153 redirects.append(( 157 if redirects: 158 redirects = sorted(redirects) 161 redirects = [template.format(f, t) for f, t in redirects] 165 redirect_file.write(''.join(redirects))
|
/external/llvm/include/llvm/Support/ |
D | Program.h | 100 const StringRef **redirects = nullptr, ///< An optional array of pointers 130 const StringRef **redirects = nullptr, unsigned memoryLimit = 0,
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/ |
D | Program.h | 100 const StringRef **redirects = nullptr, ///< An optional array of pointers 130 const StringRef **redirects = nullptr, unsigned memoryLimit = 0,
|
/external/python/httplib2/doc/ |
D | libhttplib2.rst | 92 Automatically follows 3XX redirects on GETs. 292 If ``True``, which is the default, safe redirects are followed, where safe means 294 being redirected. If ``False`` then no redirects are followed. Note that a False 302 If ``False``, which is the default, only safe redirects are followed, where safe 304 is being redirected. If ``True`` then all redirects are followed. Note that a 313 stripped from redirects. If ``True`` then Authorization: headers are left 314 in place when following redirects. This parameter only applies if following 315 redirects is turned on. Note that turning this on could cause your credentials 401 If redirects are followed then the :class:`Response` object returned is just for 408 contains the URI that was ultimately requested. This is useful if redirects were [all …]
|
/external/python/httplib2/doc/html/_sources/ |
D | libhttplib2.txt | 92 Automatically follows 3XX redirects on GETs. 292 If ``True``, which is the default, safe redirects are followed, where safe means 294 being redirected. If ``False`` then no redirects are followed. Note that a False 302 If ``False``, which is the default, only safe redirects are followed, where safe 304 is being redirected. If ``True`` then all redirects are followed. Note that a 313 stripped from redirects. If ``True`` then Authorization: headers are left 314 in place when following redirects. This parameter only applies if following 315 redirects is turned on. Note that turning this on could cause your credentials 401 If redirects are followed then the :class:`Response` object returned is just for 408 contains the URI that was ultimately requested. This is useful if redirects were [all …]
|
/external/python/httplib2/ |
D | libhttplib2.tex | 76 Automatically follows 3XX redirects on GETs. 258 If \code{True}, which is the default, safe redirects are followed, where 260 URI to which it is being redirected. If \code{False} then no redirects are followed. 268 stripped from redirects. If \code{True} then Authorization: headers are left 269 in place when following redirects. This parameter only applies if following 270 redirects is turned on. Note that turning this on could cause your credentials 275 If \code{False}, which is the default, only safe redirects are followed, where 277 URI to which it is being redirected. If \code{True} then all redirects are followed. 352 If redirects are followed then the \class{Response} object returned 361 redirects were encountered, you can determine the ultimate URI that [all …]
|
/external/swiftshader/third_party/llvm-subzero/lib/Support/Windows/ |
D | Program.inc | 253 const char **envp, const StringRef **redirects, 303 if (redirects) { 306 si.hStdInput = RedirectIO(redirects[0], 0, ErrMsg); 311 si.hStdOutput = RedirectIO(redirects[1], 1, ErrMsg); 317 if (redirects[1] && redirects[2] && *(redirects[1]) == *(redirects[2])) { 330 si.hStdError = RedirectIO(redirects[2], 2, ErrMsg);
|
/external/llvm/lib/Support/Windows/ |
D | Program.inc | 253 const char **envp, const StringRef **redirects, 303 if (redirects) { 306 si.hStdInput = RedirectIO(redirects[0], 0, ErrMsg); 311 si.hStdOutput = RedirectIO(redirects[1], 1, ErrMsg); 317 if (redirects[1] && redirects[2] && *(redirects[1]) == *(redirects[2])) { 330 si.hStdError = RedirectIO(redirects[2], 2, ErrMsg);
|