Searched defs:bob (Results 1 - 7 of 7) sorted by relevance

/external/clang/test/CodeGen/
H A D2006-03-03-MissingInitializer.c8 struct X bob = { &nate, 14 }; local
9 bar(&bob);
/external/clang/test/Sema/
H A Dwarn-shadow.c52 extern int bob; // expected-note {{previous declaration is here}}
56 extern int bob; // don't warn for shadowing.
60 int bob; // expected-warning {{declaration shadows a variable in the global scope}} local
/external/openssl/crypto/jpake/
H A Djpaketest.c26 static int run_jpake(JPAKE_CTX *alice, JPAKE_CTX *bob) argument
39 if(!JPAKE_STEP1_process(bob, &alice_s1))
50 JPAKE_STEP1_generate(&bob_s1, bob);
63 if(!JPAKE_STEP2_process(bob, &alice_s2))
74 JPAKE_STEP2_generate(&bob_s2, bob);
84 showbn("Bob's key ", JPAKE_get_shared_key(bob));
90 if(!JPAKE_STEP3A_process(bob, &alice_s3a))
101 JPAKE_STEP3B_generate(&bob_s3b, bob);
116 JPAKE_CTX *bob; local
154 bob
[all...]
/external/clang/test/SemaCXX/
H A Dwarn-shadow.cpp74 extern int bob; // expected-note {{previous declaration is here}}
78 extern int bob; // don't warn for shadowing.
82 int bob; // expected-warning {{declaration shadows a variable in the global namespace}} local
/external/quake/quake/src/WinQuake/
H A Dview.cpp114 float bob;
124 // bob is proportional to velocity in the xy plane
127 bob = sqrt(cl.velocity[0]*cl.velocity[0] + cl.velocity[1]*cl.velocity[1]) * cl_bob.value;
129 bob = bob*0.3 + bob*0.7*sin(cycle);
130 if (bob > 4)
131 bob = 4;
132 else if (bob < -7)
133 bob
870 float bob; local
[all...]
/external/quake/quake/src/QW/client/
H A Dview.c114 static float bob; local
121 return bob; // just use old value
131 // bob is proportional to simulated velocity in the xy plane
134 bob = sqrt(cl.simvel[0]*cl.simvel[0] + cl.simvel[1]*cl.simvel[1]) * cl_bob.value;
135 bob = bob*0.3 + bob*0.7*sin(cycle);
136 if (bob > 4)
137 bob = 4;
138 else if (bob <
874 float bob; local
[all...]
/external/littlemock/tests/com/google/testing/littlemock/
H A DLittleMockTest.java254 mFoo.add("bob");
263 mFoo.add("bob");
268 mFoo.add("bob");
276 mFoo.add("bob");
562 mFoo.add("bob");
863 doReturn("hi").when(mBar).twoStrings("jim", eq("bob"));
870 verify(mBar).twoStrings("jim", eq("bob"));
1554 public int bob() { method in class:LittleMockTest.Jim
1563 assertEquals(0, mock.bob());
1564 doReturn(8).when(mock).bob();
[all...]

Completed in 146 milliseconds