Home | History | Annotate | Download | only in accessibility

Lines Matching defs:child_count

165     LONG child_count;
166 hr = accessible->get_accChildCount(&child_count);
168 if (child_count == 0)
171 auto_ptr<VARIANT> child_array(new VARIANT[child_count]);
174 accessible, 0, child_count, child_array.get(), &obtained_count);
176 ASSERT_EQ(child_count, obtained_count);
303 LONG child_count = 0;
304 HRESULT hr = parent->get_accChildCount(&child_count);
306 ASSERT_EQ(child_count, children_.size());
308 auto_ptr<VARIANT> child_array(new VARIANT[child_count]);
310 hr = AccessibleChildren(parent, 0, child_count,
313 ASSERT_EQ(child_count, obtained_count);