Home
last modified time | relevance | path

Searched refs:is_default (Results 1 – 17 of 17) sorted by relevance

/openbmc/openbmc/poky/bitbake/lib/toaster/toastergui/templatetags/
H A Dproject_url_tag.py31 if project.is_default:
/openbmc/openbmc/poky/bitbake/lib/toaster/tests/browser/
H A Dtest_project_page.py31 default_project.is_default = True
H A Dtest_all_projects_page.py36 self.default_project.is_default = True
73 self.project.is_default = False
H A Dtest_project_builds_page.py43 self.default_project.is_default = True
H A Dtest_landing_page.py31 self.project.is_default = True
H A Dtest_all_builds_page.py42 self.default_project.is_default = True
/openbmc/qemu/include/system/
H A Dblockdev.h32 bool is_default; /* Added by default_drive() ? */ member
/openbmc/qemu/hw/xtensa/
H A Dsim.c123 mc->is_default = true; in xtensa_sim_machine_init()
/openbmc/phosphor-networkd/test/
H A Dmeson.build65 is_default: true,
/openbmc/qemu/hw/sparc64/
H A Dniagara.c146 dinfo->is_default = 1; in niagara_init()
/openbmc/qemu/hw/microblaze/
H A Dpetalogix_s3adsp1800_mmu.c174 mc->is_default = true; in petalogix_s3adsp1800_machine_class_init()
/openbmc/openbmc/poky/bitbake/lib/toaster/toastergui/
H A Dtypeaheads.py157 projects = Project.objects.exclude(is_default=True).order_by("name")
H A Dwidgets.py547 build['is_default_project_build'] = build_obj.project.is_default
H A Dtables.py864 q_default_with_builds = Q(is_default=True) & Q(num_builds__gt=0)
865 queryset = queryset.filter(Q(is_default=False) |
H A Dviews.py95 user_projects = Project.objects.filter(is_default = False)
1267 "non_cli_projects": projects.exclude(is_default=True),
/openbmc/qemu/hw/openrisc/
H A Dvirt.c553 mc->is_default = false; in openrisc_virt_machine_init()
/openbmc/openbmc/poky/bitbake/lib/toaster/orm/
H A Dmodels.py154 projects = super(ProjectManager, self).filter(is_default=True)
198 is_default= models.BooleanField(default=False) variable in Project