/external/chromium-trace/catapult/third_party/coverage/coverage/ |
D | annotate.py | 60 statements = sorted(analysis.statements) 78 while i < len(statements) and statements[i] < lineno: 82 if i < len(statements) and statements[i] == lineno: 88 if i >= len(statements) and j >= len(missing): 90 elif i >= len(statements) or j >= len(missing): 92 elif statements[i] == missing[j]:
|
D | misc.py | 78 def format_lines(statements, lines): argument 93 statements = sorted(statements) 95 while i < len(statements) and j < len(lines): 96 if statements[i] == lines[j]:
|
D | results.py | 19 self.statements = self.file_reporter.lines() 25 self.missing = self.statements - executed 45 n_statements=len(self.statements), 59 return format_lines(self.statements, self.missing)
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/cloudfront/ |
D | test_signed_urls.py | 195 statements = policy["Statement"] 196 self.assertEqual(1, len(statements)) 197 statement = statements[0] 218 statements = policy["Statement"] 219 self.assertEqual(1, len(statements)) 220 statement = statements[0] 241 statements = policy["Statement"] 242 self.assertEqual(1, len(statements)) 243 statement = statements[0] 265 statements = policy["Statement"] [all …]
|
/external/selinux/secilc/docs/ |
D | README.md | 33 * [Call / Macro Statements](cil_call_macro_statements.md#call--macro-statements) 37 … and Permission Statements](cil_class_and_permission_statements.md#class-and-permission-statements) 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 …urity Labeling Statements](cil_mls_labeling_statements.md#multi-level-security-labeling-statements) 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 …]
|
D | cil_container_statements.md | 34 <td align="left"><p>Zero or more valid CIL statements.</p></td> 82 <td align="left"><p>Zero or more valid CIL statements forming the abstract block.</p></td> 94 …tement. All [`blockinherit`](cil_container_statements.md#blockinherit) statements are resolved fir… 130 <td align="left"><p>Zero or more valid CIL statements.</p></td> 194 …statements in the optional block must be satisfied before instantiation in the binary policy. [`tu… 229 <td align="left"><p>Zero or more valid CIL statements.</p></td> 236 …al block `ext_gateway.move_file` into policy providing all optional CIL statements can be resolved: 257 …statements into a named container ([`block`](cil_container_statements.md#block), [`optional`](cil_… 284 <td align="left"><p>Zero or more valid CIL statements.</p></td>
|
D | cil_conditional_statements.md | 43 Contains the run time conditional statements that are instantiated in the binary policy according t… 45 [`call`](cil_call_macro_statements.md#call) statements are allowed within a [`booleanif`](cil_condi… 86 <td align="left"><p>An optional set of CIL statements that will be instantiated when the <code>bool… 90 <td align="left"><p>An optional set of CIL statements that will be instantiated when the <code>bool… 119 Tunables are similar to booleans, however they are used to manage areas of CIL statements that may … 157 Compile time conditional statement that may or may not add CIL statements to be compiled. 198 <td align="left"><p>An optional set of CIL statements that will be instantiated when the <code>tuna… 202 <td align="left"><p>An optional set of CIL statements that will be instantiated when the <code>tuna…
|
D | cil_reference_guide.md | 6 2. The MLS components on contexts and user statements must be declared even if the policy does not… 12 5. Be aware that CIL allows [`class`](cil_class_and_permission_statements.md#class) statements to … 60 …ently restricted to IP addesses where they can be declared directly in statements by enclosing the… 62 …s, therefore they may be referenced by their name or identifier within statements. For example the… 179 Expressions may occur in the following CIL statements: [`booleanif`](cil_conditional_statements.md#… 187 …valid `expr_key` entries (e.g. `dom`, `domby`, `incomp` are only allowed in constraint statements). 203 …set) and [`typeattributeset`](cil_type_statements.md#typeattributeset) statements allow `expr_set`… 240 …ing_statements.md#level), and [`levelrange`](cil_mls_labeling_statements.md#levelrange) statements. 242 …#booleanif) and [`tunableif`](cil_conditional_statements.md#tunableif) statements only allow an `e… 256 …statements only allow an `expr_set` to have one `name` or `expr` with `expr_key` values of `and`, … [all …]
|
/external/v8/src/parsing/ |
D | rewriter.cc | 42 void Process(ZoneList<Statement*>* statements); 100 b->statements()->Add( in AssignUndefinedBefore() 103 b->statements()->Add(s, zone()); in AssignUndefinedBefore() 108 void Processor::Process(ZoneList<Statement*>* statements) { in Process() argument 109 for (int i = statements->length() - 1; i >= 0; --i) { in Process() 110 Visit(statements->at(i)); in Process() 111 statements->Set(i, replacement_); in Process() 125 if (!node->ignore_completion_value()) Process(node->statements()); in VisitBlock() 238 node->finally_block()->statements()->InsertAt( in VisitTryFinallyStatement() 241 node->finally_block()->statements()->Add( in VisitTryFinallyStatement() [all …]
|
D | pattern-rewriter.cc | 126 block_->statements()->Add( in VisitVariableProxy() 271 block_->statements()->Add( in VisitVariableProxy() 285 block_->statements()->Add( in VisitVariableProxy() 302 block_->statements()->Add( in VisitVariableProxy() 315 block_->statements()->Add( in CreateTempVar() 378 block_->statements()->Add(factory()->NewExpressionStatement(expr, pos), in VisitRewritableExpression() 420 block_->statements()->Add(parser_->BuildAssertIsCoercible(temp), zone()); in VisitObjectLiteral() 514 inner_else->statements()->Add( in VisitArrayLiteral() 516 inner_else->statements()->Add( in VisitArrayLiteral() 526 next_block->statements()->Add( in VisitArrayLiteral() [all …]
|
D | parser.cc | 1869 if (result) result->statements()->Add(statement, zone()); in ParseSubStatement() 2292 body->statements()->Add(stat, zone()); in ParseBlock() 2850 ZoneList<Statement*>* statements = in ParseCaseClause() local 2857 statements->Add(stat, zone()); in ParseCaseClause() 2859 return factory()->NewCaseClause(label, statements, pos); in ParseCaseClause() 2893 switch_block->statements()->Add(tag_statement, zone()); in ParseSwitchStatement() 2898 switch_block->statements()->Add( in ParseSwitchStatement() 2928 cases_block->statements()->Add(switch_statement, zone()); in ParseSwitchStatement() 2936 switch_block->statements()->Add(cases_block, zone()); in ParseSwitchStatement() 3056 catch_block->statements()->Add(init_block, zone()); in ParseTryStatement() [all …]
|
/external/autotest/contrib/ |
D | coverage.py | 104 def __init__(self, statements, excluded, suite_spots): argument 106 self.statements = statements 158 self.statements[lines[1]] = 1 197 self.statements[lineno] = 1 712 statements = {} 714 visitor = StatementFindingAstVisitor(statements, excluded, suite_spots) 717 lines = statements.keys() 730 def format_lines(self, statements, lines): argument 736 while i < len(statements) and j < len(lines): 737 if statements[i] == lines[j]: [all …]
|
/external/clang/test/Index/ |
D | complete-at-exprstmt.m | 26 …ftParen (}{Placeholder expression}{RightParen )}{LeftBrace {}{Placeholder statements}{RightBrace }} 28 …statements}{RightBrace }}{Text @catch}{LeftParen (}{Placeholder parameter}{RightParen )}{LeftBrace… 37 …ftParen (}{Placeholder expression}{RightParen )}{LeftBrace {}{Placeholder statements}{RightBrace }} 39 …statements}{RightBrace }}{Text @catch}{LeftParen (}{Placeholder parameter}{RightParen )}{LeftBrace…
|
/external/mesa3d/src/glsl/tests/lower_jumps/ |
D | create_test_cases.py | 124 def loop(statements): argument 128 check_sexp(statements) 129 return [['loop', [], [], [], [], statements]] 145 def complex_if(var_prefix, statements): argument 162 check_sexp(statements) 163 return simple_if(var_prefix + 'a', simple_if(var_prefix + 'b', statements)) 232 def if_execute_flag(statements): argument 236 check_sexp(statements) 237 return [['if', ['var_ref', 'execute_flag'], statements, []]] 239 def if_not_return_flag(statements): argument [all …]
|
/external/selinux/secilc/test/ |
D | in_test.cil | 25 ;; Check that "in" statements work in blocks 47 ;; Check that "in" statements work in optionals 67 ;; Check that "in" statements work in macros 86 ;; Check "in" statements work for nested optionals 99 ;; Check "in: statements work for nested optionals and macros
|
/external/junit/src/org/junit/runners/ |
D | BlockJUnit4ClassRunner.java | 14 import org.junit.internal.runners.statements.ExpectException; 15 import org.junit.internal.runners.statements.Fail; 16 import org.junit.internal.runners.statements.FailOnTimeout; 17 import org.junit.internal.runners.statements.InvokeMethod; 18 import org.junit.internal.runners.statements.RunAfters; 19 import org.junit.internal.runners.statements.RunBefores;
|
/external/v8/src/ast/ |
D | ast-literal-reindexer.cc | 121 VisitStatements(node->statements()); in VisitBlock() 243 VisitStatements(node->statements()); in VisitCaseClause() 302 void AstLiteralReindexer::VisitStatements(ZoneList<Statement*>* statements) { in VisitStatements() argument 303 if (statements == NULL) return; in VisitStatements() 304 for (int i = 0; i < statements->length(); i++) { in VisitStatements() 305 Visit(statements->at(i)); in VisitStatements()
|
D | prettyprinter.cc | 94 FindStatements(node->statements()); in VisitBlock() 162 FindStatements(clause->statements()); in VisitCaseClause() 422 void CallPrinter::FindStatements(ZoneList<Statement*>* statements) { in FindStatements() argument 423 if (statements == NULL) return; in FindStatements() 424 for (int i = 0; i < statements->length(); i++) { in FindStatements() 425 Find(statements->at(i)); in FindStatements() 498 PrintStatements(node->statements()); in VisitBlock() 499 if (node->statements()->length() > 0) Print(" "); in VisitBlock() 624 PrintStatements(clause->statements()); in VisitCaseClause() 625 if (clause->statements()->length() > 0) in VisitCaseClause() [all …]
|
D | prettyprinter.h | 49 void FindStatements(ZoneList<Statement*>* statements); 87 virtual void PrintStatements(ZoneList<Statement*>* statements); 123 void PrintStatements(ZoneList<Statement*>* statements);
|
D | ast-expression-rewriter.cc | 31 void AstExpressionRewriter::VisitStatements(ZoneList<Statement*>* statements) { in VisitStatements() argument 32 for (int i = 0; i < statements->length(); i++) { in VisitStatements() 33 AST_REWRITE_LIST_ELEMENT(Statement, statements, i); in VisitStatements() 80 VisitStatements(node->statements()); in VisitBlock() 383 VisitStatements(node->statements()); in VisitCaseClause()
|
D | ast-numbering.cc | 39 void VisitStatements(ZoneList<Statement*>* statements) override; 256 VisitStatements(node->statements()); in VisitBlock() 444 VisitStatements(node->statements()); in VisitCaseClause() 529 void AstNumberingVisitor::VisitStatements(ZoneList<Statement*>* statements) { in VisitStatements() argument 530 if (statements == NULL) return; in VisitStatements() 531 for (int i = 0; i < statements->length(); i++) { in VisitStatements() 532 Visit(statements->at(i)); in VisitStatements()
|
/external/deqp/doc/testspecs/GLES3/ |
D | functional.shaders.switch.txt | 30 + Nested switch, conditional and loop statements 31 + Negative syntax tests for switch statements 33 + Negative semantic tests for switch statements
|
/external/slf4j/slf4j-migrator/ |
D | LIMITATIONS.txt | 10 very few log statements bearing the FATAL level. 31 NDC statements.
|
/external/v8/test/test262/ |
D | test262.status | 35 'language/statements/for-in/12.6.4-2': [PASS, FAIL_OK], 256 'language/statements/try/early-catch-lex': [FAIL], 257 'language/statements/try/early-catch-var': [FAIL], 281 'language/statements/for-of/dstr-array-elem-iter-rtrn-close': [FAIL], 282 'language/statements/for-of/dstr-array-elem-iter-rtrn-close-err': [FAIL], 283 'language/statements/for-of/dstr-array-elem-iter-rtrn-close-null': [FAIL], 284 'language/statements/for-of/dstr-array-elem-iter-thrw-close': [FAIL], 285 'language/statements/for-of/dstr-array-elem-iter-thrw-close-err': [FAIL], 286 'language/statements/for-of/dstr-array-elem-trlg-iter-list-rtrn-close': [FAIL], 287 'language/statements/for-of/dstr-array-elem-trlg-iter-list-rtrn-close-err': [FAIL], [all …]
|
/external/webrtc/ |
D | pylintrc | 5 …o-many-lines,too-many-locals,too-many-public-methods,too-many-return-statements,too-many-statements
|