Home
last modified time | relevance | path

Searched refs:statements (Results 1 – 25 of 232) sorted by relevance

12345678910

/OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/parse/parse_py/
H A DBBHandler.py73 statements = ast.StatementGroup()
81 feeder(lineno, s, filename, base_name, statements)
85 feeder(lineno, "", filename, base_name, statements, eof=True)
88 cached_statements[absolute_filename] = statements
89 return statements
117 statements = get_statements(fn, abs_fn, base_name)
124 statements.eval(d)
143 def feeder(lineno, s, fn, root, statements, eof=False): argument
158 … ast.handleMethod(statements, fn, lineno, __infunc__[0], __body__, __infunc__[3], __infunc__[4])
171 ast.handlePythonMethod(statements, fn, lineno, __inpython__,
[all …]
H A DConfHandler.py121 statements = ast.StatementGroup()
147 feeder(lineno, s, abs_fn, statements)
151 statements.eval(data)
160 def feeder(lineno, s, fn, statements): argument
164 ast.handleData(statements, fn, lineno, groupd)
169 ast.handleInclude(statements, fn, lineno, m, False)
174 ast.handleInclude(statements, fn, lineno, m, True)
179 ast.handleExport(statements, fn, lineno, m)
184 ast.handleUnset(statements, fn, lineno, m)
189 ast.handleUnsetFlag(statements, fn, lineno, m)
/OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/parse/
H A Dast.py280 def handleInclude(statements, filename, lineno, m, force): argument
281 statements.append(IncludeNode(filename, lineno, m.group(1), force))
283 def handleExport(statements, filename, lineno, m): argument
284 statements.append(ExportNode(filename, lineno, m.group(1)))
286 def handleUnset(statements, filename, lineno, m): argument
287 statements.append(UnsetNode(filename, lineno, m.group(1)))
289 def handleUnsetFlag(statements, filename, lineno, m): argument
290 statements.append(UnsetFlagNode(filename, lineno, m.group(1), m.group(2)))
292 def handleData(statements, filename, lineno, groupd): argument
293 statements.append(DataNode(filename, lineno, groupd))
[all …]
/OK3568_Linux_fs/kernel/sound/soc/sof/intel/
H A DKconfig18 'select' statements at a higher level
34 'select' statements at a higher level
40 'select' statements at a higher level
48 'select' statements at a higher level
58 'select' statements at a higher level
83 'select' statements at a higher level
107 'select' statements at a higher level
126 'select' statements at a higher level
141 'select' statements at a higher level
156 'select' statements at a higher level
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/lib/gcc/aarch64-none-linux-gnu/10.3.1/plugin/include/
H A Dgimple.def31 These are all the GIMPLE statements with register operands. */
55 /* GIMPLE_LABEL <LABEL> represents label statements. LABEL is a
80 statements with memory and register operands. */
104 represents inline assembly statements.
106 STRING is the string containing the assembly statements.
129 BODY is the sequence of statements inside the transaction.
135 /* GIMPLE_RETURN <RETVAL> represents return statements.
144 BODY is the sequence of statements in the scope. */
149 sequence of statements that handle these types. */
154 sequence of statements to execute on failure. */
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/lib/gcc/arm-none-linux-gnueabihf/10.3.1/plugin/include/
H A Dgimple.def31 These are all the GIMPLE statements with register operands. */
55 /* GIMPLE_LABEL <LABEL> represents label statements. LABEL is a
80 statements with memory and register operands. */
104 represents inline assembly statements.
106 STRING is the string containing the assembly statements.
129 BODY is the sequence of statements inside the transaction.
135 /* GIMPLE_RETURN <RETVAL> represents return statements.
144 BODY is the sequence of statements in the scope. */
149 sequence of statements that handle these types. */
154 sequence of statements to execute on failure. */
[all …]
/OK3568_Linux_fs/kernel/sound/soc/sof/imx/
H A DKconfig20 'select' statements at a higher level
26 'select' statements at a higher level.
43 'select' statements at a higher level
59 'select' statements at a higher level
/OK3568_Linux_fs/u-boot/doc/
H A DREADME.log78 With logging enabled, debug() statements are interpreted as logging output
83 statements will result in output to the console and this output will not be
113 Logging statements
168 Convert debug() statements in the code to log() statements
170 Support making printf() emit log statements a L_INFO level
172 Convert error() statements in the code to log() statements
203 Add a printf() format string pragma so that log statements are checked properly
/OK3568_Linux_fs/kernel/Documentation/doc-guide/
H A Dparse-headers.rst77 The EXCEPTIONS_FILE contain two types of statements: \ **ignore**\ or \ **replace**\ .
96 For both statements, \ **type**\ can be either one of the following:
116 The ignore or replace statement will apply to typedef statements at C_FILE.
122 The ignore or replace statement will apply to the name of struct statements
129 The ignore or replace statement will apply to the name of enum statements
139 For replace statements, \ **new_value**\ will automatically use :c:type:
/OK3568_Linux_fs/kernel/drivers/net/ethernet/neterion/
H A DKconfig51 bool "Enabling All Debug trace statements in driver"
55 Say Y here if you want to enabling all the debug trace statements in
56 the vxge driver. By default only few debug trace statements are
/OK3568_Linux_fs/kernel/Documentation/core-api/
H A Dsymbol-namespaces.rst17 === 5 Automatically creating MODULE_IMPORT_NS statements
73 That will affect all EXPORT_SYMBOL() and EXPORT_SYMBOL_GPL() statements. A
111 5. for a way to create missing import statements automatically.
125 5. Automatically creating MODULE_IMPORT_NS statements
131 MODULE_IMPORT_NS() statements will usually be added at a definite location
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-support/monit/monit/
H A Dmonitrc8 ## Below you will find examples of some frequently used statements. For
9 ## information about the control file and a complete list of statements and
/OK3568_Linux_fs/kernel/drivers/acpi/acpica/
H A Ddbmethod.c236 void acpi_db_disassemble_aml(char *statements, union acpi_parse_object *op) in acpi_db_disassemble_aml() argument
245 if (statements) { in acpi_db_disassemble_aml()
246 num_statements = strtoul(statements, NULL, 0); in acpi_db_disassemble_aml()
/OK3568_Linux_fs/yocto/poky/meta/files/common-licenses/
H A DOLDAP-2.46 1. Redistributions of source code must retain copyright statements and notices.
8 2. Redistributions in binary form must reproduce applicable copyright statements and notices, this …
H A DOLDAP-2.66 1. Redistributions of source code must retain copyright statements and notices.
8 2. Redistributions in binary form must reproduce applicable copyright statements and notices, this …
H A DOLDAP-2.2.26 1. Redistributions of source code must retain copyright statements and notices.
8 2. Redistributions in binary form must reproduce applicable copyright statements and notices, this …
H A DOLDAP-2.56 1. Redistributions of source code must retain copyright statements and notices.
8 2. Redistributions in binary form must reproduce applicable copyright statements and notices, this …
H A DOLDAP-2.89 1. Redistributions in source form must retain copyright statements
13 statements and notices, this list of conditions, and the following
H A DOLDAP-2.36 1. Redistributions of source code must retain copyright statements and notices.
8 2. Redistributions in binary form must reproduce applicable copyright statements and notices, this …
H A DOLDAP-2.76 1. Redistributions of source code must retain copyright statements and notices,
8 2. Redistributions in binary form must reproduce applicable copyright statements and notices, this …
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/licenses/
H A DOpenLDAP8 1. Redistributions in source form must retain copyright statements
12 statements and notices, this list of conditions, and the following
/OK3568_Linux_fs/buildroot/dl/dhrystone/
H A Ddhry-c54 - statements. It has turned out in the past that optimizing compilers
55 - suppressed code generation for too many statements (by "dead code removal"
61 -statements, operand types and operand locality described in [1] should remain
63 -should be negligible.) Also, the order of statements should remain unchanged.
97 -The original publication of Dhrystone did not contain any statements for time
102 -"dead variables" and suppresses code generation for a part of the statements.
113 -(distribution of statements, operand types and locality) still hold as much as
118 -executed statements should not be changed, there are still cases where
119 -optimizing compilers may not generate code for some statements. To a certain
122 -statements of Dhrystone.
[all …]
/OK3568_Linux_fs/buildroot/package/python-sqlparse/
H A DConfig.in6 SQL statements.
/OK3568_Linux_fs/buildroot/package/libconfuse/
H A DConfig.in9 statements.
/OK3568_Linux_fs/kernel/Documentation/driver-api/mtd/
H A Dnand_ecc.rst270 Still pretty straightforward. The last three invert statements are there to
406 multiple statements on a line, not using { } in then and else blocks
424 statements. Also we can optimise the calculation in the end a little bit
459 statements is reduced. This is also reflected in the assembly code.
472 loop unrolling. This will eliminate a few if statements. I'll try
526 This included the else clause of the if statements.
543 statements. Why not keep a running parity and only keep the last if
580 iteration. In the last 3 statements is added to par and, if needed,
601 places with statements::
606 loop; This eliminates 3 statements per loop. Of course after the loop we
[all …]

12345678910