/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):
|
D | ShUtil.py | 196 redirects = [] 219 redirects.append((op, arg)) 221 return Command(args, 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)
|
D | TestRunner.py | 633 redirects = [(0,), (1,), (2,)] 634 for (op, filename) in cmd.redirects: 636 redirects[2] = [filename, 'w', None] 638 redirects[2] = [filename, 'a', None] 640 redirects[2] = redirects[int(filename)] 642 redirects[1] = redirects[2] = [filename, 'w', None] 644 redirects[1] = [filename, 'w', None] 646 redirects[1] = [filename, 'a', None] 648 redirects[0] = [filename, 'r', None] 654 for (index, r) in enumerate(redirects):
|
/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/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/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/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/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 | 85 redirects = [] 155 redirects.append(( 159 if redirects: 160 redirects = sorted(redirects) 163 redirects = [template.format(f, t) for f, t in redirects] 167 redirect_file.write(''.join(redirects))
|
/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/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/toybox/toys/pending/ |
D | wget.c | 134 int sock, redirects = 10; in wget_main() local 148 for (;; redirects--) { in wget_main() 176 if (redirects < 0) error_exit("Too many redirects"); in wget_main()
|
/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 …]
|
D | index.rst | 19 caching, keep-alive, compression, redirects and many kinds of authentication.
|
/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 …]
|
D | index.txt | 19 caching, keep-alive, compression, redirects and many kinds of authentication.
|
/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);
|
/external/curl/docs/cmdline-opts/ |
D | location-trusted.d | 8 the site redirects you to a site to which you'll send your authentication info
|
D | max-redirs.d | 3 Help: Maximum number of redirects allowed
|