Home
last modified time | relevance | path

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

12345

/external/rust/crates/structopt/tests/
Dflags.rs50 bob: u8, in multiple_flag() field
54 Opt { alice: 0, bob: 0 }, in multiple_flag()
58 Opt { alice: 1, bob: 0 }, in multiple_flag()
62 Opt { alice: 2, bob: 0 }, in multiple_flag()
66 Opt { alice: 2, bob: 2 }, in multiple_flag()
70 Opt { alice: 3, bob: 1 }, in multiple_flag()
90 bob: std::sync::atomic::AtomicBool, in non_bool_flags() field
95 assert!(!falsey.bob.load(std::sync::atomic::Ordering::Relaxed)); in non_bool_flags()
99 assert!(!alice.bob.load(std::sync::atomic::Ordering::Relaxed)); in non_bool_flags()
101 let bob = Opt::from_clap(&Opt::clap().get_matches_from(&["test", "-b"])); in non_bool_flags() localVariable
[all …]
/external/starlark-go/starlarkstruct/testdata/
Dstruct.star37 bob = person(name = "bob", age = 50)
39 assert.ne(http, bob) # different constructor symbols
40 assert.ne(bob, alice) # different fields
49 assert.eq(dir(bob), ["age", "name"])
58 assert.eq(bob + bob, bob)
59 assert.eq(bob + alice, person(age = 50, city = "NYC", name = "alice"))
60 assert.eq(alice + bob, person(age = 50, city = "NYC", name = "bob")) # not commutative! a misfeatu…
63 assert.fails(lambda : http + bob, "different constructors: hostport \\+ person")
/external/llvm/test/MC/AArch64/
Ddot-req.s12 bob .req fred
14 mov ada, bob
15 .unreq bob
22 bob .req b6
28 addv bob, v0.8b
Ddot-req-diagnostics.s15 bob .req lisa
25 mov bob, fred
/external/llvm-project/llvm/test/MC/AArch64/
Ddot-req.s12 bob .req fred
14 mov ada, bob
15 .unreq bob
22 bob .req b6
28 addv bob, v0.8b
Ddot-req-diagnostics.s15 bob .req lisa
25 mov bob, fred
/external/webrtc/video/
Dpc_full_stack_tests.cc127 [](PeerConfigurer* bob) {}); in TEST() argument
154 [](PeerConfigurer* bob) {}); in TEST() argument
189 [](PeerConfigurer* bob) {}); in TEST() argument
245 [](PeerConfigurer* bob) {}); in TEST() argument
268 [](PeerConfigurer* bob) {}); in TEST() argument
297 [](PeerConfigurer* bob) {}); in TEST() argument
331 [](PeerConfigurer* bob) {}); in TEST() argument
356 [](PeerConfigurer* bob) {}); in TEST() argument
382 [](PeerConfigurer* bob) {}); in TEST() argument
408 [](PeerConfigurer* bob) {}); in TEST() argument
[all …]
/external/webrtc/test/network/
Dnetwork_emulation_pc_unittest.cc146 std::unique_ptr<PeerConnectionWrapper> bob = in TEST() local
158 ASSERT_TRUE(alice->ExchangeOfferAnswerWith(bob.get())); in TEST()
164 ASSERT_TRUE_WAIT(bob->IsIceGatheringDone(), kDefaultTimeoutMs); in TEST()
168 AddIceCandidates(bob.get(), alice->observer()->GetAllCandidates())); in TEST()
170 AddIceCandidates(alice.get(), bob->observer()->GetAllCandidates())); in TEST()
172 ASSERT_TRUE_WAIT(bob->IsIceConnected(), kDefaultTimeoutMs); in TEST()
177 bob->pc()->Close(); in TEST()
181 bob.reset(); in TEST()
/external/webrtc/test/scenario/
Dscenario_unittest.cc28 auto* bob = s.CreateClient("bob", call_client_config); in TEST() local
32 auto route = s.CreateRoutes(alice, {alice_net}, bob, {bob_net}); in TEST()
52 s.Every(TimeDelta::Millis(10), [alice, bob, &bitrate_changed] { in TEST()
54 bob->GetStats().send_bandwidth_bps != 300000) in TEST()
68 auto* bob = s.CreateClient("bob", call_config); in SetupVideoCall() local
74 auto route = s.CreateRoutes(alice, {alice_net}, bob, {bob_net}); in SetupVideoCall()
155 auto* bob = s.CreateClient("bob", call_client_config); in TEST() local
162 auto route = s.CreateRoutes(alice, {alice_net}, bob, {bob_net}); in TEST()
/external/llvm-project/clang/test/SemaCXX/
Dwarn-shadow.cpp144 extern int bob; // expected-note 1 {{previous declaration is here}}
150 extern int bob; // don't warn for shadowing. in rdar8883302()
154 int bob; // expected-warning {{declaration shadows a variable in the global namespace}} in test8() local
160 typedef int bob; // no warning in test9() typedef
166 using bob=int; // no warning in test10() typedef
/external/clang/test/Sema/
Dwarn-shadow.c52 extern int bob; // expected-note {{previous declaration is here}}
56 extern int bob; // don't warn for shadowing. in rdar8883302()
60 int bob; // expected-warning {{declaration shadows a variable in the global scope}} in test8() local
/external/rust/crates/quiche/deps/boringssl/src/crypto/curve25519/
Dspake25519_test.cc39 bssl::UniquePtr<SPAKE2_CTX> bob(SPAKE2_CTX_new( in Run() local
46 if (!alice || !bob) { in Run()
54 bob->disable_password_scalar_hack = 1; in Run()
66 bob.get(), bob_msg, &bob_msg_len, sizeof(bob_msg), in Run()
82 !SPAKE2_process_msg(bob.get(), bob_key, &bob_key_len, sizeof(bob_key), in Run()
/external/boringssl/src/crypto/curve25519/
Dspake25519_test.cc39 bssl::UniquePtr<SPAKE2_CTX> bob(SPAKE2_CTX_new( in Run() local
46 if (!alice || !bob) { in Run()
54 bob->disable_password_scalar_hack = 1; in Run()
66 bob.get(), bob_msg, &bob_msg_len, sizeof(bob_msg), in Run()
82 !SPAKE2_process_msg(bob.get(), bob_key, &bob_key_len, sizeof(bob_key), in Run()
/external/llvm-project/clang/test/Sema/
Dwarn-shadow.c52 extern int bob; // expected-note {{previous declaration is here}}
56 extern int bob; // don't warn for shadowing. in rdar8883302()
60 int bob; // expected-warning {{declaration shadows a variable in the global scope}} in test8() local
/external/clang/test/SemaCXX/
Dwarn-shadow.cpp90 extern int bob; // expected-note {{previous declaration is here}}
94 extern int bob; // don't warn for shadowing. in rdar8883302()
98 int bob; // expected-warning {{declaration shadows a variable in the global namespace}} in test8() local
/external/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()
Dvl_compositor.c57 c->fs_yuv.bob.y = create_frag_shader_deint_yuv(c, true, false); in init_shaders()
58 c->fs_yuv.bob.uv = create_frag_shader_deint_yuv(c, false, false); in init_shaders()
60 !c->fs_yuv.bob.y || !c->fs_yuv.bob.uv) { in init_shaders()
113 c->pipe->delete_fs_state(c->pipe, c->fs_yuv.bob.y); in cleanup_shaders()
114 c->pipe->delete_fs_state(c->pipe, c->fs_yuv.bob.uv); in cleanup_shaders()
351 s->layers[layer].fs = (y) ? c->fs_yuv.bob.y : c->fs_yuv.bob.uv; in set_yuv_layer()
353 s->layers[layer].cs = (y) ? c->cs_yuv.bob.y : c->cs_yuv.bob.uv; in set_yuv_layer()
361 s->layers[layer].fs = (y) ? c->fs_yuv.bob.y : c->fs_yuv.bob.uv; in set_yuv_layer()
363 s->layers[layer].cs = (y) ? c->cs_yuv.bob.y : c->cs_yuv.bob.uv; in set_yuv_layer()
/external/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, 0); 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, 0); in amdgpu_secure_bounce()
357 amdgpu_bo_unmap_free(&bob, SECURE_BUFFER_SIZE); in amdgpu_secure_bounce()
/external/clang/test/CodeGen/
D2006-03-03-MissingInitializer.c8 struct X bob = { &nate, 14 }; in foo() local
9 bar(&bob); in foo()
/external/llvm-project/clang/test/CodeGen/
D2006-03-03-MissingInitializer.c8 struct X bob = { &nate, 14 }; in foo() local
9 bar(&bob); in foo()
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/media/
DMediaSessionFacade.java110 PlaybackState.Builder bob = new PlaybackState.Builder(); in mediaSessionAddCallback()
111 bob.setActions(PlaybackState.ACTION_PLAY | in mediaSessionAddCallback()
114 bob.setState(PlaybackState.STATE_PLAYING, 0, 1); in mediaSessionAddCallback()
115 mSession.setPlaybackState(bob.build()); in mediaSessionAddCallback()
/external/openscreen/cast/common/channel/
Dvirtual_connection_router_unittest.cc267 MockCastMessageHandler alice, bob; in TEST_F() local
269 local_router_.AddHandlerForLocalId("bob", &bob); in TEST_F()
294 EXPECT_CALL(bob, OnMessage(&local_router_, nullptr, _)) in TEST_F()
329 EXPECT_CALL(bob, OnMessage(_, _, _)).Times(0); in TEST_F()
340 MockCastMessageHandler alice, bob, charlie; in TEST_F() local
342 local_router_.AddHandlerForLocalId("bob", &bob); in TEST_F()
361 EXPECT_CALL(bob, OnMessage(&local_router_, local_socket_, _)) in TEST_F()
385 EXPECT_CALL(bob, OnMessage(_, _, _)).Times(0); in TEST_F()
/external/flatbuffers/tests/
Dmonsterdata_test.golden42 "bob",
44 "bob",
/external/webrtc/test/pc/e2e/
Dpeer_connection_e2e_smoke_test.cc232 [](PeerConfigurer* bob) { in TEST_F() argument
238 bob->SetAudioConfig(std::move(audio)); in TEST_F()
266 [](PeerConfigurer* bob) {}); in TEST_F() argument
295 [](PeerConfigurer* bob) {}); in TEST_F() argument
330 [](PeerConfigurer* bob) {}); in TEST_F() argument
/external/tcpdump/tests/
Dradius-rfc4675-v.out4 User-Name Attribute (1), length: 12, Value: bob-tagged
19 User-Name Attribute (1), length: 14, Value: bob-untagged
33 User-Name Attribute (1), length: 13, Value: bob-invalid

12345