Home
last modified time | relevance | path

Searched refs:try (Results 1 – 25 of 1927) sorted by relevance

12345678910>>...78

/third_party/skia/third_party/externals/angle2/infra/config/generated/
Dcommit-queue.cfg30 name: "angle/try/android-arm-compile"
33 name: "angle/try/android-arm-dbg-compile"
36 name: "angle/try/android-arm64-dbg-compile"
39 name: "angle/try/android-arm64-test"
42 name: "angle/try/linux-asan-test"
45 name: "angle/try/linux-dbg-compile"
48 name: "angle/try/linux-test"
51 name: "angle/try/linux-trace"
58 name: "angle/try/mac-dbg-compile"
61 name: "angle/try/mac-test"
[all …]
Dluci-milo.cfg160 id: "try"
163 name: "buildbucket/luci.angle.try/android-arm-compile"
166 name: "buildbucket/luci.angle.try/android-arm-dbg-compile"
169 name: "buildbucket/luci.angle.try/android-arm64-dbg-compile"
172 name: "buildbucket/luci.angle.try/android-arm64-test"
175 name: "buildbucket/luci.angle.try/linux-asan-test"
178 name: "buildbucket/luci.angle.try/linux-tsan-test"
181 name: "buildbucket/luci.angle.try/linux-ubsan-test"
184 name: "buildbucket/luci.angle.try/linux-dbg-compile"
187 name: "buildbucket/luci.angle.try/linux-test"
[all …]
/third_party/toybox/toys/posix/
Dcp.c112 int (*callback)(struct dirtree *try);
126 static int cp_node(struct dirtree *try) in cp_node() argument
128 int fdout = -1, cfd = try->parent ? try->parent->extra : AT_FDCWD, in cp_node()
129 tfd = dirtree_parentfd(try); in cp_node()
131 char *catch = try->parent ? try->name : TT.destname, *err = "%s"; in cp_node()
134 if (!dirtree_notdotdot(try)) return 0; in cp_node()
137 if (S_ISDIR(try->st.st_mode) && try->again) { in cp_node()
138 fdout = try->extra; in cp_node()
143 if (S_ISLNK(try->st.st_mode) && (flags & FLAG_d)) flags |= FLAG_r; in cp_node()
147 if ((TT.top.st_dev == try->st.st_dev && TT.top.st_ino == try->st.st_ino in cp_node()
[all …]
Drm.c26 static int do_rm(struct dirtree *try) in do_rm() argument
28 int fd=dirtree_parentfd(try), dir=S_ISDIR(try->st.st_mode), or=0, using=0; in do_rm()
31 if (isdotdot(try->name)) return 0; in do_rm()
39 && (!S_ISLNK(try->st.st_mode) && faccessat(fd, try->name, W_OK, 0))) or++; in do_rm()
44 if (!(dir && try->again) && ((or && isatty(0)) || FLAG(i))) { in do_rm()
45 char *s = dirtree_path(try, 0); in do_rm()
57 if (faccessat(fd, try->name, R_OK, 0)) { in do_rm()
58 if (FLAG(f)) wfchmodat(fd, try->name, 0700); in do_rm()
61 if (!try->again) return DIRTREE_COMEAGAIN; in do_rm()
62 if (try->symlink) goto skip; in do_rm()
[all …]
/third_party/toybox/porting/liteos_a/toys/posix/
Dcp.c96 int (*callback)(struct dirtree *try);
110 static int cp_node(struct dirtree *try) in cp_node() argument
112 int fdout = -1, cfd = try->parent ? try->parent->extra : AT_FDCWD, in cp_node()
113 tfd = dirtree_parentfd(try); in cp_node()
115 char *catch = try->parent ? try->name : TT.destname, *err = "%s"; in cp_node()
118 if (!dirtree_notdotdot(try)) return 0; in cp_node()
121 if (S_ISDIR(try->st.st_mode) && try->again) { in cp_node()
122 fdout = try->extra; in cp_node()
127 if (S_ISLNK(try->st.st_mode) && (flags & FLAG_d)) flags |= FLAG_r; in cp_node()
136 if (S_ISDIR(try->st.st_mode)) { in cp_node()
[all …]
Drm.c71 static int do_rm(struct dirtree *try) in do_rm() argument
75 int fd=dirtree_parentfd(try), dir=S_ISDIR(try->st.st_mode), or=0; in do_rm()
78 if (isdotdot(try->name)) { in do_rm()
89 && (!S_ISLNK(try->st.st_mode) && faccessat(fd, try->name, W_OK, 0))) or++; in do_rm()
90 if (!(dir && try->again) && ((or && isatty(0)) || FLAG(i))) { in do_rm()
91 char *s = dirtree_path(try, 0); in do_rm()
99 if (faccessat(fd, try->name, R_OK, 0)) { in do_rm()
100 if (FLAG(f)) wfchmodat(fd, try->name, 0700); in do_rm()
103 if (!try->again) return DIRTREE_COMEAGAIN; in do_rm()
104 if (try->symlink) goto skip; in do_rm()
[all …]
/third_party/typescript/tests/baselines/reference/
DinvalidTryStatements.errors.txt1 tests/cases/conformance/statements/tryStatements/invalidTryStatements.ts(2,5): error TS1005: 'try' …
3 tests/cases/conformance/statements/tryStatements/invalidTryStatements.ts(10,5): error TS1005: 'try'…
4 tests/cases/conformance/statements/tryStatements/invalidTryStatements.ts(11,5): error TS1005: 'try'…
5 tests/cases/conformance/statements/tryStatements/invalidTryStatements.ts(15,5): error TS1005: 'try'…
6 tests/cases/conformance/statements/tryStatements/invalidTryStatements.ts(17,5): error TS1005: 'try'…
12 catch(x) { } // error missing try
14 !!! error TS1005: 'try' expected.
18 try { }; // error missing finally
24 finally { } // error missing try
26 !!! error TS1005: 'try' expected.
[all …]
DjsdocCatchClauseWithTypeAnnotation.types13 try { } catch (x) { } // should be OK
16 try { } catch (/** @type {any} */ err) { } // should be OK
19 try { } catch (/** @type {Any} */ err) { } // should be OK
22 try { } catch (/** @type {unknown} */ err) { } // should be OK
25 try { } catch (/** @type {Unknown} */ err) { } // should be OK
28 try { } catch (err) { err.foo; } // should be OK
34 try { } catch (/** @type {any} */ err) { err.foo; } // should be OK
40 try { } catch (/** @type {Any} */ err) { err.foo; } // should be OK
46 try { } catch (/** @type {unknown} */ err) { console.log(err); } // should be OK
54 try { } catch (/** @type {Unknown} */ err) { console.log(err); } // should be OK
[all …]
DjsdocCatchClauseWithTypeAnnotation.errors.txt20 try { } catch (x) { } // should be OK
21 try { } catch (/** @type {any} */ err) { } // should be OK
22 try { } catch (/** @type {Any} */ err) { } // should be OK
23 try { } catch (/** @type {unknown} */ err) { } // should be OK
24 try { } catch (/** @type {Unknown} */ err) { } // should be OK
25 try { } catch (err) { err.foo; } // should be OK
26 try { } catch (/** @type {any} */ err) { err.foo; } // should be OK
27 try { } catch (/** @type {Any} */ err) { err.foo; } // should be OK
28 try { } catch (/** @type {unknown} */ err) { console.log(err); } // should be OK
29 try { } catch (/** @type {Unknown} */ err) { console.log(err); } // should be OK
[all …]
DcatchClauseWithTypeAnnotation.types13 try { } catch (x) { } // should be OK
16 try { } catch (x: any) { } // should be OK
19 try { } catch (x: any1) { } // should be OK
22 try { } catch (x: unknown) { } // should be OK
25 try { } catch (x: unknown1) { } // should be OK
28 try { } catch (x) { x.foo; } // should be OK
34 try { } catch (x: any) { x.foo; } // should be OK
40 try { } catch (x: any1) { x.foo; } // should be OK
46 try { } catch (x: unknown) { console.log(x); } // should be OK
54 try { } catch (x: unknown1) { console.log(x); } // should be OK
[all …]
DcatchClauseWithTypeAnnotation.errors.txt18 try { } catch (x) { } // should be OK
19 try { } catch (x: any) { } // should be OK
20 try { } catch (x: any1) { } // should be OK
21 try { } catch (x: unknown) { } // should be OK
22 try { } catch (x: unknown1) { } // should be OK
23 try { } catch (x) { x.foo; } // should be OK
24 try { } catch (x: any) { x.foo; } // should be OK
25 try { } catch (x: any1) { x.foo; } // should be OK
26 try { } catch (x: unknown) { console.log(x); } // should be OK
27 try { } catch (x: unknown1) { console.log(x); } // should be OK
[all …]
DtryCatchFinallyControlFlow.types12 try {
51 try {
83 try {
114 try {
143 try {
174 try {
205 try {
239 >(() => { try { x = 1; return; } finally { x;…
240 >(() => { try { x = 1; return; } finally { x;…
241 >() => { try { x = 1; return; } finally { x; …
[all …]
DtryCatchFinallyControlFlow.errors.txt14 try {
29 try {
44 try {
59 try {
73 try {
88 try {
103 try {
122 try {
139 try {
157 try {
[all …]
DjsdocCatchClauseWithTypeAnnotation.symbols13 try { } catch (x) { } // should be OK
16 try { } catch (/** @type {any} */ err) { } // should be OK
19 try { } catch (/** @type {Any} */ err) { } // should be OK
22 try { } catch (/** @type {unknown} */ err) { } // should be OK
25 try { } catch (/** @type {Unknown} */ err) { } // should be OK
28 try { } catch (err) { err.foo; } // should be OK
32 try { } catch (/** @type {any} */ err) { err.foo; } // should be OK
36 try { } catch (/** @type {Any} */ err) { err.foo; } // should be OK
40 try { } catch (/** @type {unknown} */ err) { console.log(err); } // should be OK
47 try { } catch (/** @type {Unknown} */ err) { console.log(err); } // should be OK
[all …]
DtryStatements.types5 try { } catch { }
7 try { } catch {
8 try { } catch {
9 try { } catch { }
11 try { } catch { }
14 try { } catch (x) { var x: any; }
18 try { } finally { }
20 try { } catch { } finally { }
22 try { } catch (z) { } finally { }
DtryStatements.symbols5 try { } catch { }
7 try { } catch {
8 try { } catch {
9 try { } catch { }
11 try { } catch { }
14 try { } catch (x) { var x: any; }
18 try { } finally { }
20 try { } catch { } finally { }
22 try { } catch (z) { } finally { }
DcatchClauseWithTypeAnnotation.symbols13 try { } catch (x) { } // should be OK
16 try { } catch (x: any) { } // should be OK
19 try { } catch (x: any1) { } // should be OK
23 try { } catch (x: unknown) { } // should be OK
26 try { } catch (x: unknown1) { } // should be OK
30 try { } catch (x) { x.foo; } // should be OK
34 try { } catch (x: any) { x.foo; } // should be OK
38 try { } catch (x: any1) { x.foo; } // should be OK
43 try { } catch (x: unknown) { console.log(x); } // should be OK
50 try { } catch (x: unknown1) { console.log(x); } // should be OK
[all …]
DinvalidTryStatements.types5 catch(x) { } // error missing try
10 try { }; // error missing finally
16 finally { } // error missing try
17 catch (x) { } // error missing try
20try { } finally { } // statement is here, so the 'catch' clause above doesn't absorb errors from t…
22 finally { } // error missing try
24 catch (x) { } // error missing try
27 try { } catch () { } // error missing catch binding
/third_party/skia/third_party/externals/dawn/infra/config/global/generated/
Dcommit-queue.cfg30 name: "chromium/try/linux-dawn-rel"
33 name: "chromium/try/mac-dawn-rel"
36 name: "chromium/try/win-dawn-rel"
39 name: "dawn/try/linux-clang-dbg-x64"
42 name: "dawn/try/linux-clang-dbg-x86"
45 name: "dawn/try/linux-clang-rel-x64"
48 name: "dawn/try/linux-clang-rel-x86"
51 name: "dawn/try/mac-dbg"
54 name: "dawn/try/mac-rel"
57 name: "dawn/try/presubmit"
[all …]
Dluci-milo.cfg80 id: "try"
81 name: "Dawn try Builders"
83 name: "buildbucket/luci.dawn.try/presubmit"
86 name: "buildbucket/luci.dawn.try/linux-clang-dbg-x64"
89 name: "buildbucket/luci.dawn.try/linux-clang-dbg-x86"
92 name: "buildbucket/luci.dawn.try/linux-clang-rel-x64"
95 name: "buildbucket/luci.dawn.try/linux-clang-rel-x86"
98 name: "buildbucket/luci.dawn.try/mac-dbg"
101 name: "buildbucket/luci.dawn.try/mac-rel"
104 name: "buildbucket/luci.dawn.try/win-clang-dbg-x64"
[all …]
/third_party/toybox/toys/other/
Dshred.c38 char **try; local
45 for (try = toys.optargs; *try; try++) {
47 int fd = open(*try, O_RDWR), iter = 0, throw;
51 chmod(*try, 0600);
52 fd = open(*try, O_RDWR);
55 perror_msg_raw(*try);
62 error_msg("%s: needs -s", *try);
82 perror_msg_raw(*try);
94 if (throw != writeall(fd, toybuf, throw)) perror_msg_raw(*try);
97 if (FLAG(u) && unlink(*try)) perror_msg("unlink '%s'", *try);
/third_party/skia/third_party/externals/tint/infra/config/global/generated/
Dcommit-queue.cfg30 name: "tint/try/linux-clang-dbg-x64"
33 name: "tint/try/linux-clang-dbg-x86"
36 name: "tint/try/linux-clang-rel-x64"
39 name: "tint/try/linux-clang-rel-x86"
42 name: "tint/try/mac-dbg"
45 name: "tint/try/mac-rel"
48 name: "tint/try/presubmit"
52 name: "tint/try/win-clang-dbg-x64"
55 name: "tint/try/win-clang-dbg-x86"
58 name: "tint/try/win-clang-rel-x64"
[all …]
Dluci-milo.cfg75 id: "try"
76 name: "Tint try Builders"
78 name: "buildbucket/luci.tint.try/presubmit"
81 name: "buildbucket/luci.tint.try/linux-clang-dbg-x64"
84 name: "buildbucket/luci.tint.try/linux-clang-rel-x64"
87 name: "buildbucket/luci.tint.try/linux-clang-dbg-x86"
90 name: "buildbucket/luci.tint.try/linux-clang-rel-x86"
93 name: "buildbucket/luci.tint.try/mac-dbg"
96 name: "buildbucket/luci.tint.try/mac-rel"
99 name: "buildbucket/luci.tint.try/win-clang-dbg-x64"
[all …]
/third_party/skia/third_party/externals/dawn/docs/
Dinfra.md6 - [Dawn Try Builders](https://ci.chromium.org/p/dawn/g/try/builders)
13 - [dawn/try/presubmit](https://ci.chromium.org/p/dawn/builders/try/presubmit)
14 - [dawn/try/linux-clang-dbg-x64](https://ci.chromium.org/p/dawn/builders/try/linux-clang-dbg-x64)
15 - [dawn/try/linux-clang-dbg-x86](https://ci.chromium.org/p/dawn/builders/try/linux-clang-dbg-x86)
16 - [dawn/try/linux-clang-rel-x64](https://ci.chromium.org/p/dawn/builders/try/linux-clang-rel-x64)
17 - [dawn/try/mac-dbg](https://ci.chromium.org/p/dawn/builders/try/mac-dbg)
18 - [dawn/try/mac-rel](https://ci.chromium.org/p/dawn/builders/try/mac-rel)
19 - [dawn/try/win-clang-dbg-x86](https://ci.chromium.org/p/dawn/builders/try/win-clang-dbg-x86)
20 - [dawn/try/win-clang-rel-x64](https://ci.chromium.org/p/dawn/builders/try/win-clang-rel-x64)
21 - [dawn/try/win-msvc-dbg-x86](https://ci.chromium.org/p/dawn/builders/try/win-msvc-dbg-x86)
[all …]
/third_party/curl/scripts/
Dschemetable.c94 static void showtable(int try, int init, int shift) in showtable() argument
101 ix[i] = num[i] % try; in showtable()
112 printf(" static const struct Curl_handler * const protocols[%d] = {", try); in showtable()
115 for(i=0; i < try; i++) { in showtable()
145 int try; in main() local
178 for(try = 28; try < 199; try++) { in main()
181 ix[i] = num[i] % try; in main()
195 if(try < besttry) { in main()
196 besttry = try; in main()

12345678910>>...78