/third_party/icu/icu4j/perf-tests/ |
H A D | dateformatperf.pl | 271 # @return an array of results. Each result is an array REF 398 my $result = formatSigDig($sigdig, $a*$mult); 402 if ($result =~ /\.(\d+)/) { 412 $result .= " $PLUS_MINUS " . $d; 414 $result; 478 my $result; 490 $result = $sign . $d; 492 $result = $sign . substr($d, 0, $e) . '.' . substr($d, $e); 497 $result;
|
H A D | normperf.pl | 320 # @return an array of results. Each result is an array REF 448 my $result = formatSigDig($sigdig, $a*$mult); 452 if ($result =~ /\.(\d+)/) { 462 $result .= " $PLUS_MINUS " . $d; 464 $result; 528 my $result; 540 $result = $sign . $d; 542 $result = $sign . substr($d, 0, $e) . '.' . substr($d, $e); 547 $result;
|
H A D | decimalformatperf.pl | 266 # @return an array of results. Each result is an array REF 393 my $result = formatSigDig($sigdig, $a*$mult); 397 if ($result =~ /\.(\d+)/) { 407 $result .= " $PLUS_MINUS " . $d; 409 $result; 473 my $result; 485 $result = $sign . $d; 487 $result = $sign . substr($d, 0, $e) . '.' . substr($d, $e); 492 $result;
|
H A D | converterperf.pl | 288 # @return an array of results. Each result is an array REF 416 my $result = formatSigDig($sigdig, $a*$mult); 420 if ($result =~ /\.(\d+)/) { 430 $result .= " $PLUS_MINUS " . $d; 432 $result; 496 my $result; 508 $result = $sign . $d; 510 $result = $sign . substr($d, 0, $e) . '.' . substr($d, $e); 515 $result;
|
H A D | ucharacterperf.pl | 268 # @return an array of results. Each result is an array REF 395 my $result = formatSigDig($sigdig, $a*$mult); 399 if ($result =~ /\.(\d+)/) { 409 $result .= " $PLUS_MINUS " . $d; 411 $result; 475 my $result; 487 $result = $sign . $d; 489 $result = $sign . substr($d, 0, $e) . '.' . substr($d, $e); 494 $result;
|
H A D | unicodesetperf.pl | 258 # @return an array of results. Each result is an array REF 385 my $result = formatSigDig($sigdig, $a*$mult); 389 if ($result =~ /\.(\d+)/) { 399 $result .= " $PLUS_MINUS " . $d; 401 $result; 465 my $result; 477 $result = $sign . $d; 479 $result = $sign . substr($d, 0, $e) . '.' . substr($d, $e); 484 $result;
|
/third_party/icu/icu4c/source/i18n/ |
H A D | strmatch.cpp | 162 UnicodeString& StringMatcher::toPattern(UnicodeString& result, in toPattern() argument 165 result.truncate(0); in toPattern() 168 result.append((UChar)40); /*(*/ in toPattern() 174 ICU_Utility::appendToRule(result, keyChar, false, escapeUnprintable, quoteBuf); in toPattern() 176 ICU_Utility::appendToRule(result, m->toPattern(str, escapeUnprintable), in toPattern() 181 result.append((UChar)41); /*)*/ in toPattern() 183 // Flush quoteBuf out to result in toPattern() 184 ICU_Utility::appendToRule(result, -1, in toPattern() 186 return result; in toPattern()
|
H A D | gender.cpp | 102 const GenderInfo* result = NULL; in getInstance() local 106 result = (const GenderInfo*) uhash_get(gGenderInfoCache, key); in getInstance() 108 if (result) { in getInstance() 109 return result; in getInstance() 113 result = loadInstance(locale, status); in getInstance() 124 result = temp; in getInstance() 126 uhash_put(gGenderInfoCache, uprv_strdup(key), (void*) result, &status); in getInstance() 132 return result; in getInstance()
|
/third_party/libuv/test/ |
H A D | runner-win.c | 81 DWORD result; in process_start() local 119 result = GetModuleFileNameW(NULL, in process_start() 122 if (result == 0 || result == sizeof(image)) in process_start() 182 DWORD timeout_api, result; in process_wait() local 199 result = WaitForMultipleObjects(n, handles, TRUE, timeout_api); in process_wait() 201 if (result < WAIT_OBJECT_0 + n) { in process_wait() 205 if (result == WAIT_TIMEOUT) { in process_wait()
|
/third_party/jerryscript/targets/mbedos5/jerryscript-mbed/jerryscript-mbed-drivers/source/ |
H A D | I2C-js.cpp | 104 int result = native_ptr->read(data); in DECLARE_CLASS_FUNCTION() local 106 return jerry_create_number(result); in DECLARE_CLASS_FUNCTION() 136 int result = native_ptr->read(address, data, length, repeated); in DECLARE_CLASS_FUNCTION() local 148 if (result == 0) { in DECLARE_CLASS_FUNCTION() 201 int result = native_ptr->write(data); in DECLARE_CLASS_FUNCTION() local 202 return jerry_create_number(result); in DECLARE_CLASS_FUNCTION() 233 int result = native_ptr->write(address, data, length, repeated); in DECLARE_CLASS_FUNCTION() local 238 return jerry_create_number(result); in DECLARE_CLASS_FUNCTION()
|
/third_party/mesa3d/src/gallium/drivers/virgl/ |
H A D | virgl_query.c | 38 uint64_t result; member 177 union pipe_query_result *result) in virgl_get_query_result() 197 /* The resource is idle and the result should be available at this point, in virgl_get_query_result() 201 * transfer until we get the result back. in virgl_get_query_result() 217 query->result = host_state->result; in virgl_get_query_result() 219 query->result = (uint32_t) host_state->result; in virgl_get_query_result() 227 result->u64 = query->result; in virgl_get_query_result() 174 virgl_get_query_result(struct pipe_context *ctx, struct pipe_query *q, bool wait, union pipe_query_result *result) virgl_get_query_result() argument [all...] |
/third_party/node/lib/ |
H A D | os.js | 144 const result = []; 147 ArrayPrototypePush(result, { 159 return result; 278 const result = {}; 281 return result; 296 const existing = result[name]; 300 result[name] = [entry]; 303 return result;
|
/third_party/node/test/pseudo-tty/ |
H A D | testcfg.py | 100 result = [self.config.context.GetVm(self.arch, self.mode)] 104 result += flags_match.group(1).strip().split() 105 result.append(self.file) 106 return result 141 result = [] 146 return result 155 result.append(TTYTestCase(tst, file_path, output_path, 157 return result
|
/third_party/node/deps/v8/tools/clusterfuzz/js_fuzzer/ |
H A D | gen_exceptions.js | 26 // Add tests matching error regexp to result array. 37 // map test -> duration in result map. 104 const result = failedList.map(path => babelTypes.stringLiteral(path)); 105 if (result.length) { 106 babelTypes.addComment(result[0], 'leading', leadingComment); 108 return result; 113 const result = slowList.map(([path, duration]) => { 119 if (result.length) { 120 babelTypes.addComment(result[0], 'leading', leadingComment); 122 return result; [all...] |
/third_party/node/deps/icu-small/source/common/ |
H A D | dictionarydata.cpp | 55 UStringTrieResult result = (codePointsMatched == 0) ? uct.first(c) : uct.next(c); in matches() local 58 if (USTRINGTRIE_HAS_VALUE(result)) { in matches() 71 if (result == USTRINGTRIE_FINAL_VALUE) { in matches() 75 else if (result == USTRINGTRIE_NO_MATCH) { in matches() 122 UStringTrieResult result = (codePointsMatched == 0) ? bt.first(transform(c)) : bt.next(transform(c)); in matches() local 125 if (USTRINGTRIE_HAS_VALUE(result)) { in matches() 138 if (result == USTRINGTRIE_FINAL_VALUE) { in matches() 142 else if (result == USTRINGTRIE_NO_MATCH) { in matches()
|
/third_party/node/deps/icu-small/source/i18n/ |
H A D | gender.cpp | 107 const GenderInfo* result = nullptr; in getInstance() local 111 result = (const GenderInfo*) uhash_get(gGenderInfoCache, key); in getInstance() 113 if (result) { in getInstance() 114 return result; in getInstance() 118 result = loadInstance(locale, status); in getInstance() 129 result = temp; in getInstance() 131 uhash_put(gGenderInfoCache, uprv_strdup(key), (void*) result, &status); in getInstance() 137 return result; in getInstance()
|
H A D | strmatch.cpp | 162 UnicodeString& StringMatcher::toPattern(UnicodeString& result, in toPattern() argument 165 result.truncate(0); in toPattern() 168 result.append((char16_t)40); /*(*/ in toPattern() 174 ICU_Utility::appendToRule(result, keyChar, false, escapeUnprintable, quoteBuf); in toPattern() 176 ICU_Utility::appendToRule(result, m->toPattern(str, escapeUnprintable), in toPattern() 181 result.append((char16_t)41); /*)*/ in toPattern() 183 // Flush quoteBuf out to result in toPattern() 184 ICU_Utility::appendToRule(result, -1, in toPattern() 186 return result; in toPattern()
|
/third_party/libphonenumber/cpp/src/phonenumbers/base/strings/ |
H A D | string_piece.cc | 51 const char* result = std::search(ptr_ + pos, ptr_ + length_, in find() local 53 const size_type xpos = result - ptr_; in find() 61 const char* result = std::find(ptr_ + pos, ptr_ + length_, c); in find() local 62 return result != ptr_ + length_ ? static_cast<size_t>(result - ptr_) : npos; in find() 73 const char* result = std::find_end(ptr_, last, s.ptr_, s.ptr_ + s.length_); in rfind() local 74 return result != last ? static_cast<size_t>(result - ptr_) : npos; in rfind()
|
/third_party/node/deps/v8/src/debug/ |
H A D | debug-property-iterator.cc | 110 auto result = JSReceiver::GetPropertyAttributes(receiver, raw_name()); in attributes() local 111 if (result.IsNothing()) return Nothing<v8::PropertyAttribute>(); in attributes() 132 v8::base::SNPrintF(property_message, "Invalid result for property \"%s\"\n", in attributes() 134 DCHECK_WITH_MSG(result.FromJust() != ABSENT, property_message.begin()); in attributes() 136 return Just(static_cast<v8::PropertyAttribute>(result.FromJust())); in attributes() 214 base::Flags<debug::NativeAccessorType, int> result; in GetNativeAccessorDescriptorInternal() 222 result |= debug::NativeAccessorType::HasGetter; in GetNativeAccessorDescriptorInternal() 225 result |= debug::NativeAccessorType::HasSetter; in GetNativeAccessorDescriptorInternal() 227 return result; in GetNativeAccessorDescriptorInternal()
|
/third_party/node/deps/v8/src/heap/ |
H A D | heap-allocator-inl.h | 216 AllocationResult result; in AllocateRawWith() local 219 result = AllocateRaw<AllocationType::kYoung>(size, origin, alignment); in AllocateRawWith() 220 if (result.To(&object)) { in AllocateRawWith() 224 result = AllocateRaw<AllocationType::kOld>(size, origin, alignment); in AllocateRawWith() 225 if (result.To(&object)) { in AllocateRawWith() 231 result = AllocateRawWithLightRetrySlowPath(size, allocation, origin, in AllocateRawWith() 235 result = AllocateRawWithRetryOrFailSlowPath(size, allocation, origin, in AllocateRawWith() 239 if (result.To(&object)) { in AllocateRawWith()
|
/third_party/node/deps/v8/src/torque/ |
H A D | declarable.cc | 99 std::vector<Declarable*> result; in Lookup() local 101 result = ParentScope()->Lookup(name); in Lookup() 104 result.push_back(declarable); in Lookup() 106 return result; in Lookup() 136 std::vector<TypeConstraint> result; in ComputeConstraints() local 139 result.push_back(TypeConstraint::SubtypeConstraint( in ComputeConstraints() 142 result.push_back(TypeConstraint::Unconstrained()); in ComputeConstraints() 145 return result; in ComputeConstraints()
|
/third_party/python/Tools/peg_generator/pegen/ |
H A D | first_sets.py | 48 result: Set[str] = set() 54 result |= new_terminals 56 result -= to_remove 70 result.discard("") 72 return result 117 result: Set[str] = set() 119 result |= self.visit(alt) 120 return result
|
/third_party/skia/third_party/externals/spirv-tools/test/opt/ |
H A D | ccp_test.cpp | 647 auto result = SinglePassRunAndMatch<CCPPass>(text, true); in TEST_F() local 648 EXPECT_EQ(std::get<1>(result), Pass::Status::SuccessWithChange); in TEST_F() 1104 auto result = SinglePassRunAndMatch<CCPPass>(text, true); in TEST_F() local 1105 EXPECT_EQ(std::get<1>(result), Pass::Status::SuccessWithChange); in TEST_F() 1158 auto result = SinglePassRunAndMatch<CCPPass>(text, true); in TEST_F() local 1159 EXPECT_EQ(std::get<1>(result), Pass::Status::SuccessWithChange); in TEST_F() 1208 auto result = SinglePassRunAndMatch<CCPPass>(text, true); in TEST_F() local 1209 EXPECT_EQ(std::get<1>(result), Pass::Status::SuccessWithChange); in TEST_F()
|
/third_party/skia/third_party/externals/spirv-tools/test/val/ |
H A D | val_non_uniform_test.cpp | 132 sstr << "%result = " << opcode << " "; in TEST_P() 138 spv_result_t result = ValidateInstructions(SPV_ENV_VULKAN_1_1); in TEST_P() local 141 EXPECT_EQ(SPV_SUCCESS, result); in TEST_P() 143 EXPECT_EQ(SPV_ERROR_INVALID_DATA, result); in TEST_P() 152 EXPECT_EQ(SPV_ERROR_INVALID_DATA, result); in TEST_P() 165 sstr << "%result = " << opcode << " "; in TEST_P() 171 spv_result_t result = ValidateInstructions(SPV_ENV_UNIVERSAL_1_3); in TEST_P() local 175 EXPECT_EQ(SPV_SUCCESS, result); in TEST_P() 177 EXPECT_EQ(SPV_ERROR_INVALID_DATA, result); in TEST_P() 183 EXPECT_EQ(SPV_ERROR_INVALID_DATA, result); in TEST_P() [all...] |
/third_party/skia/src/gpu/ |
H A D | GrXferProcessor.cpp | 160 AnalysisProperties result; in GetAnalysisProperties() local 162 result = factory->analysisProperties(color, coverage, caps, clampType); in GetAnalysisProperties() 164 result = GrPorterDuffXPFactory::SrcOverAnalysisProperties(color, coverage, caps, clampType); in GetAnalysisProperties() 167 result |= AnalysisProperties::kCompatibleWithCoverageAsAlpha; in GetAnalysisProperties() 169 SkASSERT(!(result & AnalysisProperties::kRequiresDstTexture)); in GetAnalysisProperties() 170 if ((result & AnalysisProperties::kReadsDstInShader) && in GetAnalysisProperties() 172 result |= AnalysisProperties::kRequiresDstTexture | in GetAnalysisProperties() 175 return result; in GetAnalysisProperties()
|