Home
last modified time | relevance | path

Searched refs:redirects (Results 1 – 25 of 84) sorted by relevance

1234

/external/swiftshader/third_party/LLVM/utils/lit/lit/
DShCommands.py2 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:
DTestRunner.py80 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):
DTclUtil.py212 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/
DShCommands.py2 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:
DTestRunner.py221 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/
DShCommands.py2 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:
DShUtil.py214 redirects = []
237 redirects.append((op, arg))
239 return Command(args, redirects)
/external/swiftshader/third_party/LLVM/lib/Support/
DProgram.cpp28 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/
DProgram.cpp31 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/
DProgram.cpp31 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/
DProgram.inc182 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/
DProgram.inc182 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/
DProgram.inc182 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/
DProgram.h67 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/
DEMMAProperties.java192 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/
DProgram.inc156 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/
DHttpUrlFetcher.java43 …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/
Dgenerate_lib.py84 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/
DProgram.h100 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/
DProgram.h100 const StringRef **redirects = nullptr, ///< An optional array of pointers
130 const StringRef **redirects = nullptr, unsigned memoryLimit = 0,
/external/python/httplib2/doc/
Dlibhttplib2.rst92 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/
Dlibhttplib2.txt92 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/
Dlibhttplib2.tex76 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/
DProgram.inc253 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/
DProgram.inc253 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);

1234