/third_party/python/Tools/scripts/ |
H A D | update_file.py | 55 outcome = 'created' 64 outcome = 'updated' 67 outcome = 'same' 69 return outcome 83 outcome = update_file_with_tmpfile(**kwargs) variable 85 if outcome == 'same': 87 elif outcome == 'updated': 89 elif outcome == 'created':
|
/third_party/eudev/src/shared/ |
H A D | process-util.c | 147 _cleanup_free_ char *outcome = NULL; in get_process_environ() local 162 if (!GREEDY_REALLOC(outcome, allocated, sz + 5)) in get_process_environ() 166 outcome[sz++] = '\n'; in get_process_environ() 168 sz += cescape_char(c, outcome + sz); in get_process_environ() 171 outcome[sz] = '\0'; in get_process_environ() 172 *env = outcome; in get_process_environ() 173 outcome = NULL; in get_process_environ()
|
/third_party/icu/tools/scripts/ |
H A D | uconfig_vars_test.py | 207 # 'outcome' will be returned by sys.exit(); 0 indicates success, any 209 outcome = 0 214 outcome = 1 220 outcome = 1 227 outcome = 1 233 outcome = 1 238 if outcome == 0: 240 sys.exit(outcome)
|
/third_party/libfuse/test/ |
H A D | conftest.py | 19 outcome = yield 20 failed = outcome.excinfo is not None 90 # Make test outcome available to fixtures 94 outcome = yield 95 rep = outcome.get_result()
|
/third_party/skia/tools/skqp/src/ |
H A D | skqp_main.cpp | 121 SkQP::RenderOutcome outcome; in main() local 124 std::tie(outcome, except) = skqp.evaluateGM(backend, gmFactory); in main() 128 } else if (outcome.fMaxError != 0) { in main() 129 out << "FAILED: " << testName << " (" << outcome.fMaxError << ")\n"; in main()
|
H A D | jni_skqp.cpp | 140 SkQP::RenderOutcome outcome; in Java_org_skia_skqp_SkQP_nExecuteGM() local 148 std::tie(outcome, except) = gSkQP.evaluateGM(backend, gm); in Java_org_skia_skqp_SkQP_nExecuteGM() 154 return (jlong)outcome.fTotalError; in Java_org_skia_skqp_SkQP_nExecuteGM()
|
H A D | skqp.cpp | 469 const SkQP::RenderOutcome& outcome = run.fOutcome; in makeReport() local 471 outcome.fMaxError, outcome.fBadPixelCount, outcome.fTotalError); in makeReport() 475 if (passingThreshold == -1 || outcome.fMaxError <= passingThreshold) { in makeReport()
|
/third_party/typescript/tests/baselines/reference/ |
H A D | constAssertions.js | 94 const outcome: Outcome = `${action}_${contentMatch}` as const; 95 return outcome; 101 const outcome = `${action}_${contentMatch}` as const; 102 return outcome; 183 const outcome = `${action}_${contentMatch}`;
184 return outcome;
189 const outcome = `${action}_${contentMatch}`;
190 return outcome;
|
/third_party/python/Lib/unittest/ |
H A D | case.py | 614 outcome = _Outcome(result) 616 self._outcome = outcome 618 with outcome.testPartExecutor(self): 620 if outcome.success: 621 outcome.expecting_failure = expecting_failure 622 with outcome.testPartExecutor(self): 624 outcome.expecting_failure = False 625 with outcome.testPartExecutor(self): 629 if outcome.success: 631 if outcome [all...] |
/third_party/python/Lib/ |
H A D | filecmp.py | 62 outcome = _cache.get((f1, f2, s1, s2)) 63 if outcome is None: 64 outcome = _do_cmp(f1, f2) 67 _cache[f1, f2, s1, s2] = outcome 68 return outcome
|
H A D | doctest.py | 1296 Run the examples in `test`. Write the outcome of each example 1311 SUCCESS, FAILURE, BOOM = range(3) # `outcome` state 1363 outcome = FAILURE # guilty until proved innocent or insane 1369 outcome = SUCCESS 1380 outcome = BOOM 1384 outcome = SUCCESS 1391 outcome = SUCCESS 1393 # Report the outcome. 1394 if outcome is SUCCESS: 1397 elif outcome i [all...] |
/third_party/python/Lib/test/test_email/ |
H A D | test_message.py | 550 # outcome is whether xxx_method should raise ValueError error when called 551 # on multipart/subtype. Blank outcome means it depends on xxx (add 555 # method subtype outcome 623 def subtype_as_make(self, method, subtype, outcome): 626 if outcome in ('', 'raises'): 641 def subtype_as_make_with_boundary(self, method, subtype, outcome): 644 if outcome in ('', 'raises'): 669 def subtype_as_add(self, method, subtype, outcome): 673 if outcome == 'raises':
|
/third_party/node/deps/v8/tools/testrunner/local/ |
H A D | statusfile.py | 141 """Indicates if we join PASS and FAIL from two different outcome sets and 183 """Outcome list format: [condition, outcome, outcome, ...]""" 203 for outcome in item[1:]: 204 assert type(outcome) == str 205 result.add(outcome) 234 outcomes := outcome | [outcome, ...] 235 outcome := SINGLE_OUTCOME | [CONDITION, SINGLE_OUTCOME, SINGLE_OUTCOME, ...]
|
/third_party/node/deps/v8/tools/testrunner/objects/ |
H A D | testcase.py | 124 def is_flag(outcome): 125 return outcome.startswith('--') 126 def not_flag(outcome): 127 return not is_flag(outcome) 346 Every outcome that starts with "--" is a flag.
|
/third_party/skia/src/sksl/ |
H A D | SkSLMain.cpp | 527 ResultCode outcome = processCommand(args); 528 resultCode = std::max(resultCode, outcome); 538 ResultCode outcome = processCommand(args); 539 resultCode = std::max(resultCode, outcome);
|
/third_party/skia/infra/bots/task_drivers/fm_driver/ |
H A D | fm_driver.go | 240 name, outcome := parts[0], parts[1] 241 if *gold && outcome != "skipped" && !known[outcome] { 242 unknownHash = outcome
|
/third_party/node/deps/v8/tools/testrunner/testproc/ |
H A D | progress.py | 161 outcome = ' '.join(format_result_status(r) for r in result.results) 163 outcome = format_result_status(result) 165 test, test.variant or 'default', outcome)
|
/third_party/node/tools/ |
H A D | test.py | 287 outcome = 'CRASH' 289 outcome = 'FAIL' 291 outcome = 'pass' 292 print('Done running %s: %s' % (output.test.GetLabel(), outcome)) 630 outcome = CRASH 632 outcome = TIMEOUT 634 outcome = FAIL 636 outcome = PASS 637 return not outcome in self.test.outcomes 1271 """A single rule that specifies the expected outcome fo [all...] |
/third_party/node/deps/v8/src/compiler/ |
H A D | operation-typer.cc | 1190 ComparisonOutcome outcome) { in Invert() 1192 if ((outcome & kComparisonUndefined) != 0) result |= kComparisonUndefined; in Invert() 1193 if ((outcome & kComparisonTrue) != 0) result |= kComparisonFalse; in Invert() 1194 if ((outcome & kComparisonFalse) != 0) result |= kComparisonTrue; in Invert() 1198 Type OperationTyper::FalsifyUndefined(ComparisonOutcome outcome) { in FalsifyUndefined() argument 1199 if ((outcome & kComparisonFalse) != 0 || in FalsifyUndefined() 1200 (outcome & kComparisonUndefined) != 0) { in FalsifyUndefined() 1201 return (outcome & kComparisonTrue) != 0 ? Type::Boolean() in FalsifyUndefined() 1205 DCHECK_NE(0, outcome & kComparisonTrue); in FalsifyUndefined() 1189 Invert( ComparisonOutcome outcome) Invert() argument
|
H A D | typer.cc | 413 ComparisonOutcome outcome, Typer* t) { in Invert() 415 if ((outcome & kComparisonUndefined) != 0) result |= kComparisonUndefined; in Invert() 416 if ((outcome & kComparisonTrue) != 0) result |= kComparisonFalse; in Invert() 417 if ((outcome & kComparisonFalse) != 0) result |= kComparisonTrue; in Invert() 421 Type Typer::Visitor::FalsifyUndefined(ComparisonOutcome outcome, Typer* t) { in FalsifyUndefined() argument 422 if (outcome == 0) return Type::None(); in FalsifyUndefined() 423 if ((outcome & kComparisonFalse) != 0 || in FalsifyUndefined() 424 (outcome & kComparisonUndefined) != 0) { in FalsifyUndefined() 425 return (outcome & kComparisonTrue) != 0 ? Type::Boolean() in FalsifyUndefined() 428 DCHECK_NE(0, outcome in FalsifyUndefined() 412 Invert( ComparisonOutcome outcome, Typer* t) Invert() argument [all...] |
/third_party/node/deps/v8/src/objects/ |
H A D | backing-store.cc | 61 // instead. To track the frequency of such events, the outcome of memory 112 // When the sandbox is active, this function records the outcome of attempts to 120 CagedMemoryAllocationOutcome outcome; in RecordSandboxMemoryAllocationResult() local 123 outcome = allocation_in_cage ? CagedMemoryAllocationOutcome::kSuccess in RecordSandboxMemoryAllocationResult() 126 outcome = CagedMemoryAllocationOutcome::kFailure; in RecordSandboxMemoryAllocationResult() 129 static_cast<int>(outcome)); in RecordSandboxMemoryAllocationResult()
|
/third_party/python/Tools/demo/ |
H A D | sortvisu.py | 307 outcome = -1 311 outcome = 1 314 outcome = 0 322 return outcome
|
/third_party/mesa3d/src/broadcom/vulkan/ |
H A D | v3dv_bo.c | 485 bool outcome = bo_free(device, bo); in v3dv_bo_free() local 492 return outcome; in v3dv_bo_free()
|
/third_party/python/Lib/test/support/ |
H A D | testresult.py | 122 self._add_result(test, outcome='UNEXPECTED_SUCCESS')
|
/third_party/mbedtls/tests/ |
H A D | compat.sh | 119 printf " --outcome-file\tFile where test outcomes are written\n" 187 --outcome-file) 867 # record_outcome <outcome> [<failure-reason>] 871 # The test outcome file has the format (in single line): 1033 # Make the outcome file path relative to the original directory, not
|