/third_party/node/benchmark/url/ |
H A D | whatwg-url-parse.js | 15 let result = new URL(data[0][0], data[0][1]); // Avoid dead code elimination 19 result = new URL(item[0], item[1]); 22 return result; 27 let result = new URL(data[0]); // Avoid dead code elimination 30 result = new URL(data[i]); 33 return result;
|
/third_party/node/deps/icu-small/source/common/ |
H A D | servrbf.cpp | 75 ICUResourceBundleFactory::debug(UnicodeString& result) const in debug() 77 LocaleKeyFactory::debug(result); in debug() 78 result.append((UnicodeString)", bundle: "); in debug() 79 return result.append(_bundleName); in debug() 83 ICUResourceBundleFactory::debugClass(UnicodeString& result) const in debugClass() 85 return result.append((UnicodeString)"ICUResourceBundleFactory"); in debugClass()
|
/third_party/node/deps/npm/node_modules/color-convert/ |
H A D | index.js | 42 const result = fn(args); 44 // We're assuming the result is an array here. 47 if (typeof result === 'object') { 48 for (let len = result.length, i = 0; i < len; i++) { 49 result[i] = Math.round(result[i]); 53 return result;
|
/third_party/node/deps/icu-small/source/i18n/ |
H A D | numparse_validators.h | 29 void postProcess(ParsedNumber& result) const override = 0; 35 void postProcess(ParsedNumber& result) const override; 43 void postProcess(ParsedNumber& result) const override; 55 void postProcess(ParsedNumber& result) const override; 66 void postProcess(ParsedNumber& result) const override; 81 void postProcess(ParsedNumber& result) const override;
|
/third_party/musl/libc-test/src/functionalext/supplement/linux/ |
H A D | signalfd.c | 33 int result = sigaddset(&mask, sig); in signalfd_0100() local 34 if (result != 0) { in signalfd_0100() 35 t_error("%s failed: result = %d\n", __func__, result); in signalfd_0100() 38 result = sigprocmask(SIG_SETMASK, &mask, NULL); in signalfd_0100() 39 if (result != 0) { in signalfd_0100() 40 t_error("%s failed: result = %d\n", __func__, result); in signalfd_0100()
|
/third_party/musl/libc-test/src/functionalext/supplement/manual/network/ |
H A D | gethostbyname_r.c | 36 int result = 10; in gethostbyname_r_0100() local 42 result = gethostbyname_r("127.0.0.1", &h, buf, 1024, &res, &err); in gethostbyname_r_0100() 43 if (result == 0) { in gethostbyname_r_0100() 58 int result = 10; in gethostbyname_r_0200() local 64 result = gethostbyname_r("127.0.w.1", &h, buf, 1024, &res, &err); in gethostbyname_r_0200() 65 if (result != 0) { in gethostbyname_r_0200()
|
/third_party/musl/libc-test/src/functionalext/supplement/stat/ |
H A D | fchmodat.c | 37 int result = fchmodat(fd, in fchmodat_0100() local 43 EXPECT_EQ("fchmodat_0100", result, 0); in fchmodat_0100() 61 int result = fchmodat(fd, in fchmodat_0200() local 66 EXPECT_EQ("fchmodat_0200", result, 0); in fchmodat_0200() 79 int result = fchmodat(-1, "test.txt", S_IRWXU | S_IRWXG | S_IRWXO, AT_SYMLINK_NOFOLLOW); in fchmodat_0300() local 80 EXPECT_EQ("fchmodat_0300", result, failed); in fchmodat_0300()
|
H A D | fchmod.c | 34 int result = fchmod(fd, in fchmod_0100() local 38 EXPECT_EQ("fchmod_0100", result, 0); in fchmod_0100() 54 int result = fchmod(fd, S_IRWXU | S_IRWXG | S_IRWXO); in fchmod_0200() local 56 EXPECT_EQ("fchmod_0200", result, 0); in fchmod_0200() 69 int result = fchmod(-1, S_IRWXU | S_IRWXG | S_IRWXO); in fchmod_0300() local 70 EXPECT_EQ("fchmod_0300", result, -1); in fchmod_0300()
|
/third_party/musl/libc-test/src/functionalext/supplement/stdio/ |
H A D | __fwriting.c | 36 int result = __fwriting(fptr); in __fwriting_0100() local 37 EXPECT_NE("__fwriting_0100", result, NUM_ZERO); in __fwriting_0100() 54 int result = __fwriting(fptr); in __fwriting_0200() local 55 EXPECT_NE("__fwriting_0200", result, NUM_ZERO); in __fwriting_0200() 75 int result = __fwriting(fptr); in __fwriting_0300() local 76 EXPECT_EQ("__fwriting_0300", result, NUM_ZERO); in __fwriting_0300()
|
H A D | swscanf.c | 33 int result = swscanf(wstr, L"%ls %d", tmp, &i); in swscanf_0100() local 34 if (result == EOF) { in swscanf_0100() 58 int result = swscanf(wstr, L"%ls %ls", tmp1, tmp2); in swscanf_0200() local 59 if (result == EOF) { in swscanf_0200() 80 int result = swscanf(wstr, L"%d %d", &i, &j); in swscanf_0300() local 81 if (result >= RESULT_VAL) { in swscanf_0300()
|
H A D | vasprintf.c | 32 int result = vasprintf(&temp, v, ap); in vasprintf_0100() local 33 if (result == 0) { in vasprintf_0100() 34 t_error("%s vasprintf result value is 0\n", __func__); in vasprintf_0100() 53 int result = vasprintf(&temp, v, ap); in vasprintf_0200() local 54 if (result == 0) { in vasprintf_0200() 55 t_error("%s vasprintf result value is 0\n", __func__); in vasprintf_0200() 74 int result = vasprintf(&temp, v, ap); in vasprintf_0300() local 75 if (result == 0) { in vasprintf_0300() 76 t_error("%s vasprintf result value is 0\n", __func__); in vasprintf_0300()
|
H A D | vswprintf.c | 34 int result = vswprintf(buffer, MAX, format, aptr); in vswprintf_0100() local 36 if (result < 0) { in vswprintf_0100() 37 t_error("%s vswprintf get result is less than 0", __func__); in vswprintf_0100() 54 int result = vswprintf(buffer, MAX, format, aptr); in vswprintf_0200() local 56 if (result < 0) { in vswprintf_0200() 57 t_error("%s vswprintf get result is less than 0", __func__); in vswprintf_0200() 74 int result = vswprintf(buffer, MAX, format, aptr); in vswprintf_0300() local 76 if (result < 0) { in vswprintf_0300() 77 t_error("%s vsprintf get result is less than 0", __func__); in vswprintf_0300()
|
H A D | vsprintf.c | 31 int result = vsprintf(buffer, format, aptr); in vsprintf_0100() local 33 if (result < 0) { in vsprintf_0100() 34 t_error("%s vsprintf get result is less than 0", __func__); in vsprintf_0100() 51 int result = vsprintf(buffer, format, aptr); in vsprintf_0200() local 53 if (result < 0) { in vsprintf_0200() 54 t_error("%s vsprintf get result is less than 0\n", __func__); in vsprintf_0200() 71 int result = vsprintf(buffer, format, aptr); in vsprintf_0300() local 73 if (result < 0) { in vsprintf_0300() 74 t_error("%s vsprintf get result is less than 0\n", __func__); in vsprintf_0300()
|
/third_party/musl/libc-test/src/functionalext/supplement/unistd/ |
H A D | writev.c | 39 ssize_t result = writev(STDOUT_FILENO, iov, 2); in writev_0100() local 40 if (result != (iov[0].iov_len + iov[1].iov_len)) { in writev_0100() 61 ssize_t result = writev(STDOUT_FILENO, iov, 2); in writev_0200() local 62 if (result != (iov[0].iov_len + iov[1].iov_len)) { in writev_0200() 74 ssize_t result = writev(-1, NULL, -1); in writev_0300() local 75 if (result != -1) { in writev_0300()
|
/third_party/skia/third_party/externals/spirv-tools/test/ |
H A D | fix_word_test.cpp | 39 uint32_t result = 0x21097853; in TEST() local 40 ASSERT_EQ(result, spvFixWord(word, endian)); in TEST() 49 uint64_t result = 0xdeadbeef53780921; in TEST() local 50 ASSERT_EQ(result, spvFixDoubleWord(low, high, endian)); in TEST() 59 uint64_t result = 0xefbeadde21097853; in TEST() local 60 ASSERT_EQ(result, spvFixDoubleWord(low, high, endian)); in TEST()
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/ |
H A D | fix_word_test.cpp | 39 uint32_t result = 0x21097853; in TEST() local 40 ASSERT_EQ(result, spvFixWord(word, endian)); in TEST() 49 uint64_t result = 0xdeadbeef53780921; in TEST() local 50 ASSERT_EQ(result, spvFixDoubleWord(low, high, endian)); in TEST() 59 uint64_t result = 0xefbeadde21097853; in TEST() local 60 ASSERT_EQ(result, spvFixDoubleWord(low, high, endian)); in TEST()
|
/third_party/skia/third_party/externals/icu/source/i18n/ |
H A D | numparse_validators.h | 29 void postProcess(ParsedNumber& result) const U_OVERRIDE = 0; 35 void postProcess(ParsedNumber& result) const U_OVERRIDE; 43 void postProcess(ParsedNumber& result) const U_OVERRIDE; 55 void postProcess(ParsedNumber& result) const U_OVERRIDE; 66 void postProcess(ParsedNumber& result) const U_OVERRIDE; 81 void postProcess(ParsedNumber& result) const U_OVERRIDE;
|
/third_party/skia/third_party/externals/oboe/tests/ |
H A D | testAAudio.cpp | 38 aaudio_result_t result = mAAudioLoader->createStreamBuilder(&mBuilder); in createBuilder() local 40 ASSERT_EQ(result, 0); in createBuilder() 45 aaudio_result_t result = mAAudioLoader->builder_openStream(mBuilder, &stream); in openCloseStream() local 46 ASSERT_EQ(result, 0); in openCloseStream() 49 result = mAAudioLoader->stream_close(stream); in openCloseStream() 50 ASSERT_EQ(result, 0); in openCloseStream()
|
/third_party/skia/src/sksl/analysis/ |
H A D | SkSLSwitchCaseContainsExit.cpp | 42 bool result = INHERITED::visitStatement(stmt); variable 44 return result; 54 bool result = INHERITED::visitStatement(stmt); variable 57 return result; 62 bool result = INHERITED::visitStatement(stmt); variable 64 return result;
|
/third_party/skia/tests/ |
H A D | WebpTest.cpp | 34 auto result = codec->getPixels(premulBm.pixmap(), &options); in DEF_TEST() local 35 if (result != SkCodec::kSuccess) { in DEF_TEST() 37 SkCodec::ResultToString(result)); in DEF_TEST() 49 result = codec->getPixels(premulInfo.makeAlphaType(alphaType), changeBm.getPixels(), in DEF_TEST() 51 if (result != SkCodec::kSuccess) { in DEF_TEST() 53 SkCodec::ResultToString(result)); in DEF_TEST()
|
/third_party/skia/third_party/externals/icu/source/common/ |
H A D | servrbf.cpp | 75 ICUResourceBundleFactory::debug(UnicodeString& result) const in debug() 77 LocaleKeyFactory::debug(result); in debug() 78 result.append((UnicodeString)", bundle: "); in debug() 79 return result.append(_bundleName); in debug() 83 ICUResourceBundleFactory::debugClass(UnicodeString& result) const in debugClass() 85 return result.append((UnicodeString)"ICUResourceBundleFactory"); in debugClass()
|
H A D | ustack.cpp | 40 void* result = 0; in pop() local 42 result = elementAt(n); in pop() 45 return result; in pop() 50 int32_t result = 0; in popi() local 52 result = elementAti(n); in popi() 55 return result; in popi()
|
/third_party/typescript/tests/baselines/reference/ |
H A D | typeParameterExtendsPrimitive.js | 21 let result = 0; 23 result += v[prop]; 25 return result; 45 var result = 0;
48 result += v[prop];
50 return result;
|
/third_party/skia/third_party/externals/dng_sdk/source/ |
H A D | dng_orientation.cpp | 198 dng_orientation result; in operator -() local 200 result.SetAdobe (((4 - x) & 3) | (x & 4)); in operator -() 202 return result; in operator -() 225 dng_orientation result; in operator +() local 227 result.SetAdobe (((x + y) & 3) | (x & 4)); in operator +() 229 return result; in operator +()
|
/third_party/spirv-tools/test/ |
H A D | fix_word_test.cpp | 39 uint32_t result = 0x21097853; in TEST() local 40 ASSERT_EQ(result, spvFixWord(word, endian)); in TEST() 49 uint64_t result = 0xdeadbeef53780921; in TEST() local 50 ASSERT_EQ(result, spvFixDoubleWord(low, high, endian)); in TEST() 59 uint64_t result = 0xefbeadde21097853; in TEST() local 60 ASSERT_EQ(result, spvFixDoubleWord(low, high, endian)); in TEST()
|