Lines Matching refs:NULL

8 			setting that parameter to NULL.
14 case 1 NULL NULL
15 case 2 bogus NULL
16 case 3 NULL bogus
18 case 5 local NULL
19 case 6 remote NULL
44 @case Both parameters NULL
45 @param name NULL
46 @param sig NULL
47 @results Returns NULL
51 instantiation_func f = find_instantiation_func(NULL, NULL);
52 CPPUNIT_ASSERT(f == NULL);
57 @case Bad name with NULL signature
59 @param sig NULL
60 @results Returns NULL
64 instantiation_func f = find_instantiation_func(gInvalidClassName, NULL);
65 CPPUNIT_ASSERT(f == NULL);
70 @case NULL name with invalid signature
71 @param name NULL class name
73 @results Returns NULL
77 instantiation_func f = find_instantiation_func(NULL, gInvalidSig);
78 CPPUNIT_ASSERT(f == NULL);
86 @results Returns NULL
92 CPPUNIT_ASSERT(f == NULL);
98 NULL signature
100 @param sig NULL signature
105 instantiation_func f = find_instantiation_func(gLocalClassName, NULL);
106 CPPUNIT_ASSERT(f != NULL);
111 CPPUNIT_ASSERT(Test != NULL);
117 NULL signature
119 @param sig NULL signature
120 @results Returns NULL
124 instantiation_func f = find_instantiation_func(gRemoteClassName, NULL);
125 CPPUNIT_ASSERT(f == NULL);
134 @results Returns NULL
140 CPPUNIT_ASSERT(f == NULL);
149 @results Returns NULL
155 CPPUNIT_ASSERT(f == NULL);
172 CPPUNIT_ASSERT(f == NULL);
181 @results Returns NULL
189 CPPUNIT_ASSERT(f == NULL);
194 @case Archive is NULL
195 @param Archive NULL
199 instantiation_func f = find_instantiation_func((BMessage*)NULL);
200 CPPUNIT_ASSERT(f == NULL);
205 @case Bad name with NULL signature
207 @param sig NULL
208 @results Returns NULL
215 CPPUNIT_ASSERT(f == NULL);
220 @case NULL name with invalid signature
221 @param name NULL class name
223 @results Returns NULL
230 CPPUNIT_ASSERT(f == NULL);
238 @results Returns NULL
246 CPPUNIT_ASSERT(f == NULL);
252 NULL signature
254 @param sig NULL signature
263 CPPUNIT_ASSERT(f != NULL);
266 CPPUNIT_ASSERT(Test != NULL);
272 NULL signature
274 @param sig NULL signature
275 @results Returns NULL
282 CPPUNIT_ASSERT(f == NULL);
291 @results Returns NULL
299 CPPUNIT_ASSERT(f == NULL);
308 @results Returns NULL
316 CPPUNIT_ASSERT(f == NULL);
336 CPPUNIT_ASSERT(f == NULL);
345 @results Returns NULL
355 CPPUNIT_ASSERT(f == NULL);