Searched defs:child_count (Results 1 - 14 of 14) sorted by relevance

/external/chromium/webkit/glue/
H A Dwebaccessibility.cc391 int child_count = src.childCount(); local
393 for (int i = 0; i < child_count; i++) {
/external/chromium/chrome/browser/accessibility/
H A Dbrowser_accessibility.h81 uint32 child_count() const { return children_.size(); } function in class:BrowserAccessibility
H A Daccessibility_win_browsertest.cc165 LONG child_count; local
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; local
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]);
[all...]
H A Dbrowser_accessibility_win.cc181 STDMETHODIMP BrowserAccessibilityWin::get_accChildCount(LONG* child_count) { argument
185 if (!child_count)
188 *child_count = children_.size();
/external/chromium/chrome/browser/autocomplete/
H A Dautocomplete_accessibility.cc28 STDMETHODIMP AutocompleteAccessibility::get_accChildCount(LONG* child_count) { argument
29 if (!child_count) {
34 return default_accessibility_server_->get_accChildCount(child_count);
/external/chromium/chrome/browser/sync/engine/
H A Dprocess_commit_response_command_unittest.cc338 int child_count = 0; local
343 SCOPED_TRACE(::testing::Message("Examining item #") << child_count);
346 ASSERT_EQ(StringPrintf("Item %d", child_count), c.Get(NON_UNIQUE_NAME));
348 if (child_count < batch_size) {
356 if (child_count % 4 < 2) {
365 child_count++;
367 ASSERT_EQ(batch_size*2, child_count)
/external/chromium/chrome/browser/extensions/
H A Dextension_menu_manager.h116 int child_count() const { return children_.size(); } function in class:ExtensionMenuItem
H A Dextension_bookmarks_module.cc238 int childCount = node->child_count();
329 int child_count = node->child_count(); local
330 for (int i = 0; i < child_count; ++i) {
458 index = parent->child_count();
461 if (index > parent->child_count() || index < 0) {
559 if (index > parent->child_count() || index < 0) {
564 index = parent->child_count();
/external/chromium/chrome/browser/ui/gtk/
H A Dgtk_tree.cc399 int child_count = tree_model_->GetChildCount(parent_node); local
400 for (int i = 0; i < child_count; ++i) {
/external/chromium/chrome/browser/bookmarks/
H A Dbookmark_utils.cc111 for (int i = 0; i < node->child_count(); ++i) {
151 for (int i = 0; i < node->child_count(); ++i) {
161 int child_count = 0; local
163 child_count += ChildURLCount(nodes[i]);
164 if (child_count < bookmark_utils::num_urls_before_prompting)
169 base::IntToString16(child_count));
428 index = parent->child_count();
554 node = model->AddURL(parent, parent->child_count(), new_title, new_url);
556 node = model->AddFolder(parent, parent->child_count(), new_title);
558 model->AddURL(node, node->child_count(), detail
[all...]
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
H A Dtree.rb137 if adaptor.child_count( look ) == 0
326 alias child_count length
694 def child_count( tree ) method in class:ANTLR3.CommonTree.TreeAdaptor
695 tree.child_count
729 for i in 0 ... child_count( tree )
749 child_count( tree ).zero?
762 case root.child_count
846 count = new_root.child_count
907 elsif root.child_count == 1 then root = root.first.detach
/external/chromium/chrome/browser/sync/
H A Dprofile_sync_service_bookmark_unittest.cc385 if (browser_index == bnode->parent()->child_count() - 1) {
395 if (bnode->child_count()) {
721 EXPECT_TRUE(model_->other_node()->child_count() == 1);
731 EXPECT_TRUE(model_->other_node()->child_count() == 1);
741 int child_count = 0; local
755 child_count = model_->other_node()->child_count();
756 EXPECT_TRUE(child_count == 0 || child_count == 1);
766 EXPECT_EQ(model_->other_node()->child_count(), child_coun
[all...]
/external/clang/include/clang/AST/
H A DComment.h198 unsigned child_count() const { function in class:clang::comments::Comment
/external/linux-tools-perf/util/include/linux/added/
H A Dperf_event.h773 atomic64_t child_count; member in struct:perf_event

Completed in 1305 milliseconds