Home
last modified time | relevance | path

Searched full:statements (Results 1 – 25 of 1053) sorted by relevance

12345678910>>...43

/third_party/flutter/skia/third_party/externals/angle2/src/compiler/translator/tree_ops/
DPruneEmptyCases.cpp20 bool AreEmptyBlocks(TIntermSequence *statements);
33 // Pure literal statements should also already be pruned. in IsEmptyBlock()
38 // Return true if all statements in "statements" consist only of empty blocks and no-op statements.
39 // Returns true also if there are no statements.
40 bool AreEmptyBlocks(TIntermSequence *statements) in AreEmptyBlocks() argument
42 for (size_t i = 0u; i < statements->size(); ++i) in AreEmptyBlocks()
44 if (!IsEmptyBlock(statements->at(i))) in AreEmptyBlocks()
76 TIntermSequence *statements = statementList->getSequence(); in visitSwitch() local
80 size_t i = statements->size(); in visitSwitch()
85 TIntermNode *statement = statements->at(i); in visitSwitch()
[all …]
DRewriteDoWhile.cpp58 TIntermSequence *statements = node->getSequence(); in visitBlock() local
60 // The statements vector will have new statements inserted when we encounter a do-while, in visitBlock()
62 // the (two) new statements inserted replace the statement at the current position. in visitBlock()
63 for (size_t i = 0; i < statements->size(); i++) in visitBlock()
65 TIntermNode *statement = (*statements)[i]; in visitBlock()
110 // statements at the front. in visitBlock()
DRemoveSwitchFallThrough.cpp6 // RemoveSwitchFallThrough.cpp: Remove fall-through from switch statements.
92 // Note that this assumes that switch statements which don't begin by a case statement in visitSymbol()
152 // Don't go into nested switch statements in visitSwitch()
175 // Fall-through is allowed in case the label has no statements. in handlePreviousCase()
180 // Include all the statements that this case can fall through under the same label. in handlePreviousCase()
185 "switch statements generate extra code.", in handlePreviousCase()
257 // TODO: Verify that accepting return or continue statements here doesn't cause problems. in visitBranch()
/third_party/libxkbcommon/doc/
Dkeymap-format-text-v1.md17 ### Keycode statements
19 Statements of the form:
47 ### Alias statements
49 Statements of the form:
55 statements.
57 ### LED name statements
59 Statements of the form:
95 Statements of the form:
100 The body of the definition may include statements of the following
103 #### `level_name` statements
[all …]
/third_party/flutter/skia/third_party/externals/freetype/include/freetype/config/
Dftheader.h77 * header files. They can be used directly in `#include` statements as
105 * A macro used in `#include` statements to name the file containing
120 * A macro used in `#include` statements to name the file containing
135 * A macro used in `#include` statements to name the file containing
150 * A macro used in `#include` statements to name the file containing the
169 * A macro used in `#include` statements to name the file containing the
182 * A macro used in `#include` statements to name the file containing the
197 * A macro used in `#include` statements to name the file containing the
210 * A macro used in `#include` statements to name the file containing the
226 * A macro used in `#include` statements to name the file containing type
[all …]
/third_party/freetype/include/freetype/config/
Dftheader.h89 * directly in `#include` statements as in
112 * A macro used in `#include` statements to name the file containing
127 * A macro used in `#include` statements to name the file containing
142 * A macro used in `#include` statements to name the file containing
157 * A macro used in `#include` statements to name the file containing the
176 * A macro used in `#include` statements to name the file containing the
189 * A macro used in `#include` statements to name the file containing the
204 * A macro used in `#include` statements to name the file containing the
217 * A macro used in `#include` statements to name the file containing the
233 * A macro used in `#include` statements to name the file containing type
[all …]
/third_party/node/tools/node_modules/babel-eslint/node_modules/@babel/template/lib/
Dformatters.js6 exports.program = exports.expression = exports.statement = exports.statements = exports.smart = voi…
26 const statements = makeStatementFormatter(body => body); constant
27 exports.statements = statements;
34 throw new Error("Found multiple statements but wanted one");
46 throw new Error("Found multiple statements but wanted one");
Dindex.js6 exports.default = exports.program = exports.expression = exports.statements = exports.statement = e…
20 const statements = (0, _builder.default)(formatters.statements); constant
21 exports.statements = statements;
30 statements, property
/third_party/jerryscript/docs/
D15.MODULE-SYSTEM.md3 The module system allows users to write import and export statements in scripts, which can be used …
9 If a script contains import statements, then JerryScript will open and evaluate the the referenced …
36 * indirect export statements
38 * star export statements
42 * default import and export statements
87 ### Module namespace import statements
98 ### Indirect export statements
/third_party/flutter/skia/third_party/externals/angle2/src/tests/compiler_tests/
DPrunePureLiteralStatements_test.cpp7 // Tests for pruning literal statements.
85 // Test that the pruning correctly handles the pruning inside switch statements - for a switch with
105 // Test that the pruning correctly handles the pruning inside switch statements - for a switch with
128 // Test that the pruning correctly handles the pruning inside switch statements - only cases at the
151 // Test that the pruning correctly handles the pruning inside switch statements - pruning isn't
152 // stopped by literal statements
/third_party/node/tools/node_modules/eslint/lib/rules/
Dno-useless-return.js2 * @fileoverview Disallow redundant return statements
69 description: "disallow redundant return statements",
101 * Collects useless return statements from the given previous segments.
113 * @param {ASTNode[]} uselessReturns The collected return statements.
141 * Removes the return statements on the given segment from the useless return
154 * @param {CodePathSegment} segment The segment to get return statements.
176 * Removes the return statements on the current segments from the useless
209 // Reports useless return statements if exist.
261 …// Ignore `return` statements in unreachable places (https://github.com/eslint/eslint/issues/11647…
280 … * Removes return statements of the current segments from the useless return statement list.
Dmax-statements-per-line.js2 * @fileoverview Specify the maximum number of statements allowed per line.
22 description: "enforce a maximum number of statements allowed per line",
25 url: "https://eslint.org/docs/rules/max-statements-per-line"
42 …exceed: "This line has {{numberOfStatementsOnThisLine}} {{statements}}. Maximum allowed is {{maxSt…
74 statements: numberOfStatementsOnThisLine === 1 ? "statement" : "statements" property
100 * Skip to allow non-block statements if this is direct child of control statements.
Dmax-statements.js2 * @fileoverview A rule to set the maximum number of statements in a function.
25 description: "enforce a maximum number of statements allowed in function blocks",
28 url: "https://eslint.org/docs/rules/max-statements"
65 exceed: "{{name}} has too many statements ({{count}}). Maximum allowed is {{max}}."
91 * Reports a node if it has too many statements
93 * @param {int} count Number of statements in node
94 * @param {int} max Maximum number of statements allowed
Dvars-on-top.js74 * @param {ASTNode[]} statements collection of ASTNodes for the parent node block
77 function isVarOnTop(node, statements) { argument
78 const l = statements.length;
83 if (!looksLikeDirective(statements[i]) && !looksLikeImport(statements[i])) {
89 if (!isVariableDeclaration(statements[i])) {
92 if (statements[i] === node) {
/third_party/boost/libs/phoenix/doc/starter_kit/
Dstatement.qbk10 [section Lazy Statements]
12 Lazy statements? Sure. There are lazy versions of the C++ statements we all know
32 [blurb __tip__ Learn more about statements [link phoenix.modules.statement here.]]
/third_party/flutter/skia/src/sksl/ir/
DSkSLBlock.h17 * A block of multiple statements functioning as a single statement.
20 Block(int offset, std::vector<std::unique_ptr<Statement>> statements,
24 , fStatements(std::move(statements)) {} in INHERITED()
54 // because destroying statements can modify reference counts in symbols
/third_party/freetype/docs/reference/
Dft2-header_file_macros.html1764 …e to used named macros instead. They can be used directly in <code>#include</code> statements as in
1776 <p>A macro used in <code>#include</code> statements to name the file containing FreeType&nbsp;2 con…
1785 <p>A macro used in <code>#include</code> statements to name the file containing FreeType&nbsp;2 int…
1794 <p>A macro used in <code>#include</code> statements to name the file containing FreeType&nbsp;2 pro…
1803 <p>A macro used in <code>#include</code> statements to name the file containing the list of FreeTyp…
1810 <p>A macro used in <code>#include</code> statements to name the file containing the base FreeType&n…
1817 <p>A macro used in <code>#include</code> statements to name the file containing the list of FreeTyp…
1825 <p>A macro used in <code>#include</code> statements to name the file containing the list of FreeTyp…
1832 <p>A macro used in <code>#include</code> statements to name the file containing the FreeType&nbsp;2…
1840 <p>A macro used in <code>#include</code> statements to name the file containing type definitions re…
[all …]
/third_party/boost/libs/test/doc/testing_tools/
Dboost_test_universal_macro.qbk43 [#boost_test_statement_overloads][h3 Complex statements]
72 * statements containing ternary conditions: those statement should be surrounded by parenthesis as …
73 * statements containing commas: those statements will be intercepted by the preprocessor
74 * compound statements containing any logical composition `||`, `&&`. Those are disabled intentional…
/third_party/node/deps/npm/node_modules/is-callable/
D.istanbul.yml27 statements: [50, 80]
37 statements: 100
43 statements: 100
/third_party/boost/libs/phoenix/doc/modules/
Dstatement.qbk12 [*/Lazy statements.../]
16 and lazy-operators. How about lazy-statements? First, an appetizer:
41 [note Unlike lazy functions and lazy operators, lazy statements always
57 Basically, these are comma separated statements. Take note that unlike the C/C++
58 semicolon, the comma is a separator put *in-between* statements. This is like
66 Is an error. The last statement should not have a comma. Block statements can be
78 Outside the square brackets, block statements should be grouped. For example:
272 As before, all these are lazily evaluated. The result of such statements are in
/third_party/jerryscript/tests/
Dtest262-es6-excludelist.xml550 <test id="language/statements/class/definition/accessors.js"><reason></reason></test>
551 <test id="language/statements/class/definition/basics.js"><reason></reason></test>
552 <test id="language/statements/class/definition/fn-name-accessor-get.js"><reason></reason></test>
553 <test id="language/statements/class/definition/fn-name-accessor-set.js"><reason></reason></test>
554 <test id="language/statements/class/definition/fn-name-gen-method.js"><reason></reason></test>
555 <test id="language/statements/class/definition/fn-name-method.js"><reason></reason></test>
556 <test id="language/statements/class/definition/getters.js"><reason></reason></test>
557 <test id="language/statements/class/definition/methods.js"><reason></reason></test>
558 <test id="language/statements/class/definition/numeric-property-names.js"><reason></reason></test>
559 <test id="language/statements/class/definition/setters.js"><reason></reason></test>
[all …]
/third_party/gn/src/gn/
Dparse_tree_unittest.cc182 ASSERT_TRUE(input.parsed()->AsBlock()->statements()[0]->AsBinaryOp()); in TEST()
184 input.parsed()->AsBlock()->statements()[0]->AsBinaryOp(); in TEST()
208 ASSERT_TRUE(input.parsed()->AsBlock()->statements()[0]->AsBinaryOp()); in TEST()
210 input.parsed()->AsBlock()->statements()[0]->AsBinaryOp(); in TEST()
230 ASSERT_TRUE(input.parsed()->AsBlock()->statements()[0]->AsBinaryOp()); in TEST()
232 input.parsed()->AsBlock()->statements()[0]->AsBinaryOp(); in TEST()
252 ASSERT_TRUE(input.parsed()->AsBlock()->statements()[0]->AsBinaryOp()); in TEST()
254 input.parsed()->AsBlock()->statements()[0]->AsBinaryOp(); in TEST()
/third_party/boost/libs/spirit/example/lex/
Dexample2.cpp16 // simple sentences (statements, questions and commands) are recognized and
72 , paragraphs(0), commands(0), questions(0), statements(0) in example2_grammar()
81 | statement [ ++ref(statements) ] in example2_grammar()
108 int paragraphs, commands, questions, statements; member
157 << calc.statements << " statements.\n"; in main()
/third_party/python/Doc/reference/
Dcompound_stmts.rst4 Compound statements
9 Compound statements contain (groups of) other statements; they affect or control
10 the execution of those other statements in some way. In general, compound
11 statements span multiple lines, although in simple incarnations a whole compound
14 The :keyword:`if`, :keyword:`while` and :keyword:`for` statements implement
16 handlers and/or cleanup code for a group of statements, while the
19 also syntactically compound statements.
29 identifying keyword and ends with a colon. A suite is a group of statements
31 statements on the same line as the header, following the header's colon, or it
32 can be one or more indented statements on subsequent lines. Only the latter
[all …]
/third_party/boost/libs/spirit/classic/phoenix/doc/
Defficiency.html29statements, while truly expressive, should be used judiciously and sparingly. While aggressive com…
33 …l these functions lazily using straight-forward inline lazy-operators and lazy-statements. </td>
37 …g and generative programming as can be done by lazy-operators and lazy-statements, these tools are…

12345678910>>...43