Home
last modified time | relevance | path

Searched refs:escape (Results 1 – 25 of 31) sorted by relevance

12

/Zephyr-latest/boards/native/common/extra_args/
Dextra_args.c31 bool new_arg = true, literal = false, escape = false; in register_kconfig_args() local
38 if ((literal == false) && (escape == false) && isspace(kconfig_args[i])) { in register_kconfig_args()
43 if ((escape == false) && (kconfig_args[i] == '\\')) { in register_kconfig_args()
44 escape = true; in register_kconfig_args()
49 if ((escape == false) && (kconfig_args[i] == '"')) { in register_kconfig_args()
55 escape = false; in register_kconfig_args()
/Zephyr-latest/scripts/dts/python-devicetree/tests/
Dtest_dtlib.py1523 re.escape("to be assigned with either 'a = &foo' or 'a = \"/path/to/node\"', not 'a = [ 00 ];'"))
1534 re.escape(r"value of property 'a' (b'\xff\x00') on /aliases in ") +
1685 re.escape("'two_u = < (number) >;', not 'two_u = < 0x1 0x2 >;'"))
1689 re.escape("'u8 = < (number) >;', not 'u8 = [ 01 ];'"))
1693 re.escape("'u16 = < (number) >;', not 'u16 = /bits/ 16 < 0x1 0x2 >;'"))
1697 re.escape("'u64 = < (number) >;', not 'u64 = /bits/ 64 < 0x1 >;'"))
1701 re.escape("'string = < (number) >;', not 'string = \"foo\\tbar baz\";'"))
1727 re.escape("'empty = < (number) (number) ... >;', not 'empty;'"))
1731 re.escape("'string = < (number) (number) ... >;', ") +
1732 re.escape("not 'string = \"foo\\tbar baz\";'"))
[all …]
/Zephyr-latest/scripts/logging/dictionary/dictionary_parser/
Dmipi_syst.py11 from xml.sax.saxutils import escape
87 xml += XML_MODULE_EACH.format(one_inst['source_id'], escape(one_inst['name']))
/Zephyr-latest/subsys/shell/modules/
Ddevmem_service.c174 bool escape = false; in bypass_cb() local
179 escape = true; in bypass_cb()
183 escape = true; in bypass_cb()
189 if (escape) { in bypass_cb()
/Zephyr-latest/samples/subsys/shell/shell_module/src/
Dmain.c270 bool escape = false; in bypass_cb() local
274 escape = true; in bypass_cb()
278 escape = true; in bypass_cb()
284 if (escape) { in bypass_cb()
/Zephyr-latest/doc/
DMakefile9 LATEXMKOPTS ?= -halt-on-error -no-shell-escape
DCMakeLists.txt17 set(LATEXMKOPTS "-halt-on-error -no-shell-escape" CACHE STRING "Default latexmk options")
/Zephyr-latest/scripts/pylib/pytest-twister-harness/src/twister_harness/helpers/
Dshell.py64 regex_prompt = re.escape(self.prompt)
105 '|'.join([re.escape(self.prompt), '<dbg>', '<inf>', '<wrn>', '<err>'])
/Zephyr-latest/tests/lib/devicetree/api/
Dapp.overlay781 test_str_unquoted_esc_t: string-unquoted-escape-t {
790 test_str_unquoted_esc_s: string-unquoted-escape-s {
814 test_stra_unquoted_esc: string-array-unquoted-escape {
819 test_str_escape_0: string-escape-0 {
824 test_str_escape_1: string-escape-1 {
829 test_str_escape_2: string-escape-2 {
834 test_str_escape_3: string-escape-3 {
839 test_stra_escape: string-array-escape {
/Zephyr-latest/scripts/dts/
Dgen_dts_cmake.py61 def escape(value): function
Dgen_defines.py1067 def escape(s: str) -> str: function
/Zephyr-latest/samples/net/telnet/
DREADME.rst56 Telnet escape character is '^]'.
124 Telnet escape character is '^]'.
/Zephyr-latest/samples/subsys/shell/devmem_load/
DREADME.md34 press ctrl-x ctrl-q to escape
/Zephyr-latest/scripts/west_commands/runners/
Dnrf_common.py17 from re import escape, fullmatch
189 re_glob = escape(glob).replace(r"\*", ".+")
/Zephyr-latest/tests/drivers/can/host/pytest/
Dcan_shell.py169 frame_regex = r'.*' + re.escape(self._device) + \
/Zephyr-latest/lib/utils/
Djson.c943 char escape = escape_as(next_c); in json_escape() local
945 if (escape) { in json_escape()
946 *(--dest) = escape; in json_escape()
/Zephyr-latest/subsys/shell/
DKconfig56 bool "Default escape code for backspace is DELETE (0x7F)"
59 Terminals have different escape code settings for backspace button.
/Zephyr-latest/scripts/tests/twister_blackbox/
Dtest_outfile.py155 cmake_call_section = r'^Calling cmake: ' + re.escape(cmake_path)
/Zephyr-latest/scripts/ci/es_upload/
DREADME.md64 `--flatten-separator`, `--transpose-separator`, `--escape-separator`.
/Zephyr-latest/scripts/ci/
Dpylintrc235 anomalous-unicode-escape-in-string,
/Zephyr-latest/scripts/kconfig/
Dkconfiglib.py1493 .format(self.config_prefix, sym.name, escape(val)))
4587 .format(self.kconfig.config_prefix, self.name, escape(val))
5879 indent_add_cond(prefix + ' "{}"'.format(escape(self.prompt[0])),
6098 return '"{}"'.format(escape(sc.name))
6220 def escape(s): function
/Zephyr-latest/doc/develop/west/
Dworkspaces.rst140 "escape" it.
/Zephyr-latest/subsys/shell/backends/
DKconfig.backends98 escape sequences). However, if bulk data is transferred it may be
/Zephyr-latest/scripts/dts/python-devicetree/src/devicetree/
Ddtlib.py2161 "|".join(re.escape(pat) for pat in (
/Zephyr-latest/doc/services/shell/
Dindex.rst27 * Support for ANSI escape codes: ``VT100`` and ``ESC[n~`` for cursor control

12