Home
last modified time | relevance | path

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

12345678910>>...85

/external/fonttools/Tests/feaLib/
Dparser_test.py99 c1 = doc.statements[0]
100 c2 = doc.statements[1].statements[1]
106 self.assertEqual(doc.statements[1].name, "test")
114 c1 = doc.statements[0]
125 anchor = doc.statements[0].statements[0].entryAnchor
139 anchor = doc.statements[0].statements[0].entryAnchor
155 anchor = doc.statements[0].statements[0].entryAnchor
169 anchor = doc.statements[0].statements[0].exitAnchor
179 anchor = doc.statements[0].statements[1].entryAnchor
203 anchor = doc.statements[0].statements[0].entryAnchor
[all …]
/external/selinux/secilc/docs/
DREADME.md33 * [Call / Macro Statements](cil_call_macro_statements.md#call--macro-statements)
37 * [Class and Permission Statements](cil_class_and_permission_statements.md#class-and-permission-sta…
48 * [Conditional Statements](cil_conditional_statements.md#conditional-statements)
54 * [Constraint Statements](cil_constraint_statements.md#constraint-statements)
60 * [Container Statements](cil_container_statements.md#container-statements)
70 * [Default Object Statements](cil_default_object_statements.md#default-object-statements)
76 * [File Labeling Statements](cil_file_labeling_statements.md#file-labeling-statements)
81 * [Multi-Level Security Labeling Statements](cil_mls_labeling_statements.md#multi-level-security-la…
98 * [Network Labeling Statements](cil_network_labeling_statements.md#network-labeling-statements)
104 * [Policy Configuration Statements](cil_policy_config_statements.md#policy-configuration-statements)
[all …]
Dcil_conditional_statements.md1 Conditional Statements
47 Contains the run time conditional statements that are instantiated in the binary policy according t…
49 [`call`](cil_call_macro_statements.md#call) statements are allowed within a [`booleanif`](cil_condi…
92 <td align="left"><p>An optional set of CIL statements that will be instantiated when the <code>bool…
96 <td align="left"><p>An optional set of CIL statements that will be instantiated when the <code>bool…
127 Tunables are similar to booleans, however they are used to manage areas of CIL statements that may …
131 …onal_statements.md#tunableif) statements are resolved first, [`tunable`](cil_conditional_statement…
169 Compile time conditional statement that may or may not add CIL statements to be compiled.
171statements allowed in a [`booleanif`](cil_conditional_statements.md#booleanif) block are allowed i…
214 <td align="left"><p>An optional set of CIL statements that will be instantiated when the <code>tuna…
[all …]
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/stmt/
DBlockStmt.java40 * Statements in between { and }.
46 private NodeList<Statement> statements; field in BlockStmt
53 public BlockStmt(final NodeList<Statement> statements) { in BlockStmt() argument
54 this(null, statements); in BlockStmt()
61 public BlockStmt(TokenRange tokenRange, NodeList<Statement> statements) { in BlockStmt() argument
63 setStatements(statements); in BlockStmt()
81 return statements; in getStatements()
85 public BlockStmt setStatements(final NodeList<Statement> statements) { in setStatements() argument
86 assertNotNull(statements); in setStatements()
87 if (statements == this.statements) { in setStatements()
[all …]
DSwitchEntry.java53 * <br/>The first one has label 1 and no statements.
54 * <br/>The second has label 2 and two statements (the println and the break).
65 * which is stored as the first and only statement in statements.
66 …ne is of type BLOCK and stores its {@link BlockStmt} as the first and only statement in statements.
67 …pe THROWS_STATEMENT and stores its {@link ThrowStmt} as the first and only statement in statements.
90 private NodeList<Statement> statements; field in SwitchEntry
99 …chEntry(final NodeList<Expression> labels, final Type type, final NodeList<Statement> statements) { in SwitchEntry() argument
100 this(null, labels, type, statements); in SwitchEntry()
107 …ry(TokenRange tokenRange, NodeList<Expression> labels, Type type, NodeList<Statement> statements) { in SwitchEntry() argument
111 setStatements(statements); in SwitchEntry()
[all …]
/external/angle/src/compiler/translator/tree_ops/
DPruneEmptyCases.cpp20 bool AreEmptyBlocks(const 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(const 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 …]
/external/fonttools/Tests/voltLib/
Dparser_test.py26 ).statements
34 ).statements
43 ).statements
52 ).statements
61 ).statements
69 ).statements
77 ).statements
85 ).statements
93 ).statements
101 ).statements
[all …]
/external/tensorflow/tensorflow/python/autograph/g3doc/reference/
Dcontrol_flow.md7 AutoGraph rewrites all control flow statements with specialized AutoGraph
14 Key Point: Only statements that are conditioned on, or iterate over, a
20 normal Python control flow. Statements which would normally raise an error, for
125 This explains why inserting `print` statements in an `if` statement produces
179 ### `if` statements
181 `if` statements whose condition is a `tf.Tensor` are executed as TensorFlow
191 `if` statements whose condition is not a `tf.Tensor` are executed as normal
201 `if` statements executed as TensorFlow conditionals are subject to restrictions
211 ### `while` statements
213 `while` statements whose condition is a `tf.Tensor` are executed as TensorFlow
[all …]
/external/libxkbcommon/doc/
Dkeymap-format-text-v1.md23 ### Keycode statements
25 Statements of the form:
53 ### Alias statements
55 Statements of the form:
61 statements.
63 ### LED name statements
65 Statements of the form:
101 Statements of the form:
106 The body of the definition may include statements of the following
109 #### `level_name` statements
[all …]
/external/skia/src/sksl/ir/
DSkSLBlock.cpp15 std::unique_ptr<Statement> Block::MakeUnscoped(int line, StatementArray statements) { in MakeUnscoped() argument
17 if (statements.empty()) { in MakeUnscoped()
21 if (statements.size() > 1) { in MakeUnscoped()
22 // The statement array contains multiple statements, but some of those might be no-ops. in MakeUnscoped()
26 for (std::unique_ptr<Statement>& stmt : statements) { in MakeUnscoped()
34 return std::make_unique<Block>(line, std::move(statements), in MakeUnscoped()
44 // The statement array contained nothing but empty statements! in MakeUnscoped()
46 // We can just return one of those empty statements. Fall through to... in MakeUnscoped()
49 return std::move(statements.front()); in MakeUnscoped()
53 StatementArray statements, in Make() argument
[all …]
DSkSLBlock.h17 * A block of multiple statements functioning as a single statement.
23 Block(int line, StatementArray statements,
26 , fChildren(std::move(statements)) in INHERITED()
33 StatementArray statements,
37 // An unscoped Block is just a collection of Statements. For a single-statement Block,
39 static std::unique_ptr<Statement> MakeUnscoped(int line, StatementArray statements);
77 // If isScope is false, this is just a group of statements rather than an actual language-level
78 // block. This allows us to pass around multiple statements as if they were a single unit, with
/external/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 …]
/external/fonttools/Lib/fontTools/feaLib/
Dparser.py34 By default, the parser will follow ``include()`` statements in the feature
82 statements = self.doc_.statements
86 statements.append(
90 statements.append(self.parse_include_())
92 statements.append(self.parse_glyphclass_definition_())
94 statements.append(self.parse_anonymous_())
96 statements.append(self.parse_anchordef_())
98 statements.append(self.parse_languagesystem_())
100 statements.append(self.parse_lookup_(vertical=False))
102 statements.append(self.parse_markClass_())
[all …]
/external/slf4j/log4j-over-slf4j/src/main/java/org/apache/log4j/helpers/
DLogLog.java20 This class used to output log statements from within the log4j package.
39 statements to <code>System.out</code>.
48 debug statements to <code>System.out</code>.
81 statements. Output goes to <code>System.out</code>.
91 statements. Output goes to <code>System.out</code>.
103 statements. There is no way to disable error statements.
114 statements. There is no way to disable error statements.
139 statements. There is no way to disable warning statements.
150 no way to disable warning statements. Output goes to
/external/mesa3d/src/compiler/glsl/tests/
Dlower_jump_cases.py81 # statements. All of these functions return statement lists (even
82 # those which only create a single statement), so that statements can
117 def loop(statements): argument
118 """Create a loop containing the given statements as its loop
121 check_sexp(statements)
122 return [['loop', statements]]
138 def complex_if(var_prefix, statements): argument
143 <statements>
147 This is useful in testing jump lowering, because if <statements>
155 check_sexp(statements)
[all …]
/external/angle/third_party/vulkan-deps/glslang/src/Test/baseResults/
Dpreprocessor.many.endif.vert.err1 ERROR: 0:1: '#endif' : mismatched statements
2 ERROR: 0:2: '#endif' : mismatched statements
3 ERROR: 0:3: '#endif' : mismatched statements
4 ERROR: 0:4: '#endif' : mismatched statements
5 ERROR: 0:5: '#endif' : mismatched statements
6 ERROR: 0:6: '#endif' : mismatched statements
7 ERROR: 0:7: '#endif' : mismatched statements
/external/deqp-deps/glslang/Test/baseResults/
Dpreprocessor.many.endif.vert.err1 ERROR: 0:1: '#endif' : mismatched statements
2 ERROR: 0:2: '#endif' : mismatched statements
3 ERROR: 0:3: '#endif' : mismatched statements
4 ERROR: 0:4: '#endif' : mismatched statements
5 ERROR: 0:5: '#endif' : mismatched statements
6 ERROR: 0:6: '#endif' : mismatched statements
7 ERROR: 0:7: '#endif' : mismatched statements
/external/skia/include/sksl/
DDSLCase.h26 template<class... Statements>
27 DSLCase(DSLExpression value, Statements... statements) in DSLCase() argument
29 fStatements.reserve_back(sizeof...(statements)); in DSLCase()
31 // (fStatements.push_back(DSLStatement(std::move(statements)).release()), ...); in DSLCase()
34 (static_cast<void>(fStatements.push_back(DSLStatement(std::move(statements)).release())), in DSLCase()
39 DSLCase(DSLExpression value, SkTArray<DSLStatement> statements,
42 DSLCase(DSLExpression value, SkSL::StatementArray statements,
DDSLBlock.h26 template<class... Statements>
27 DSLBlock(Statements... statements) { in DSLBlock() argument
28 fStatements.reserve_back(sizeof...(statements)); in DSLBlock()
30 // (fStatements.push_back(DSLStatement(statements.release()).release()), ...); in DSLBlock()
33 (static_cast<void>(fStatements.push_back(DSLStatement(statements.release()).release())), in DSLBlock()
40 DSLBlock(SkSL::StatementArray statements, std::shared_ptr<SymbolTable> symbols = nullptr);
42 DSLBlock(SkTArray<DSLStatement> statements, std::shared_ptr<SymbolTable> symbols = nullptr);
/external/autotest/contrib/
Dcoverage.py43 option, show line numbers of the statements that weren't executed.
46 Make annotated copies of the given files, marking statements that
47 are executed with > and statements that are missed with !. With
102 statements.
104 def __init__(self, statements, excluded, suite_spots): argument
106 self.statements = statements
152 # Pass statements have weird interactions with docstrings. If this
158 self.statements[lines[1]] = 1
161 # Discard nodes are statements that execute an expression, but then
197 self.statements[lineno] = 1
[all …]
/external/tensorflow/tensorflow/python/autograph/pyct/testing/
Dcodegen.py110 # Enforce some constraints on generating statements.
111 # E.g., if statements need at least 3 readable variables.
125 """Generate a list of statements of random length.
128 low: Fewest number of statements to generate.
129 high: Highest number of statements to generate.
133 A list of statements.
135 statements = []
137 statements.append(generator())
138 return statements
181 # Generate true branch statements
[all …]
/external/clang/test/Index/
Dcomplete-at-exprstmt.m26 …ftParen (}{Placeholder expression}{RightParen )}{LeftBrace {}{Placeholder statements}{RightBrace }}
28statements}{RightBrace }}{Text @catch}{LeftParen (}{Placeholder parameter}{RightParen )}{LeftBrace…
37 …ftParen (}{Placeholder expression}{RightParen )}{LeftBrace {}{Placeholder statements}{RightBrace }}
39statements}{RightBrace }}{Text @catch}{LeftParen (}{Placeholder parameter}{RightParen )}{LeftBrace…
/external/skia/src/sksl/dsl/
DDSLCase.cpp16 DSLCase::DSLCase(DSLExpression value, SkSL::StatementArray statements, PositionInfo pos) in DSLCase() argument
18 , fStatements(std::move(statements)) in DSLCase()
21 DSLCase::DSLCase(DSLExpression value, SkTArray<DSLStatement> statements, PositionInfo pos) in DSLCase() argument
24 fStatements.reserve_back(statements.count()); in DSLCase()
25 for (DSLStatement& stmt : statements) { in DSLCase()
/external/angle/src/compiler/translator/tree_ops/apple/
DRewriteDoWhile.cpp59 TIntermSequence *statements = node->getSequence(); in visitBlock() local
61 // The statements vector will have new statements inserted when we encounter a do-while, in visitBlock()
63 // the (two) new statements inserted replace the statement at the current position. in visitBlock()
64 for (size_t i = 0; i < statements->size(); i++) in visitBlock()
66 TIntermNode *statement = (*statements)[i]; in visitBlock()
111 // statements at the front. in visitBlock()
/external/python/cpython2/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. Function and class
17 definitions are also syntactically compound statements.
23 Compound statements consist of one or more 'clauses.' A clause consists of a
26 identifying keyword and ends with a colon. A suite is a group of statements
28 statements on the same line as the header, following the header's colon, or it
[all …]

12345678910>>...85