Home
last modified time | relevance | path

Searched refs:result (Results 5276 - 5300 of 16695) sorted by relevance

1...<<211212213214215216217218219220>>...668

/third_party/icu/icu4c/source/i18n/unicode/
H A Dudat.h122 * to control the length of the result; from SHORT to MEDIUM to LONG to FULL.
123 * The exact result depends on the locale, but generally:
1045 * @param result A pointer to a buffer to receive the formatted number.
1046 * @param resultLength The maximum size of result.
1061 UChar* result,
1074 * @param result A pointer to a buffer to receive the formatted number.
1075 * @param capacity The maximum size of result.
1091 UChar* result,
1103 * @param result
1106 * The maximum size of result
[all...]
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/stringprep/
H A DIDNAReference.java249 StringBuffer result = new StringBuffer(); in convertIDNToASCII()
258 result.append(convertToASCII(iter,options)); in convertIDNToASCII()
266 result.append((char)FULL_STOP); in convertIDNToASCII()
268 return result; in convertIDNToASCII()
358 StringBuffer result = new StringBuffer(); in convertIDNToUnicode()
368 result.append(convertToUnicode(iter,options)); in convertIDNToUnicode()
375 result.append((char)FULL_STOP); in convertIDNToUnicode()
377 return result; in convertIDNToUnicode()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/util/
H A DUtilityTest.java50 String result = Utility.unescape(input); in TestUnescape()
51 if (!result.equals(expect)) { in TestUnescape()
52 errln("FAIL: Utility.unescape() returned " + result + ", exp. " + expect); in TestUnescape()
61 // result of this conversion will exceed the original length and in TestFormat()
67 String result[] = { in TestFormat()
83 result[i], Utility.formatForSource(data[i])); in TestFormat()
95 byte result[] = {-1, -1, -1, 15, 12}; in TestHighBit()
97 if (Utility.highBit(data[i]) != result[i]) { in TestHighBit()
100 + result[i]); in TestHighBit()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
H A DUtilityTest.java48 String result = Utility.unescape(input); in TestUnescape()
49 if (!result.equals(expect)) { in TestUnescape()
50 errln("FAIL: Utility.unescape() returned " + result + ", exp. " + expect); in TestUnescape()
84 // result of this conversion will exceed the original length and in TestFormat()
90 String result[] = { in TestFormat()
106 result[i], Utility.formatForSource(data[i])); in TestFormat()
118 byte result[] = {-1, -1, -1, 15, 12}; in TestHighBit()
120 if (Utility.highBit(data[i]) != result[i]) { in TestHighBit()
123 + result[i]); in TestHighBit()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/
H A DStringPrep.java47 * <li> Normalize: Possibly normalize the result of step 1 using Unicode
378 char result = 0; in map()
385 result = getCodePointValue(ch); in map()
386 getValues(result,val); in map()
438 int result = getCodePointValue(ch);
439 if( (result & 0x07) == LABEL_SEPARATOR){
449 2) Normalize -- Possibly normalize the result of step 1 using Unicode
511 char result; in prepare()
520 result = getCodePointValue(ch); in prepare()
521 getValues(result,va in prepare()
[all...]
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/stringprep/
H A DIDNAReference.java246 StringBuffer result = new StringBuffer(); in convertIDNToASCII()
255 result.append(convertToASCII(iter,options)); in convertIDNToASCII()
263 result.append((char)FULL_STOP); in convertIDNToASCII()
265 return result; in convertIDNToASCII()
355 StringBuffer result = new StringBuffer(); in convertIDNToUnicode()
365 result.append(convertToUnicode(iter,options)); in convertIDNToUnicode()
372 result.append((char)FULL_STOP); in convertIDNToUnicode()
374 return result; in convertIDNToUnicode()
/third_party/icu/icu4c/source/common/unicode/
H A Ducptrie.h383 * @param result (out) variable for the trie lookup result
386 #define UCPTRIE_FAST_U16_NEXT(trie, dataAccess, src, limit, c, result) UPRV_BLOCK_MACRO_BEGIN { \
401 (result) = dataAccess(trie, __index); \
414 * @param result (out) variable for the trie lookup result
417 #define UCPTRIE_FAST_U16_PREV(trie, dataAccess, start, src, c, result) UPRV_BLOCK_MACRO_BEGIN { \
432 (result) = dataAccess(trie, __index); \
448 * @param result (out) variable for the trie lookup result
[all...]
/third_party/lzma/CPP/7zip/Bundles/SFXCon/
H A DSfxCon.cpp416 HRESULT result = codecs->Load(); in Main2() local
417 if (result != S_OK) in Main2()
418 throw CSystemException(result); in Main2()
454 HRESULT result = Extract( in Main2() local
468 if (result == S_OK) in Main2()
469 result = E_FAIL; in Main2()
487 if (result != S_OK) in Main2()
488 throw CSystemException(result); in Main2()
497 HRESULT result = ListArchives( in Main2()
515 if (result ! in Main2()
[all...]
/third_party/mesa3d/src/compiler/nir/
H A Dnir_opt_combine_stores.c86 struct combined_store *result; in alloc_combined_store() local
88 result = linear_zalloc_child(state->lin_ctx, sizeof(*result)); in alloc_combined_store()
90 result = list_first_entry(&state->freelist, in alloc_combined_store()
93 list_del(&result->link); in alloc_combined_store()
94 memset(result, 0, sizeof(*result)); in alloc_combined_store()
96 return result; in alloc_combined_store()
/third_party/node/lib/internal/crypto/
H A Dutil.js428 function onDone(resolve, reject, err, result) {
434 resolve(result);
457 let result = 0;
463 result |= input[n] << 8 * n_reversed;
466 return result;
470 let result = 0n;
474 result |= BigInt(input[n]) << 8n * BigInt(n_reversed);
477 return result;
/third_party/node/lib/internal/dns/
H A Dpromises.js140 const result = { address: hostname, family: matchedFamily };
141 resolve(all ? [result] : result);
273 function onresolve(err, result, ttls) {
280 result = ArrayPrototypeMap(
281 result, (address, index) => ({ address, ttl: ttls[index] }));
283 this.resolve(result);
285 stopPerf(this, kPerfHooksDnsLookupResolveContext, { detail: { result } });
/third_party/node/deps/v8/tools/
H A Dperf-compare.py10 %prog -t "ia32 results" Result,../result.json Master,/path-to/master.json -o results.html
11 %prog -t "x64 results" ../result.json master.json -o results.html
97 def __init__(self, units, count, result, sigma):
100 self.result_ = float(result)
129 def result(self): member in BenchmarkResult
364 self.Print(" <td>%3.1f</td>" % run.result())
417 print ("Processing result set \"%s\", file: %s" % (run_name, filename))
458 result = benchmark_object.getResult(run_name)
459 renderer.PrintResult(result)
462 main_result = result
[all...]
/third_party/node/deps/icu-small/source/common/unicode/
H A Ducptrie.h383 * @param result (out) variable for the trie lookup result
386 #define UCPTRIE_FAST_U16_NEXT(trie, dataAccess, src, limit, c, result) UPRV_BLOCK_MACRO_BEGIN { \
401 (result) = dataAccess(trie, __index); \
414 * @param result (out) variable for the trie lookup result
417 #define UCPTRIE_FAST_U16_PREV(trie, dataAccess, start, src, c, result) UPRV_BLOCK_MACRO_BEGIN { \
432 (result) = dataAccess(trie, __index); \
448 * @param result (out) variable for the trie lookup result
[all...]
/third_party/node/deps/npm/lib/commands/
H A Dtoken.js141 const result = await pulseTillDone.withPromise(
144 delete result.key
145 delete result.updated
147 this.npm.output(JSON.stringify(result))
149 Object.keys(result).forEach(k => this.npm.output(k + '\t' + result[k]))
152 for (const k of Object.keys(result)) {
153 table.push({ [this.npm.chalk.bold(k)]: String(result[k]) })
/third_party/node/deps/npm/node_modules/cli-table3/src/
H A Dlayout-manager.js195 let result = [];
203 result[cell[x]] = Math.max(result[cell[x]] || 0, cell[desiredWidth] || 0, forcedMin);
210 result[index] = val;
219 let existingWidth = result[col];
223 existingWidth += 1 + result[col + i];
241 result[col + i] += dif;
249 Object.assign(vals, result, auto);
/third_party/node/deps/icu-small/source/i18n/unicode/
H A Dudat.h122 * to control the length of the result; from SHORT to MEDIUM to LONG to FULL.
123 * The exact result depends on the locale, but generally:
1045 * @param result A pointer to a buffer to receive the formatted number.
1046 * @param resultLength The maximum size of result.
1061 UChar* result,
1074 * @param result A pointer to a buffer to receive the formatted number.
1075 * @param capacity The maximum size of result.
1091 UChar* result,
1103 * @param result
1106 * The maximum size of result
[all...]
/third_party/mesa3d/src/panfrost/vulkan/
H A Dpanvk_formats.c369 VkResult result; in panvk_GetPhysicalDeviceImageFormatProperties2() local
371 result = get_image_format_properties(physical_device, base_info, in panvk_GetPhysicalDeviceImageFormatProperties2()
374 if (result != VK_SUCCESS) in panvk_GetPhysicalDeviceImageFormatProperties2()
375 return result; in panvk_GetPhysicalDeviceImageFormatProperties2()
417 result = panvk_get_external_image_format_properties(physical_device, in panvk_GetPhysicalDeviceImageFormatProperties2()
421 if (result != VK_SUCCESS) in panvk_GetPhysicalDeviceImageFormatProperties2()
446 if (result == VK_ERROR_FORMAT_NOT_SUPPORTED) { in panvk_GetPhysicalDeviceImageFormatProperties2()
457 return result; in panvk_GetPhysicalDeviceImageFormatProperties2()
/third_party/mesa3d/src/virtio/vulkan/
H A Dvn_renderer.h252 VkResult result = vn_renderer_create_vtest(instance, alloc, renderer); in vn_renderer_create() local
253 if (result == VK_SUCCESS) in vn_renderer_create()
323 VkResult result = renderer->bo_ops.create_from_device_memory( in vn_renderer_bo_create_from_device_memory() local
325 if (result != VK_SUCCESS) in vn_renderer_bo_create_from_device_memory()
326 return result; in vn_renderer_bo_create_from_device_memory()
344 VkResult result = in vn_renderer_bo_create_from_dma_buf() local
346 if (result != VK_SUCCESS) in vn_renderer_bo_create_from_dma_buf()
347 return result; in vn_renderer_bo_create_from_dma_buf()
/third_party/icu/icu4c/source/test/intltest/
H A Ddatadrivennumberformattestsuite.cpp216 UBool result = false; in isPass() local
219 result = isFormatPass( in isPass()
227 result = isToPatternPass(tuple, appendErrorMessage, status); in isPass()
229 result = isParseCurrencyPass(tuple, appendErrorMessage, status); in isPass()
232 result = isParsePass(tuple, appendErrorMessage, status); in isPass()
234 result = isSelectPass(tuple, appendErrorMessage, status); in isPass()
239 if (!result) { in isPass()
249 return result; in isPass()
/third_party/node/deps/v8/src/base/
H A Dbits.h48 // result, so there's no need to mask value anymore, since there's no
65 T result = 0;
67 result = (result << 1) | (value & 1);
70 return result;
208 uint32_t result = RoundUpToPowerOfTwo32(value);
209 if (result > value) result >>= 1;
210 return result;
235 // |rhs| and stores the result int
[all...]
/third_party/node/deps/v8/src/builtins/
H A Dbuiltins-function.cc92 Handle<Object> result; in CreateDynamicFunction() local
94 isolate, result, in CreateDynamicFunction()
97 function = Handle<JSFunction>::cast(result); in CreateDynamicFunction()
134 Handle<Object> result; in BUILTIN() local
136 isolate, result, CreateDynamicFunction(isolate, args, "function")); in BUILTIN()
137 return *result; in BUILTIN()
209 Maybe<bool> result = in DoFunctionBind() local
213 if (result.IsNothing()) { in DoFunctionBind()
/third_party/node/deps/v8/src/objects/
H A Djs-list-format.cc131 // Now all properties are ready, so we can allocate the result object. in New()
155 Handle<JSObject> result = factory->NewJSObject(isolate->object_function()); in ResolvedOptions() local
164 JSObject::AddProperty(isolate, result, factory->locale_string(), locale, in ResolvedOptions()
166 JSObject::AddProperty(isolate, result, factory->type_string(), in ResolvedOptions()
168 JSObject::AddProperty(isolate, result, factory->style_string(), in ResolvedOptions()
171 return result; in ResolvedOptions()
204 std::vector<icu::UnicodeString> result; in ToUnicodeStringArray() local
210 result.push_back(Intl::ToICUUnicodeString(isolate, item_str)); in ToUnicodeStringArray()
212 return Just(result); in ToUnicodeStringArray()
/third_party/node/deps/v8/src/utils/
H A Dallocation.h43 T* result = new (std::nothrow) T[size]; in NewArray() local
44 if (result == nullptr) { in NewArray()
46 result = new (std::nothrow) T[size]; in NewArray()
47 if (result == nullptr) FatalProcessOutOfMemory(nullptr, "NewArray"); in NewArray()
49 return result; in NewArray()
55 T* result = reinterpret_cast<T*>(NewArray<uint8_t>(sizeof(T) * size)); in NewArray() local
56 for (size_t i = 0; i < size; ++i) result[i] = default_val; in NewArray()
57 return result; in NewArray()
/third_party/mesa3d/src/gallium/drivers/r600/sfn/
H A Dsfn_instr_alugroup.cpp357 uint32_t result = (m_readports_evaluator.m_nliterals + 1) >> 1; in slots() local
360 ++result; in slots()
363 ++result; in slots()
365 ++result; in slots()
368 return result; in slots()
392 AluInstr::SrcValues result; in get_kconsts() local
398 result.push_back(s); in get_kconsts()
401 return result; in get_kconsts()
/third_party/rust/crates/clap/tests/derive/
H A Dhelp.rs214 let result = Opts::try_parse_from(["test", "sub"]); in derive_generated_error_has_full_context()
216 result.is_err(), in derive_generated_error_has_full_context()
218 result.unwrap() in derive_generated_error_has_full_context()
228 assert_eq!(result.unwrap_err().to_string(), expected); in derive_generated_error_has_full_context()
438 let result = CliOptions::try_parse_from(["cmd", "--verbose-help"]); in custom_help_flag()
439 let err = result.unwrap_err(); in custom_help_flag()
454 let result = CliOptions::try_parse_from(["cmd", "--verbose-version"]); in custom_version_flag()
455 let err = result.unwrap_err(); in custom_version_flag()

Completed in 23 milliseconds

1...<<211212213214215216217218219220>>...668