| /third_party/typescript/tests/baselines/reference/ |
| D | ifDoWhileStatements.js | 42 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 …]
|
| D | whileContinueStatements.js | 2 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 …]
|
| D | whileBreakStatements.js | 2 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 …]
|
| D | doWhileContinueStatements.js | 4 } 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 …]
|
| D | doWhileBreakStatements.js | 4 } 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 …]
|
| D | ifDoWhileStatements.types | 92 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 …]
|
| D | destructuringParameterDeclaration6.types | 9 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 …]
|
| D | ifDoWhileStatements.symbols | 95 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 …]
|
| D | whileContinueStatements.symbols | 2 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/ |
| D | ifDoWhileStatements.ts | 43 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/ |
| D | blake2b-load-sse41.h | 22 } 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/ |
| D | issue-37576.stderr | 1 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 …]
|
| D | issue-37576.rs | 2 '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/ |
| D | es5-asyncFunctionWhileStatements.ts | 7 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 …]
|
| D | es5-asyncFunctionDoStatements.ts | 7 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/ |
| D | infinite_loop.rs | 20 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 …]
|
| D | while_let_on_iterator.rs | 16 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/ |
| D | loops.frag | 58 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 …]
|
| D | spv.loops.frag | 40 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/ |
| D | liveness-move-in-while.stderr | 2 --> $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/ |
| D | promote-not.stderr | 1 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 …]
|
| D | promote-not.rs | 8 … 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/ |
| D | test_multigraph_sink_pijit.py | 67 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/ |
| D | whileContinueStatements.ts | 1 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/ |
| D | SkNWayCanvas.cpp | 61 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 …]
|