/third_party/node/test/fixtures/wpt/resources/ |
H A D | testharness.js | 917 'Not expecting event, but got ' + evt.type + ' event'); 919 'Expected ' + waitingFor.types[0] + ' event, but got ' + 1464 "expected true got ${actual}", {actual:actual}); 1477 "expected false got ${actual}", {actual:actual}); 1512 "expected (" + typeof expected + ") ${expected} but got (" + typeof actual + ") ${actual}", 1517 "expected ${expected} but got ${actual}", 1534 "got disallowed value ${actual}", 1591 "property ${p} expected ${expected} got ${actual}", 1650 "lengths differ, expected array ${expected} length ${expectedLength}, got ${actual} length ${actualLength}", 1658 "expected property ${i} to be ${expected} but was ${actual} (expected array ${arrayExpected} got [all...] |
/third_party/skia/tests/ |
H A D | ICCTest.cpp | 22 auto got = SkColorSpace::Make(parsed); in DEF_TEST() local 24 REPORTER_ASSERT(r, SkColorSpace::Equals(got.get(), want.get())); in DEF_TEST()
|
/third_party/vk-gl-cts/modules/gles3/functional/ |
H A D | es3fRboStateQueryTests.cpp | 76 testCtx.getLog() << TestLog::Message << "// ERROR: Expected greater or equal to " << referenceSizes[ndx] << "; got " << state << TestLog::EndMessage; in checkRenderbufferComponentSize() 78 testCtx.setTestResult(QP_TEST_RESULT_FAIL, "got invalid value"); in checkRenderbufferComponentSize() 83 void checkIntEquals (tcu::TestContext& testCtx, GLint got, GLint expected) in checkIntEquals() argument 87 if (got != expected) in checkIntEquals() 89 testCtx.getLog() << TestLog::Message << "// ERROR: Expected " << expected << "; got " << got << TestLog::EndMessage; in checkIntEquals() 91 testCtx.setTestResult(QP_TEST_RESULT_FAIL, "got invalid value"); in checkIntEquals() 95 void checkIntGreaterOrEqual (tcu::TestContext& testCtx, GLint got, GLint expected) in checkIntGreaterOrEqual() argument 99 if (got < expected) in checkIntGreaterOrEqual() 101 testCtx.getLog() << TestLog::Message << "// ERROR: Expected greater or equal to " << expected << "; got " << go in checkIntGreaterOrEqual() [all...] |
/third_party/skia/third_party/externals/tint/src/reader/spirv/ |
H A D | function_memory_test.cc | 260 const auto got = test::ToString(p->program(), ast_body); in TEST_F() local 262 EXPECT_THAT(got, HasSubstr(expected)); in TEST_F() 851 const auto got = test::ToString(p->program()); in TEST_F() local 866 EXPECT_EQ(got, expected) << got; in TEST_F() 895 const auto got = test::ToString(p->program()); in TEST_F() local 907 EXPECT_EQ(got, expected) << got; in TEST_F() 986 const auto got = test::ToString(p->program(), ast_body); in TEST_F() local 987 EXPECT_THAT(got, HasSubst in TEST_F() 1015 const auto got = test::ToString(p->program(), ast_body); TEST_F() local [all...] |
H A D | function_misc_test.cc | 280 auto got = test::ToString(program, result); in TEST_P() local 281 EXPECT_EQ(got, GetParam().expected_expr); in TEST_P() 341 const auto got = test::ToString(p->program(), ast_body); in TEST_F() local 342 EXPECT_THAT(got, HasSubstr("let x_81 : f32 = (0.0 * 42.0);")); in TEST_F()
|
/third_party/python/Lib/test/ |
H A D | test_cgi.py | 293 got = getattr(fs.list[x], k) 294 self.assertEqual(got, exp) 312 got = getattr(fs.list[x], k) 313 self.assertEqual(got, exp) 327 got = getattr(fs.list[x], k) 328 self.assertEqual(got, exp) 371 got = getattr(files[x], k) 372 self.assertEqual(got, exp)
|
H A D | test_strtod.py | 96 got = '-inf' if s[0] == '-' else 'inf' 98 got = 'memory error' 100 got = fs.hex() 102 self.assertEqual(expected, got, 104 "expected {}, got {}".format(s, expected, got))
|
/third_party/node/test/parallel/ |
H A D | test-repl-function-definition-edge-case.js | 15 const got = r.output.accumulator.join(''); 16 assert.strictEqual(got, expected);
|
H A D | test-http-outgoing-finish.js | 63 assert(endCb, `${name} got finish event before endcb!`); 72 assert(finishEvent, `${name} got endCb event before finishEvent!`);
|
/third_party/icu/icu4c/source/test/intltest/ |
H A D | dcfmapts.h | 40 void verify(const UnicodeString& message, const UnicodeString& got, double expected); 41 void verifyString(const UnicodeString& message, const UnicodeString& got, UnicodeString& expected);
|
/third_party/ltp/tools/sparse/sparse-src/validation/ |
H A D | check_byte_count-ice.c | 14 check_byte_count-ice.c:6:1: error: got } in foo() 16 check_byte_count-ice.c:20:0: error: got end-of-input
|
/third_party/node/deps/npm/node_modules/@sigstore/verify/dist/ |
H A D | policy.js | 9 message: `certificate identity error - expected ${policyIdentity}, got ${signerIdentity}`, 20 message: `invalid certificate extension - expected ${key}=${policyExtensions[key]}, got ${key}=${signerExtensions[key]}`,
|
H A D | verifier.js | 68 message: `expected ${this.options.tlogThreshold} tlog timestamps, got ${tlogCount}`, 74 message: `expected ${this.options.tsaThreshold} tsa timestamps, got ${tsaCount}`, 98 message: `expected ${this.options.ctlogThreshold} SCTs, got ${result.scts.length}`,
|
/third_party/musl/arch/sh/ |
H A D | reloc.h | 45 #define GETFUNCSYM(fp, sym, got) __asm__ ( \ 48 : "=&r"(*fp) : "r"(got) : "memory" )
|
/third_party/elfutils/tests/ |
H A D | backtrace-dwarf.c | 163 pid_t got = waitpid (pid, &status, 0); in main() local 164 if (got != pid) in main() 165 error (1, errno, "waitpid returned %d", got); in main()
|
/third_party/musl/libc-test/src/musl/ |
H A D | pleval.c | 9 unsigned long got = __pleval(s, n); in t() local 10 if (got != want) in t() 11 t_error("__pleval(\"%s\",%lu) failed: got %lu want %lu\n", s, n, got, want); in t()
|
/third_party/node/test/fixtures/wpt/WebCryptoAPI/wrapKey_unwrapKey/ |
H A D | wrapKey_unwrapKey.https.any.js | 298 function equalJwk(expected, got) { 304 if (!(fieldName in got)) { 307 if (objectToString(expected[fieldName]) !== objectToString(got[fieldName])) { 368 function equalKeys(expected, got){ 369 if ( expected.algorithm.name !== got.algorithm.name ) { 432 return subtle.decrypt(cryptParams, got, encryptedData); 451 return subtle.sign(signParams, got, new Uint8Array(32)); 463 return subtle.wrapKey("raw", aKeyToWrap, got, wrapParams); 476 return subtle.deriveBits(deriveParams, got, 128);
|
/third_party/icu/icu4c/source/test/cintltst/ |
H A D | putiltst.c | 53 static void doAssert(double expect, double got, const char *message); 347 int32_t op, invop, got, invgot; in TestCompareVersions() local 367 got = memcmp(v1, v2, sizeof(UVersionInfo)); in TestCompareVersions() 369 if((got <= 0 && op <= 0) || (got >= 0 && op >= 0)) { in TestCompareVersions() 372 log_err("%d: %s %s %s: wanted values of the same sign, %d got %d\n", (j/3), v1str, opstr, v2str, op, got); in TestCompareVersions() 377 log_err("%d: %s (%d) %s: wanted values of the same sign, %d got %d\n", (j/3), v2str, invop, v1str, invop, invgot); in TestCompareVersions() 425 log_err("FAIL: got NaN as result without NaN as argument"); 451 static void doAssert(double got, doubl argument [all...] |
/third_party/node/deps/v8/third_party/zlib/ |
H A D | gzread.c | 59 unsigned got; local 74 state->size - strm->avail_in, &got) == -1) 76 strm->avail_in += got; 299 z_size_t got; local 314 got = 0; 366 got += n; 371 return got;
|
/third_party/node/deps/zlib/ |
H A D | gzread.c | 44 unsigned got; in gz_avail() local 59 state->size - strm->avail_in, &got) == -1) in gz_avail() 61 strm->avail_in += got; in gz_avail() 269 z_size_t got; in gz_read() local 284 got = 0; in gz_read() 336 got += n; in gz_read() 341 return got; in gz_read()
|
/third_party/skia/third_party/externals/brotli/go/cbrotli/ |
H A D | cbrotli_test.go | 249 got := make([]byte, wantLen) 250 if n, err := reader.Read(got); err != nil || n != wantLen || !bytes.Equal(got, segment) { 251 t.Fatalf("read[%d]=%q,%v,%v, want %q,%v,%v", k, got, n, err, segment, wantLen, nil) 269 if got := decodedOutput.Bytes(); !bytes.Equal(got, content) { 275 got, len(content))
|
/third_party/skia/third_party/externals/zlib/ |
H A D | gzread.c | 59 unsigned got; local 74 state->size - strm->avail_in, &got) == -1) 76 strm->avail_in += got; 299 z_size_t got; local 314 got = 0; 366 got += n; 371 return got;
|
/third_party/rust/crates/memchr/src/memmem/ |
H A D | twoway.rs | 708 let mut got = naive_maximal_suffix_forward(&reversed).to_vec(); in naive_maximal_suffix_reverse() variables 709 got.reverse(); in naive_maximal_suffix_reverse() 710 got in naive_maximal_suffix_reverse() 830 let (got, _) = get_suffix_forward(&bytes, SuffixKind::Maximal); in qc_suffix_forward_maximal() 832 got == expected in qc_suffix_forward_maximal() 840 let (got, _) = get_suffix_reverse(&bytes, SuffixKind::Maximal); in qc_suffix_reverse_maximal() 842 expected == got in qc_suffix_reverse_maximal()
|
/third_party/zlib/ |
H A D | gzread.c | 54 unsigned got; in gz_avail() local 71 state->size - strm->avail_in, &got) == -1) in gz_avail() 75 strm->avail_in += got; in gz_avail() 306 z_size_t got; in gz_read() local 325 got = 0; in gz_read() 387 got += n; in gz_read() 392 return got; in gz_read()
|
/third_party/musl/src/signal/mipsn32/ |
H A D | sigsetjmp.s | 18 # save base of got so that we can use it later 29 ld $3, 176($4) # Restore base of got
|