/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/ |
H A D | IterableComparator.java | 56 int result = comparator != null ? comparator.compare(aItem, bItem) : ((Comparable<T>)aItem).compareTo(bItem); in compare() 57 if (result != 0) { in compare() 58 return result; in compare()
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/message2/ |
H A D | TestUtils.java | 37 String result = mf.formatToString(testCase.arguments); in runTestCase() 40 + "Result: '" + result + "'"); in runTestCase() 42 assertEquals(reportCase(testCase), testCase.expected, result); in runTestCase()
|
/third_party/icu/icu4c/source/i18n/ |
H A D | rbt.h | 162 * @param result the string to receive the rules. Previous 170 virtual UnicodeString& toRules(UnicodeString& result, 177 virtual void handleGetSourceSet(UnicodeSet& result) const override; 183 virtual UnicodeSet& getTargetSet(UnicodeSet& result) const override;
|
/third_party/jerryscript/tests/jerry/es2015/ |
H A D | regression-test-issue-3836.js | 15 function validate_typedarray (typedarray, result) { 16 assert(typedarray.length === result.length); 18 assert(typedarray[i] === result[i]);
|
H A D | generator-throw.js | 16 function check_result(result, value, done) 18 assert(result.value === value) 19 assert(result.done === done)
|
H A D | generator-return.js | 16 function check_result(result, value, done) 18 assert(result.value === value) 19 assert(result.done === done)
|
/third_party/jerryscript/tests/unit-core/ |
H A D | test-unicode.cpp | 31 bool result = false; in test_syntax_error() local 35 result = true; in test_syntax_error() 40 return result; in test_syntax_error()
|
/third_party/mesa3d/src/gallium/drivers/vc4/ |
H A D | vc4_opt_constant_folding.c | 76 uint32_t result = 0; in constant_fold() local 79 result = ui[0] >> ui[1]; in constant_fold() 88 inst->src[0] = qir_uniform_ui(c, result); in constant_fold()
|
/third_party/node/deps/v8/tools/clusterfuzz/js_fuzzer/test/ |
H A D | helpers.js | 55 function assertExpectedResult(expectedPath, result) { 58 fs.writeFileSync(absPath, HEADER + result.trim() + '\n'); 65 assert.strictEqual(expected.join('\n'), result.trim());
|
/third_party/node/deps/v8/tools/ |
H A D | turbolizer-perf.py | 26 result = re.match(prog, line) 27 if result: 28 known_addrs.add(result.group(0))
|
/third_party/node/test/node-api/test_worker_terminate_finalization/ |
H A D | test_worker_terminate_finalization.c | 24 napi_value result; in Test() local 30 env, BUFFER_SIZE, bufferData, BufferFinalizer, bufferData, &result)); in Test() 31 NODE_API_CALL(env, napi_create_reference(env, result, 1, &ref)); in Test()
|
/third_party/node/test/fixtures/wpt/WebCryptoAPI/encrypt_decrypt/ |
H A D | aes_ctr_vectors.js | 13 // result - the expected result (usually just ciphertext, sometimes with added authentication) 96 result: ciphertext[keyLength] 109 result: ciphertext[keyLength] 118 result: ciphertext[keyLength]
|
/third_party/musl/src/stdio/ |
H A D | fseek.c | 42 int result; in __fseeko() local 44 result = __fseeko_unlocked(f, off, whence); in __fseeko() 46 return result; in __fseeko()
|
/third_party/node/deps/icu-small/source/common/ |
H A D | ucat.cpp | 55 const char16_t* result; in u_catgets() local 61 result = ures_getStringByKey((const UResourceBundle*) catd, in u_catgets() 68 return result; in u_catgets()
|
/third_party/node/deps/icu-small/source/i18n/ |
H A D | rbt.h | 162 * @param result the string to receive the rules. Previous 170 virtual UnicodeString& toRules(UnicodeString& result, 177 virtual void handleGetSourceSet(UnicodeSet& result) const override; 183 virtual UnicodeSet& getTargetSet(UnicodeSet& result) const override;
|
/third_party/node/deps/npm/node_modules/cssesc/ |
H A D | cssesc.js | 10 var result = {}; 14 result[key] = hasOwnProperty.call(options, key) ? options[key] : defaults[key]; 16 return result;
|
/third_party/node/deps/npm/node_modules/validate-npm-package-license/ |
H A D | index.js | 55 var result = { 63 result.warnings.push( 68 return result;
|
/third_party/libphonenumber/cpp/src/phonenumbers/ |
H A D | default_logger.h | 48 string result; in DoWork() local 49 stream >> result; in DoWork() local 50 return result; in DoWork()
|
/third_party/node/deps/v8/src/torque/ls/ |
H A D | json.cc | 61 std::stringstream result; in SerializeToString() local 62 SerializeToString(result, value); in SerializeToString() 63 return result.str(); in SerializeToString()
|
/third_party/node/deps/v8/src/torque/ |
H A D | type-visitor.h | 20 TypeVector result; in ComputeTypeVector() local 22 result.push_back(ComputeType(t)); in ComputeTypeVector() 24 return result; in ComputeTypeVector()
|
/third_party/musl/libc-test/src/functionalext/supplement/linux/ |
H A D | vmsplice.c | 38 size_t result = vmsplice(pipe_fds[1], v, sizeof(v) / sizeof(struct iovec), 0); in vmsplice_0100() local 39 if (result != v[0].iov_len + v[1].iov_len) { in vmsplice_0100() 40 t_error("%s vmsplice error get result is %d are not want %d\n", __func__, result, v[0].iov_len + v[1].iov_len); in vmsplice_0100()
|
/third_party/node/deps/openssl/openssl/util/ |
H A D | dofile.pl | 84 my $result = $template->fill_in(%$_, 107 print OFH $result; 110 print $result;
|
/third_party/rust/crates/cxx/gen/cmd/src/syntax/ |
H A D | toposort.rs | 37 let mut result = Ok(()); in visit() variables 43 result = Err(()); in visit() 50 result in visit()
|
/third_party/rust/crates/cxx/gen/lib/src/syntax/ |
H A D | toposort.rs | 37 let mut result = Ok(()); in visit() variables 43 result = Err(()); in visit() 50 result in visit()
|
/third_party/rust/crates/cxx/gen/build/src/syntax/ |
H A D | toposort.rs | 37 let mut result = Ok(()); in visit() variables 43 result = Err(()); in visit() 50 result in visit()
|