HomeSort by relevance Sort by last modified time
    Searched defs:child_count (Results 1 - 25 of 26) sorted by null

1 2

  /external/chromium_org/chrome/browser/ui/bookmarks/
bookmark_editor.cc 23 int child_count = parent->child_count(); local
25 details.index <= child_count) ?
26 details.index : child_count;
32 model->AddURL(node, node->child_count(), details.urls[i].second,
160 model->Move(node, new_parent, new_parent->child_count());
bookmark_utils.cc 94 for (; child_index_ < (*parent_)->child_count(); ++child_index_) {
117 int child_count = 0; local
121 child_count++;
124 if (child_count < num_bookmark_urls_before_prompting)
130 base::IntToString16(child_count)),
137 for (int i = 0; i < node->child_count(); ++i) {
265 BookmarkEditor::EditDetails::AddFolder(parent, parent->child_count());
  /external/chromium_org/ui/accessibility/
ax_node.h 24 int child_count() const { return static_cast<int>(children_.size()); } function in class:ui::AXNode
  /external/chromium_org/gpu/config/
gpu_dx_diagnostics_win.cc 68 DWORD child_count; local
69 hr = container->GetNumberOfChildContainers(&child_count);
71 for (DWORD i = 0; i < child_count; i++) {
  /external/chromium_org/base/debug/
gdi_debug_util_win.cc 22 int child_count = 0; local
23 base::debug::Alias(&child_count);
51 ++child_count;
  /external/chromium_org/components/bookmarks/test/
bookmark_test_helpers.cc 57 int index = node->child_count();
115 int child_count = node->child_count(); local
117 for (int i = 0; i < child_count; ++i) {
  /external/chromium_org/components/enhanced_bookmarks/
enhanced_bookmark_utils.cc 85 int child_count = parent->child_count(); local
86 for (int i = 0; i < child_count; ++i) {
95 if (bb_node->child_count() > 0)
  /external/chromium_org/content/browser/frame_host/
frame_tree_node.h 72 size_t child_count() const { function in class:content::FrameTreeNode
  /external/chromium_org/ui/events/test/
test_event_target.h 39 size_t child_count() const { return children_.size(); } function in class:ui::test::TestEventTarget
  /external/chromium_org/ui/base/models/
tree_node_model.h 77 DCHECK_LE(index, child_count());
120 int child_count() const { return static_cast<int>(children_.size()); } function in class:ui::TreeNode
137 DCHECK_LT(index, child_count());
260 return AsNode(parent)->child_count();
  /external/chromium_org/ui/views/accessibility/
native_view_accessibility_win_unittest.cc 55 LONG child_count = 0; local
56 ASSERT_EQ(S_OK, content_accessible->get_accChildCount(&child_count));
57 ASSERT_EQ(1L, child_count);
123 LONG child_count = 0; local
124 ASSERT_EQ(S_OK, root_view_accessible->get_accChildCount(&child_count));
125 ASSERT_EQ(1L, child_count);
135 ASSERT_EQ(S_OK, root_view_accessible->get_accChildCount(&child_count));
136 ASSERT_EQ(2L, child_count);
  /external/chromium_org/chrome/browser/sync/test/integration/
two_client_bookmarks_sync_test.cc 603 Remove(0, folder, folder->child_count() - 1);
645 int child_count = folder->child_count(); local
646 for (int i = 0; i < child_count; ++i) {
    [all...]
bookmarks_helper.cc 395 ASSERT_LT(path.top(), walker->child_count());
624 for (int i = 0; i < root_node->child_count(); ++i) {
626 for (int j = permanent_node->child_count() - 1; j >= 0; --j) {
653 int child_count = parent->child_count(); local
654 if (child_count <= 0)
656 for (int index = 0; index < child_count; ++index) {
657 Move(profile, parent->GetChild(index), parent, child_count - index);
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_fs_schedule_instructions.cpp 64 this->child_count = 0;
106 int child_count; member in class:schedule_node
175 for (int i = 0; i < before->child_count; i++) {
182 if (before->child_array_size <= before->child_count) {
195 before->children[before->child_count] = after;
196 before->child_latency[before->child_count] = latency;
197 before->child_count++;
471 for (int i = 0; i < chosen->child_count; i++) {
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_fs_schedule_instructions.cpp 64 this->child_count = 0;
106 int child_count; member in class:schedule_node
175 for (int i = 0; i < before->child_count; i++) {
182 if (before->child_array_size <= before->child_count) {
195 before->children[before->child_count] = after;
196 before->child_latency[before->child_count] = latency;
197 before->child_count++;
471 for (int i = 0; i < chosen->child_count; i++) {
  /external/chromium_org/chrome/browser/extensions/
menu_manager.h 171 int child_count() const { return children_.size(); } function in class:extensions::MenuItem
  /external/chromium_org/content/browser/accessibility/
accessibility_win_browsertest.cc 98 LONG child_count = 0; local
99 HRESULT hr = node->get_accChildCount(&child_count);
102 scoped_ptr<VARIANT[]> child_array(new VARIANT[child_count]);
105 node, 0, child_count, child_array.get(), &obtained_count);
107 ASSERT_EQ(child_count, obtained_count);
364 LONG child_count = 0; local
365 HRESULT hr = parent->get_accChildCount(&child_count);
367 ASSERT_EQ(child_count, children_.size());
369 scoped_ptr<VARIANT[]> child_array(new VARIANT[child_count]);
371 hr = AccessibleChildren(parent, 0, child_count,
    [all...]
browser_accessibility_win.cc 306 uint32 child_count = target->PlatformChildCount(); local
317 if (child_count > 0)
321 if (child_count > 0)
322 result = target->PlatformGetChild(child_count - 1);
360 STDMETHODIMP BrowserAccessibilityWin::get_accChildCount(LONG* child_count) {
364 if (!child_count)
367 *child_count = PlatformChildCount();
    [all...]
  /external/chromium_org/content/renderer/accessibility/
blink_ax_tree_source.cc 562 int child_count = src.childCount(); local
563 for (int i = 0; i < child_count; ++i) {
  /external/chromium_org/chrome/browser/extensions/api/bookmarks/
bookmarks_api.cc 163 index = parent->child_count();
166 if (index > parent->child_count() || index < 0) {
347 int childCount = node->child_count();
443 int child_count = node->child_count(); local
444 for (int i = 0; i < child_count; ++i) {
655 if (index > parent->child_count() || index < 0) {
660 index = parent->child_count();
  /external/chromium_org/ui/views/
view.h 174 int child_count() const { return static_cast<int>(children_.size()); } function in class:views::View
180 DCHECK_LT(index, child_count());
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
tree.rb 137 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
    [all...]
  /external/bluetooth/bluedroid/btif/src/
btif_config.c 592 int child_count = GET_CHILD_COUNT(p); local
593 bdla(p && ichild + count <= child_count && count > 0);
595 icount = icount <= child_count ? icount : child_count;
599 if(i < child_count)
601 int mv_count = child_count - i;
655 int child_count = GET_CHILD_COUNT(p); local
661 empty = find_first_empty(p, empty, child_count);
666 occupy = find_first_occupy(p, occupy, child_count);
683 int child_count = GET_CHILD_COUNT(key) local
704 int child_count = GET_CHILD_COUNT(s); local
    [all...]
  /external/chromium_org/chrome/browser/sync/
profile_sync_service_bookmark_unittest.cc 623 if (browser_index + 1 < bnode->parent()->child_count())
1044 int child_count = 0; local
    [all...]
  /external/clang/include/clang/AST/
Comment.h 233 unsigned child_count() const { function in class:clang::comments::Comment

Completed in 723 milliseconds

1 2