Home
last modified time | relevance | path

Searched refs:visible (Results 1 – 25 of 58) sorted by relevance

123

/hal_espressif-2.7.6/tools/kconfig_new/test/gen_kconfig_doc/
Dtest_target_visibility.py30 def visible(self, config_name): member in ConfigTargetVisibilityTestCase
31 self.assertTrue(self.v.visible(self._get_config(config_name)))
34 self.assertFalse(self.v.visible(self._get_config(config_name)))
45 self.visible('ALWAYS_VISIBLE')
46 self.visible('ALWAYS_VISIBLE_CHOICE')
47 self.visible('CONFIG_FOR_CHIPA')
49 self.visible('CHOICE_FOR_CHIPA')
51 self.visible('EXT_CONFIG1_FOR_CHIPA_MENU')
52 self.visible('EXT_CONFIG2_FOR_CHIPA_MENU')
53 self.visible('EXT_CONFIG3_FOR_CHIPA')
[all …]
DKconfig14 bool "Always visible option"
17 prompt "Always visible choice"
37 prompt "Always visible choice"
49 prompt "Always visible choice"
104 …bool "test other environment variable (should be visible because only IDF_TARGET should make somet…
108 …bool "test other environment variable (should be visible because only IDF_TARGET should make somet…
DKconfig.chipb2 visible if IDF_TARGET_CHIPB
DKconfig.chipa2 visible if IDF_TARGET_CHIPA
/hal_espressif-2.7.6/tools/kconfig_new/test/confserver/
Dtestcases_v2.txt3 …ONDITIONAL_RANGES": [0, 100], "TEST_CONDITIONAL_HEX_RANGES": [0, 175]}, "visible": {"TEST_CHILD_BO…
11 …ONDITIONAL_RANGES": [0, 10], "TEST_CONDITIONAL_HEX_RANGES": [16, 175]}, "visible": { "TEST_CHILD_B…
33 * Disabling all items in a submenu causes all sub-items to have visible:False
35 < { "values" : { "SUBMENU_TRIGGER": false}, "visible": { "test-config-submenu" : false, "SUBMENU_IT…
37 * Re-enabling submenu causes that menu to be visible again, and refreshes sub-items
39 < { "values" : { "SUBMENU_TRIGGER": true}, "visible": {"test-config-submenu": true, "SUBMENU_ITEM_A…
43 < { "values" : { "SUBMENU_CONFIG": false }, "visible": { "SUBMENU_CONFIG_ITEM": false } }
47 < { "values" : { "SUBMENU_CONFIG_ITEM": true, "SUBMENU_CONFIG" : true }, "visible": { "SUBMENU_CONF…
DREADME.md22 …_CHILD_BOOL" : true }, "ranges": {"TEST_CONDITIONAL_RANGES": [0, 100]}, "visible": {"TEST_CHILD_BO…
/hal_espressif-2.7.6/tools/kconfig/
Dsymbol.c68 if (sym_is_choice_value(sym) && sym->visible == yes) in sym_get_type()
120 prop->visible.tri = expr_calc_value(prop->visible.expr); in sym_get_default_prop()
121 if (prop->visible.tri != no) in sym_get_default_prop()
132 prop->visible.tri = expr_calc_value(prop->visible.expr); in sym_get_range_prop()
133 if (prop->visible.tri != no) in sym_get_range_prop()
217 prop->visible.tri = expr_calc_value(prop->visible.expr); in sym_calc_visibility()
218 tri = EXPR_OR(tri, prop->visible.tri); in sym_calc_visibility()
222 if (sym->visible != tri) { in sym_calc_visibility()
223 sym->visible = tri; in sym_calc_visibility()
263 prop->visible.tri = expr_calc_value(prop->visible.expr); in sym_choice_default()
[all …]
Dmenu.c134 prop->visible.expr = menu_check_dep(dep); in menu_add_prop()
165 prop->visible.expr in menu_add_prop()
166 = expr_alloc_and(prop->visible.expr, in menu_add_prop()
310 parentdep = parent->prompt->visible.expr; in menu_finalize()
326 dep = expr_transform(prop->visible.expr); in menu_finalize()
331 prop->visible.expr = dep; in menu_finalize()
342 basedep = parent->prompt ? parent->prompt->visible.expr : NULL; in menu_finalize()
347 dep = menu->prompt ? menu->prompt->visible.expr : menu->dep; in menu_finalize()
404 prop->visible.expr = expr_alloc_and(expr_copy(basedep), in menu_finalize()
405 prop->visible.expr); in menu_finalize()
[all …]
Dzconf.y455 | visibility_list visible
459 visible: T_VISIBLE if_expr
664 if (!expr_is_yes(prop->visible.expr)) { in print_symbol()
666 expr_fprint(prop->visible.expr, out); in print_symbol()
673 if (!expr_is_yes(prop->visible.expr)) { in print_symbol()
675 expr_fprint(prop->visible.expr, out); in print_symbol()
735 if (!expr_is_yes(prop->visible.expr)) { in zconfdump()
737 expr_fprint(prop->visible.expr, out); in zconfdump()
Dqconf.h127 : Parent(parent, after), nextItem(0), menu(m), visible(v), goParent(false) in ConfigItem()
132 : Parent(parent, after), nextItem(0), menu(m), visible(v), goParent(false) in ConfigItem()
137 : Parent(parent, after), nextItem(0), menu(0), visible(v), goParent(true) in ConfigItem()
188 bool visible; variable
Dqconf.cc210 if (!sym_has_value(sym) && visible) in updateMenu()
220 visible = v; in testUpdateMenu()
583 bool visible; in updateMenuList() local
615 visible = menu_is_visible(child); in updateMenuList()
620 item = new ConfigItem(parent, last, child, visible); in updateMenuList()
622 item->testUpdateMenu(visible); in updateMenuList()
648 bool visible; in updateMenuList() local
680 visible = menu_is_visible(child); in updateMenuList()
685 item = new ConfigItem(parent, last, child, visible); in updateMenuList()
687 item->testUpdateMenu(visible); in updateMenuList()
[all …]
Dkconfig-language.txt22 visible if its parent entry is also visible.
69 default values are visible, only the first defined one is active.
75 prompt is visible the default value is presented to the user and can
111 In general use select only for non-visible symbols
116 - limiting menu display: "visible if" <expr>
121 entries. Default value of "visible" is true.
195 respectively for calculations). A menu entry becomes visible when its
231 - the child entry must only be visible, if the parent is visible
243 MODVERSIONS directly depends on MODULES, this means it's only visible if
245 visible when MODULES is visible (the (empty) dependency of MODULES is
[all …]
Dexpr.h83 tristate visible; member
149 struct expr_value visible; member
Dzconf.gperf41 visible, T_VISIBLE, TF_COMMAND
/hal_espressif-2.7.6/components/bt/
DKconfig2 visible if (IDF_TARGET_ESP32 || IDF_TARGET_ESP32C3 || IDF_TARGET_ESP32S3)
31 visible if BT_CTRL_ESP32
37 visible if BT_CTRL_ESP32C3
43 visible if BT_CTRL_ESP32S3
76 visible if BT_BLUEDROID_ENABLED
81 visible if BT_NIMBLE_ENABLED
/hal_espressif-2.7.6/tools/kconfig_new/
Dgen_kconfig_doc.py95 if len(vis_list) > 0 and all([not visible for (visible, _) in vis_list]):
105 (visible, source) = vis_list[0]
106 if visible:
144 def visible(self, node): member in ConfigTargetVisibility
221 …return hasattr(e, 'nodes') and len(e.nodes) > 0 and all(not visibility.visible(i) for i in e.nodes)
285 if is_choice(node) or not visibility.visible(node):
347 if len(cond.nodes) > 0 and all(not visibility.visible(i) for i in cond.nodes):
365 if len(cond.nodes) > 0 and all(not visibility.visible(i) for i in cond.nodes):
390 if not is_choice(child) and child.prompt and visibility.visible(child):
DREADME.md30 "visible": { "TEST_CONDITIONAL_RANGES": true,
42 * "visible" holds a dictionary showing initial visibility status of config symbols (identified by t…
75 "visible": { "test-config-submenu": false},
82 * `visible` contains any visibility changes, where the visible config symbols have changed.
90 "visible": { },
119 * V2: Added the `visible` key to the response. Invisible items are no longer represented as having …
Dconfserver.py303 visible = (sym.visibility != 0)
304 result[node] = visible
/hal_espressif-2.7.6/components/xtensa/include/xtensa/
Dtraxreg.h162 char visible; /* 0 = internal use only, 1 = shown */
172 char visible; member
/hal_espressif-2.7.6/examples/peripherals/i2c/i2c_tools/
DREADME.md14 3. `i2cget`: It will read registers visible through the I2C bus.
15 4. `i2cset`: It will set registers visible through the I2C bus.
16 5. `i2cdump`: It will examine registers visible through the I2C bus.
83 Read registers visible through the I2C bus
89 Set registers visible through the I2C bus
95 Examine registers visible through the I2C bus
/hal_espressif-2.7.6/examples/protocols/mqtt/ssl/main/
DKconfig.projbuild21 # This option is not visible and is used only to set parameters for example tests
/hal_espressif-2.7.6/docs/_static/
Dtheme_overrides.css11 overflow: visible !important;
/hal_espressif-2.7.6/examples/bluetooth/bluedroid/coex/a2dp_gatts_coex/
DREADME.md10 …a connection is established, audio data can be transmitted. This will be visible in the applicatio…
/hal_espressif-2.7.6/docs/en/api-guides/jtag-debugging/
Dconfigure-other-jtag.rst30 …wer on {IDF_TARGET_NAME} and JTAG interface boards. Check if JTAG interface is visible by computer.
/hal_espressif-2.7.6/docs/
DREADME.md5 The sources do not render well in GitHub and some information is not visible at all.

123