Home
last modified time | relevance | path

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

12345678910>>...458

/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 …]
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 …]
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 …]
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 …]
DcontrolFlowWhileStatement.js6 while (cond) {
13 while (cond) {
22 while (cond) {
32 while (x = x.length) {
40 while (cond) {
50 while (cond) {
66 while (true) {
82 while (x > 1) {
93 while (cond) {
102 while (cond) {
[all …]
Des5-asyncFunctionWhileStatements.types13 while (x) { y; }
21 while (await x) { y; }
30 while (x) { await y; }
39 while (x) { continue; }
46 while (await x) { continue; }
54 while (x) { await y; continue; }
63 while (x) { if (1) continue; await y; }
73 A: while (x) { continue A; }
82 B: while (await x) { continue B; }
92 C: while (x) { await y; continue C; }
[all …]
DwhileContinueStatements.types2 while(true) {
8 while (true) {
21 while (true) {
34 while (true) {
44 while (true) {
50 while (true) {
58 while (true) {
64 while (true)
74 while (true)
77 while (true)
[all …]
DcontrolFlowIterationErrors.js11 while (cond) {
21 while (cond) {
34 while (cond) {
44 while (cond) {
58 while (cond) {
67 while (cond) {
76 while (cond) {
86 while (cond) {
103 while (cond) {
112 while (cond) {
[all …]
Des5-asyncFunctionDoStatements.types13 do { x; } while (y);
21 do { await x; } while (y);
30 do { x; } while (await y);
39 do { continue; } while (y);
46 do { await x; continue; } while (y);
55 do { if (1) continue; await x; } while (y);
65 do { continue; } while (await y);
73 A: do { continue A; } while (y);
82 B: do { await x; continue B; } while (y);
93 C: do { if (1) continue C; await x; } while (y);
[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/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/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/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/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 …]
/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/mindspore/mindspore-src/source/tests/ut/cpp/python_input/gtest_input/pipeline/parse/
Dparallel_if.py231 # Two kinds of loop: while loop, for loop
237 Description: return in while loop requires that the after-if func graph should not
246 while x > 0:
256 Description: return in inner while loop requires that the after-if func graph should not
257 be called, and this information should be propagated through while to
266 while x > 0:
279 Description: return in inner while loop requires that the after-if func graph should not
280 be called, and this information should be propagated through while to
289 while x > 0:
301 Description: return in inner while loop requires that the after-if func graph should not
[all …]
/third_party/skia/third_party/externals/abseil-cpp/absl/time/
Dduration_benchmark.cc37 while (state.KeepRunning()) { in BM_Duration_Factory_Nanoseconds()
46 while (state.KeepRunning()) { in BM_Duration_Factory_Microseconds()
55 while (state.KeepRunning()) { in BM_Duration_Factory_Milliseconds()
64 while (state.KeepRunning()) { in BM_Duration_Factory_Seconds()
73 while (state.KeepRunning()) { in BM_Duration_Factory_Minutes()
82 while (state.KeepRunning()) { in BM_Duration_Factory_Hours()
91 while (state.KeepRunning()) { in BM_Duration_Factory_DoubleNanoseconds()
100 while (state.KeepRunning()) { in BM_Duration_Factory_DoubleMicroseconds()
109 while (state.KeepRunning()) { in BM_Duration_Factory_DoubleMilliseconds()
118 while (state.KeepRunning()) { in BM_Duration_Factory_DoubleSeconds()
[all …]

12345678910>>...458