Home
last modified time | relevance | path

Searched full:while (Results 1 – 25 of 11844) sorted by relevance

12345678910>>...474

/third_party/typescript/tests/baselines/reference/
DifDoWhileStatements.js42 while (true) { }
43 do { }while(true)
46 while (null) { }
47 do { }while(null)
50 while (undefined) { }
51 do { }while(undefined)
54 while (0.0) { }
55 do { }while(0.0)
58 while ('a string') { }
59 do { }while('a string')
[all …]
DwhileContinueStatements.js2 while(true) {
6 while (true) {
14 while (true) {
20 while (true) {
25 while (true) {
27 while (true) {
32 while (true) {
34 while (true)
39 while (true)
40 while (true)
[all …]
DwhileBreakStatements.js2 while(true) {
8 while (true) {
14 while (true) {
19 while (true) {
21 while (true) {
26 while (true) {
28 while (true)
33 while (true)
34 while (true)
35 while (true)
[all …]
DdoWhileContinueStatements.js4 } while(true)
10 while (true)
16 }while (true)
23 }while (true)
24 }while (true)
28 do continue SIX; while(true)
29 }while (true)
32 do do do continue SEVEN; while (true) while (true) while (true)
38 }while(true)
44 } while (true);
[all …]
DdoWhileBreakStatements.js4 } while(true)
10 while (true)
16 }while (true)
23 }while (true)
24 }while (true)
28 do break SIX; while(true)
29 }while (true)
32 do do do break SEVEN; while (true) while (true) while (true)
38 }while(true)
44 } while (true);
[all …]
DifDoWhileStatements.types92 while (true) { }
95 do { }while(true)
101 while (null) { }
104 do { }while(null)
110 while (undefined) { }
113 do { }while(undefined)
119 while (0.0) { }
122 do { }while(0.0)
128 while ('a string') { }
131 do { }while('a string')
[all …]
DdestructuringParameterDeclaration6.types9 function a({while}) { }
10 >a : ({ while: }: { while: any; }) => void
11 >while : any
18 function a4([while, for, public]){ }
30 function a5(...while) { }
43 a({ while: 1 });
44 >a({ while: 1 }) : void
45 >a : ({ while: }: { while: any; }) => void
46 >{ while: 1 } : { while: number; }
47 >while : number
[all …]
DifDoWhileStatements.symbols95 while (true) { }
96 do { }while(true)
99 while (null) { }
100 do { }while(null)
105 while (undefined) { }
108 do { }while(undefined)
112 while (0.0) { }
113 do { }while(0.0)
116 while ('a string') { }
117 do { }while('a string')
[all …]
DwhileContinueStatements.symbols2 while(true) {
6 while (true) {
14 while (true) {
20 while (true) {
25 while (true) {
27 while (true) {
32 while (true) {
34 while (true)
39 while (true)
40 while (true)
[all …]
/third_party/typescript/tests/cases/conformance/statements/ifDoWhileStatements/
DifDoWhileStatements.ts43 while (true) { }
44 do { }while(true)
47 while (null) { }
48 do { }while(null)
51 while (undefined) { }
52 do { }while(undefined)
55 while (0.0) { }
56 do { }while(0.0)
59 while ('a string') { }
60 do { }while('a string')
[all …]
/third_party/python/Modules/_blake2/impl/
Dblake2b-load-sse41.h22 } while(0)
30 } while(0)
38 } while(0)
46 } while(0)
54 } while(0)
62 } while(0)
70 } while(0)
78 } while(0)
86 } while(0)
94 } while(0)
[all …]
/third_party/rust/rust/tests/ui/issues/
Dissue-37576.stderr1 error[E0590]: `break` or `continue` with no label in the condition of a `while` loop
4 LL | while break {}
5 | ^^^^^ unlabeled `break` in the condition of a `while` loop
7 error[E0590]: `break` or `continue` with no label in the condition of a `while` loop
10 LL | while let true = break {}
11 | ^^^^^ unlabeled `break` in the condition of a `while` loop
13 error[E0590]: `break` or `continue` with no label in the condition of a `while` loop
16 LL | loop { while break {} }
17 | ^^^^^ unlabeled `break` in the condition of a `while` loop
19 error[E0590]: `break` or `continue` with no label in the condition of a `while` loop
[all …]
Dissue-37576.rs2 'test_1: while break 'test_1 {} in main()
3 while break {} in main()
6 'test_2: while let true = break 'test_2 {} in main()
7 while let true = break {} in main()
10 loop { 'test_3: while break 'test_3 {} } in main()
11 loop { while break {} } in main()
15 'test_4: while break 'test_4 {} in main()
19 while break {} in main()
24 'test_5: while continue 'test_5 {} in main()
25 while continue {} in main()
[all …]
/third_party/typescript/tests/cases/compiler/
Des5-asyncFunctionWhileStatements.ts7 while (x) { y; }
11 while (await x) { y; }
15 while (x) { await y; }
19 while (x) { continue; }
23 while (await x) { continue; }
27 while (x) { await y; continue; }
31 while (x) { if (1) continue; await y; }
35 A: while (x) { continue A; }
39 B: while (await x) { continue B; }
43 C: while (x) { await y; continue C; }
[all …]
Des5-asyncFunctionDoStatements.ts7 do { x; } while (y);
11 do { await x; } while (y);
15 do { x; } while (await y);
19 do { continue; } while (y);
23 do { await x; continue; } while (y);
27 do { if (1) continue; await x; } while (y);
31 do { continue; } while (await y);
35 A: do { continue A; } while (y);
39 B: do { await x; continue B; } while (y);
43 C: do { if (1) continue C; await x; } while (y);
[all …]
/third_party/rust/rust/src/tools/clippy/tests/ui/
Dinfinite_loop.rs20 while y < 10 { in immutable_condition()
25 while y < 10 && x < 3 { in immutable_condition()
32 while !cond { in immutable_condition()
37 while y < 10 && i < 3 { in immutable_condition()
43 while !mut_cond || cond { in immutable_condition()
48 while fooi() < x { in immutable_condition()
52 while foob() { in immutable_condition()
58 while a < 5 { in immutable_condition()
66 while tup.0 < 5 { in immutable_condition()
73 // Should warn when a (mutable) var is not used in while body in unused_var()
[all …]
Dwhile_let_on_iterator.rs16 while let Option::Some(x) = iter.next() { in base()
21 while let Some(x) = iter.next() { in base()
26 while let Some(_) = iter.next() {} in base()
29 while let None = iter.next() {} // this is fine (if nonsensical) in base()
39 while let Some(_) = iter.next() { in base()
45 while let Some(_) = iter.next() { in base()
51 while let Some(_) = iter.next() { in base()
62 while let Some(&42) = b.next() {} in refutable()
67 while let Some(&(1, 2, 3)) = b.next() {} in refutable()
72 while let Some(&None) = b.next() {} in refutable()
[all …]
/third_party/glslang/Test/
Dloops.frag58 while (true) {
72 // While
73 while (color.x < d) {
77 // While (latchy)
78 while (color.z < d) {
86 // While (constant)
87 while (color.x < 42.0) {
91 // While (complicated-conditional)
92 while (color.w < d2 && color.y < d3) {
96 // While (multi-exit)
[all …]
Dspv.loops.frag40 while (true) {
54 // While
55 while (color.x < d) {
59 // While (latchy)
60 while (color.z < d) {
68 // While (constant)
69 while (color.x < 42.0) {
73 // While (complicated-conditional)
74 while (color.w < d2 && color.y < d3) {
78 // While (multi-exit)
[all …]
/third_party/rust/rust/tests/ui/liveness/
Dliveness-move-in-while.stderr2 --> $DIR/liveness-move-in-while.rs:8:9
4 LL | while true { while true { while true { x = y; x.clone(); } } }
10 --> $DIR/liveness-move-in-while.rs:8:22
12 LL | while true { while true { while true { x = y; x.clone(); } } }
16 --> $DIR/liveness-move-in-while.rs:8:35
18 LL | while true { while true { while true { x = y; x.clone(); } } }
22 --> $DIR/liveness-move-in-while.rs:7:24
31 LL | while true { while true { while true { x = y; x.clone(); } } }
41 LL | while true { while true { while true { x = y.clone(); x.clone(); } } }
/third_party/rust/rust/tests/ui/consts/
Dpromote-not.stderr1 error[E0716]: temporary value dropped while borrowed
8 … | creates a temporary value which is freed while still in use
11 error[E0716]: temporary value dropped while borrowed
15 | ^^^^^^^ creates a temporary value which is freed while still in use
21 error[E0716]: temporary value dropped while borrowed
25 … | ----------- ^^^^^ creates a temporary value which is freed while still in use
31 error[E0716]: temporary value dropped while borrowed
35 …------------ ^^^^^^^^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
41 error[E0716]: temporary value dropped while borrowed
45 …------------ ^^^^^^^^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
[all …]
Dpromote-not.rs8 … TEST1: Option<&mut [i32]> = Some(&mut [1, 2, 3]); //~ ERROR temporary value dropped while borrowed
11 let x = &mut [1,2,3]; //~ ERROR temporary value dropped while borrowed
20 let _x: &'static () = &foo(); //~ ERROR temporary value dropped while borrowed in promote_cal()
28 … let _x: &'static i32 = &unsafe { U { x: 0 }.x }; //~ ERROR temporary value dropped while borrowed in promote_union()
33 … let _x: &'static i32 = &unsafe { U { x: 0 }.x }; //~ ERROR temporary value dropped while borrowed
39 let _val: &'static _ = &(Cell::new(1), 2).1; //~ ERROR temporary value dropped while borrowed
46 let _val: &'static _ = &(Cell::new(1), 2).0; //~ ERROR temporary value dropped while borrowed in main()
47 let _val: &'static _ = &(Cell::new(1), 2).1; //~ ERROR temporary value dropped while borrowed in main()
50 let _val: &'static _ = &(1/0); //~ ERROR temporary value dropped while borrowed in main()
51 let _val: &'static _ = &(1/(1-1)); //~ ERROR temporary value dropped while borrowed in main()
[all …]
/third_party/mindspore/mindspore-src/source/tests/st/pi_jit/control_ms/
Dtest_multigraph_sink_pijit.py67 while x < y:
75 while x < y:
77 while z < c5:
87 while x < y:
89 while z < y:
100 while x < c2:
102 while y < c2:
106 while z < c2:
117 while x < c2:
119 while y < c2:
[all …]
/third_party/typescript/tests/cases/conformance/statements/continueStatements/
DwhileContinueStatements.ts1 while(true) {
5 while (true) {
13 while (true) {
19 while (true) {
24 while (true) {
26 while (true) {
31 while (true) {
33 while (true)
38 while (true)
39 while (true)
[all …]
/third_party/skia/src/utils/
DSkNWayCanvas.cpp61 while (iter.next()) { in willSave()
70 while (iter.next()) { in getSaveLayerStrategy()
81 while (iter.next()) { in onDoSaveBehind()
90 while (iter.next()) { in willRestore()
98 while (iter.next()) { in onMarkCTM()
106 while (iter.next()) { in didConcat44()
113 while (iter.next()) { in didSetM44()
120 while (iter.next()) { in didTranslate()
127 while (iter.next()) { in didScale()
134 while (iter.next()) { in onClipRect()
[all …]

12345678910>>...474