Home
last modified time | relevance | path

Searched refs:bob (Results 1 – 25 of 90) sorted by relevance

1234

/third_party/typescript/tests/baselines/reference/
Dmaximum10SpellingSuggestions.js5 bob; bob; bob; bob; bob; bob; bob; bob; bob; bob;
6 bob; bob;
13 bob;
14 bob;
15 bob;
16 bob;
17 bob;
18 bob;
19 bob;
20 bob;
[all …]
Dmaximum10SpellingSuggestions.types7 bob; bob; bob; bob; bob; bob; bob; bob; bob; bob;
8 >bob : any
9 >bob : any
10 >bob : any
11 >bob : any
12 >bob : any
13 >bob : any
14 >bob : any
15 >bob : any
16 >bob : any
[all …]
Dmaximum10SpellingSuggestions.errors.txt1 tests/cases/compiler/maximum10SpellingSuggestions.ts(4,1): error TS2552: Cannot find name 'bob'. Di…
2 tests/cases/compiler/maximum10SpellingSuggestions.ts(4,6): error TS2552: Cannot find name 'bob'. Di…
3 tests/cases/compiler/maximum10SpellingSuggestions.ts(4,11): error TS2552: Cannot find name 'bob'. D…
4 tests/cases/compiler/maximum10SpellingSuggestions.ts(4,16): error TS2552: Cannot find name 'bob'. D…
5 tests/cases/compiler/maximum10SpellingSuggestions.ts(4,21): error TS2552: Cannot find name 'bob'. D…
6 tests/cases/compiler/maximum10SpellingSuggestions.ts(4,26): error TS2552: Cannot find name 'bob'. D…
7 tests/cases/compiler/maximum10SpellingSuggestions.ts(4,31): error TS2552: Cannot find name 'bob'. D…
8 tests/cases/compiler/maximum10SpellingSuggestions.ts(4,36): error TS2552: Cannot find name 'bob'. D…
9 tests/cases/compiler/maximum10SpellingSuggestions.ts(4,41): error TS2552: Cannot find name 'bob'. D…
10 tests/cases/compiler/maximum10SpellingSuggestions.ts(4,46): error TS2552: Cannot find name 'bob'. D…
[all …]
Dmaximum10SpellingSuggestions.symbols7 bob; bob; bob; bob; bob; bob; bob; bob; bob; bob;
8 bob; bob;
DobjectLiteralArraySpecialization.types17 var thing = create([ { name: "bob", id: 24 }, { name: "doug", id: 32 } ]); // should not error
19 >create([ { name: "bob", id: 24 }, { name: "doug", id: 32 } ]) : MyArrayWrapper<{ name: string; id:…
21 >[ { name: "bob", id: 24 }, { name: "doug", id: 32 } ] : { name: string; id: number; }[]
22 >{ name: "bob", id: 24 } : { name: string; id: number; }
24 >"bob" : "bob"
33 thing.doSomething((x, y) => x.name === "bob"); // should not error
34 >thing.doSomething((x, y) => x.name === "bob") : void
38 >(x, y) => x.name === "bob" : (x: { name: string; id: number; }, y: { name: string; id: number; }) …
41 >x.name === "bob" : boolean
45 >"bob" : "bob"
DspreadContextualTypedBindingPattern.symbols13 declare const bob: Person
14 >bob : Symbol(bob, Decl(spreadContextualTypedBindingPattern.ts, 6, 13))
22 const { naam, age } = {...bob, ...alice}
25 >bob : Symbol(bob, Decl(spreadContextualTypedBindingPattern.ts, 6, 13))
DspreadContextualTypedBindingPattern.types11 declare const bob: Person
12 >bob : Person
18 const { naam, age } = {...bob, ...alice}
21 >{...bob, ...alice} : { naam: string; age: number; }
22 >bob : Person
DspreadContextualTypedBindingPattern.js8 declare const bob: Person
12 const { naam, age } = {...bob, ...alice}
28 var _a = __assign(__assign({}, bob), alice), naam = _a.naam, age = _a.age;
/third_party/typescript/tests/cases/compiler/
Dmaximum10SpellingSuggestions.ts5 bob; bob; bob; bob; bob; bob; bob; bob; bob; bob;
6 bob; bob;
/third_party/node/test/parallel/
Dtest-tls-finished.js27 bob: alice.getPeerFinished() property
33 const bob = tls.connect({ constant
38 alice: bob.getPeerFinished(),
39 bob: bob.getFinished() property
41 bob.end();
45 alice: bob.getPeerFinished(),
46 bob: bob.getFinished() property
52 assert.strictEqual(undefined, msg.before.bob);
55 assert(Buffer.isBuffer(msg.server.bob));
57 assert(Buffer.isBuffer(msg.client.bob));
[all …]
/third_party/node/benchmark/crypto/
Dcipher-stream.js24 const bob = crypto.getDiffieHellman('modp5');
27 bob.generateKeys();
30 const alice_secret = alice.computeSecret(bob.getPublicKey(), pubEnc, 'hex');
31 const bob_secret = bob.computeSecret(alice.getPublicKey(), pubEnc, 'hex');
65 function streamWrite(alice, bob, message, encoding, writes) { argument
67 bob.on('data', (c) => {
71 bob.on('end', () => {
78 alice.pipe(bob);
86 function legacyWrite(alice, bob, message, encoding, writes) { argument
91 dec = bob.update(enc);
[all …]
Daes-gcm-throughput.js31 const bob = crypto.createDecipheriv(cipher, key, iv);
32 bob.setAuthTag(tag);
33 bob.setAAD(associate_data);
34 bob.update(enc);
35 bob.final();
/third_party/rust/crates/clap/examples/tutorial_derive/
D03_02_option_mult.md15 $ 03_02_option_mult_derive --name bob
16 name: ["bob"]
18 $ 03_02_option_mult_derive --name=bob
19 name: ["bob"]
21 $ 03_02_option_mult_derive -n bob
22 name: ["bob"]
24 $ 03_02_option_mult_derive -n=bob
25 name: ["bob"]
28 name: ["bob"]
D03_02_option.md15 $ 03_02_option_derive --name bob
16 name: Some("bob")
18 $ 03_02_option_derive --name=bob
19 name: Some("bob")
21 $ 03_02_option_derive -n bob
22 name: Some("bob")
24 $ 03_02_option_derive -n=bob
25 name: Some("bob")
28 name: Some("bob")
D03_03_positional_mult.md17 $ 03_03_positional_mult_derive bob
18 name: ["bob"]
20 $ 03_03_positional_mult_derive bob john
21 name: ["bob", "john"]
/third_party/rust/crates/clap/examples/tutorial_builder/
D03_02_option_mult.md15 $ 03_02_option_mult --name bob
16 name: Some("bob")
18 $ 03_02_option_mult --name=bob
19 name: Some("bob")
21 $ 03_02_option_mult -n bob
22 name: Some("bob")
24 $ 03_02_option_mult -n=bob
25 name: Some("bob")
28 name: Some("bob")
D03_02_option.md15 $ 03_02_option --name bob
16 name: Some("bob")
18 $ 03_02_option --name=bob
19 name: Some("bob")
21 $ 03_02_option -n bob
22 name: Some("bob")
24 $ 03_02_option -n=bob
25 name: Some("bob")
28 name: Some("bob")
D03_03_positional_mult.md17 $ 03_03_positional_mult bob
18 names: ["bob"]
20 $ 03_03_positional_mult bob john
21 names: ["bob", "john"]
/third_party/rust/crates/clap/tests/derive/
Dflags.rs62 bob: usize, in non_bool_type_flag() field
67 assert_eq!(opt.bob, 5); in non_bool_type_flag()
71 assert_eq!(opt.bob, 5); in non_bool_type_flag()
75 assert_eq!(opt.bob, 10); in non_bool_type_flag()
79 assert_eq!(opt.bob, 10); in non_bool_type_flag()
134 bob: u8, in count() field
138 Opt { alice: 0, bob: 0 }, in count()
142 Opt { alice: 1, bob: 0 }, in count()
146 Opt { alice: 2, bob: 0 }, in count()
150 Opt { alice: 2, bob: 2 }, in count()
[all …]
/third_party/rust/crates/tracing/tracing/tests/
Dfilters_are_not_reevaluated_for_the_same_span.rs48 let bob = alice.in_scope(|| { in filters_are_not_reevaluated_for_the_same_span() localVariable
49 let bob = span!(Level::TRACE, "bob"); in filters_are_not_reevaluated_for_the_same_span() localVariable
50 bob.in_scope(|| ()); in filters_are_not_reevaluated_for_the_same_span()
51 bob in filters_are_not_reevaluated_for_the_same_span()
58 alice.in_scope(|| bob.in_scope(|| {})); in filters_are_not_reevaluated_for_the_same_span()
65 bob.in_scope(|| {}); in filters_are_not_reevaluated_for_the_same_span()
/third_party/gstreamer/gstplugins_good/gst/deinterlace/tvtime/tomsmocomp/
DSearchLoopBottom.inc8 "movq %%mm6, %%mm0\n\t" // just use the results of our weird bob
22 "pcmpeqb %%mm7, %%mm0\n\t" // all ff where bob better, else 00
23 "pand %%mm6, %%mm0\n\t" // use bob for these pixel values
27 // Use the better of bob or weave
35 "pcmpeqb %%mm7, %%mm0\n\t" // all ff where bob better, else 00
36 "pand %%mm6, %%mm0\n\t" // use bob for these pixel values
117 out[0] = best[0]; // just use the results of our weird bob
/third_party/rust/crates/clap/examples/
Descaped-positional.md46 $ escaped-positional -f -p=bob -- sloppy slop slop
48 -p's value: Some("bob")
55 $ escaped-positional -- -f -p=bob sloppy slop slop
58 'slops' values: ["-f", "-p=bob", "sloppy", "slop", "slop"]
Descaped-positional-derive.md46 $ escaped-positional-derive -f -p=bob -- sloppy slop slop
48 -p's value: Some("bob")
55 $ escaped-positional-derive -- -f -p=bob sloppy slop slop
58 'slops' values: ["-f", "-p=bob", "sloppy", "slop", "slop"]
/third_party/mesa3d/src/gallium/auxiliary/vl/
Dvl_compositor_cs.c827 c->cs_yuv.bob.y = vl_compositor_cs_create_shader(c, compute_shader_yuv_bob_y); in vl_compositor_cs_init_shaders()
828 c->cs_yuv.bob.uv = vl_compositor_cs_create_shader(c, compute_shader_yuv_bob_uv); in vl_compositor_cs_init_shaders()
830 !c->cs_yuv.bob.y || !c->cs_yuv.bob.uv) { in vl_compositor_cs_init_shaders()
850 if (c->cs_yuv.bob.y) in vl_compositor_cs_cleanup_shaders()
851 c->pipe->delete_compute_state(c->pipe, c->cs_yuv.bob.y); in vl_compositor_cs_cleanup_shaders()
852 if (c->cs_yuv.bob.uv) in vl_compositor_cs_cleanup_shaders()
853 c->pipe->delete_compute_state(c->pipe, c->cs_yuv.bob.uv); in vl_compositor_cs_cleanup_shaders()
/third_party/libdrm/tests/amdgpu/
Dsecurity_tests.c264 struct sec_amdgpu_bo alice, bob; in amdgpu_secure_bounce() local
319 &bob); in amdgpu_secure_bounce()
328 amdgpu_bo_lcopy(&sb_ctx, &bob, &alice, SECURE_BUFFER_SIZE, 1); in amdgpu_secure_bounce()
332 res = amdgpu_bo_move(&sb_ctx, bob.bo, AMDGPU_GEM_DOMAIN_GTT, 0); in amdgpu_secure_bounce()
341 amdgpu_bo_lcopy(&sb_ctx, &alice, &bob, SECURE_BUFFER_SIZE, 1); in amdgpu_secure_bounce()
357 amdgpu_bo_unmap_free(&bob, SECURE_BUFFER_SIZE); in amdgpu_secure_bounce()

1234