Home
last modified time | relevance | path

Searched refs:result (Results 15726 - 15750 of 17805) sorted by relevance

1...<<621622623624625626627628629630>>...713

/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/util/
H A DMeasureUnit.java152 Set<MeasureUnit> result = new HashSet<>(); in getAvailable()
155 result.add(unit); in getAvailable()
160 return Collections.unmodifiableSet(result); in getAvailable()
/third_party/icu/icu4c/source/common/
H A Duniset_props.cpp992 * property pattern. Regardless of the result, return with the
1001 UBool result = false, literal; in resemblesPropertyPattern() local
1010 result = (c == u'[') ? (d == u':') : in resemblesPropertyPattern()
1014 return result && U_SUCCESS(ec); in resemblesPropertyPattern()
/third_party/mesa3d/src/glx/
H A Dglx_pbuffer.c737 GLXPbuffer result; in glXCreatePbuffer() local
773 &result)) { in glXCreatePbuffer()
783 return result; in glXCreatePbuffer()
/third_party/mesa3d/src/gallium/winsys/svga/drm/
H A Dvmw_screen_svga.c703 SVGA3dDevCapResult *result) in vmw_svga_winsys_get_cap()
712 *result = vws->ioctl.cap_3d[index].result; in vmw_svga_winsys_get_cap()
701 vmw_svga_winsys_get_cap(struct svga_winsys_screen *sws, SVGA3dDevCapIndex index, SVGA3dDevCapResult *result) vmw_svga_winsys_get_cap() argument
/third_party/node/src/crypto/
H A Dcrypto_dh.cc703 v8::Local<v8::Value>* result) { in EncodeOutput()
704 *result = out->ToArrayBuffer(env); in EncodeOutput()
705 return Just(!result->IsEmpty()); in EncodeOutput()
699 EncodeOutput( Environment* env, const DHBitsConfig& params, ByteSource* out, v8::Local<v8::Value>* result) EncodeOutput() argument
/third_party/node/test/parallel/
H A Dtest-assert-deep.js19 let result = 'Expected values to be loosely deep-equal:\n\n';
31 result += `${str}${literals[i + 1]}`;
35 message: result
982 message: "'ownKeys' on proxy: trap result did not include 'length'"
H A Dtest-crypto-sign-verify.js529 let result;
531 result = crypto.verify('sha1', data, opts, sig);
537 assert.strictEqual(result, false);
/third_party/node/deps/v8/third_party/jinja2/
H A Denvironment.py105 result = {}
109 result[extension.identifier] = extension(environment)
110 return result
215 A callable that can be used to process the result of a variable
643 returns the result of the expression.
680 body = [nodes.Assign(nodes.Name("result", "store"), expr, lineno=1)]
804 in the result list.
1270 rv = context.vars["result"]
/third_party/node/deps/v8/third_party/inspector_protocol/crdtp/
H A Dcbor.cc96 T result = 0; in ReadBytesMostSignificantByteFirst() local
98 result |= T(in[sizeof(T) - 1 - shift_bytes]) << (shift_bytes * 8); in ReadBytesMostSignificantByteFirst()
99 return result; in ReadBytesMostSignificantByteFirst()
/third_party/node/tools/inspector_protocol/jinja2/
H A Denvironment.py82 result = {}
86 result[extension.identifier] = extension(environment)
87 return result
187 A callable that can be used to process the result of a variable
596 returns the result of the expression.
634 body = [nodes.Assign(nodes.Name('result', 'store'), expr, lineno=1)]
743 in the result list.
1184 rv = context.vars['result']
/third_party/ntfs-3g/ntfsprogs/
H A Dntfscp.c845 int result = 1; in main() local
1150 result = 0; in main()
1178 return result; in main()
/third_party/musl/porting/liteos_m/kernel/src/regex/
H A Dregexec.c775 int result; in tre_tnfa_run_backtrack() local
785 result = strncmp((const char*)string + so, str_byte - 1, in tre_tnfa_run_backtrack()
788 if (result == 0) in tre_tnfa_run_backtrack()
/third_party/musl/porting/liteos_m_iccarm/kernel/src/regex/
H A Dregexec.c775 int result; in tre_tnfa_run_backtrack() local
785 result = strncmp((const char*)string + so, str_byte - 1, in tre_tnfa_run_backtrack()
788 if (result == 0) in tre_tnfa_run_backtrack()
/third_party/musl/porting/uniproton/kernel/src/regex/
H A Dregexec.c775 int result; in tre_tnfa_run_backtrack() local
785 result = strncmp((const char*)string + so, str_byte - 1, in tre_tnfa_run_backtrack()
788 if (result == 0) in tre_tnfa_run_backtrack()
/third_party/musl/src/regex/
H A Dregexec.c775 int result; in tre_tnfa_run_backtrack() local
785 result = strncmp((const char*)string + so, str_byte - 1, in tre_tnfa_run_backtrack()
788 if (result == 0) in tre_tnfa_run_backtrack()
/third_party/node/deps/icu-small/source/common/
H A Duniset_props.cpp989 * property pattern. Regardless of the result, return with the
998 UBool result = false, literal; in resemblesPropertyPattern() local
1007 result = (c == u'[') ? (d == u':') : in resemblesPropertyPattern()
1011 return result && U_SUCCESS(ec); in resemblesPropertyPattern()
/third_party/node/deps/googletest/include/gtest/
H A Dgtest-printers.h1160 Strings result; in UniversalTersePrintTupleFieldsToStrings() local
1163 &result); in UniversalTersePrintTupleFieldsToStrings()
1164 return result; in UniversalTersePrintTupleFieldsToStrings()
/third_party/mesa3d/src/microsoft/compiler/
H A Ddxil_nir_lower_int_cubemaps.c565 bool result = in dxil_nir_lower_int_cubemaps() local
571 if (result) { in dxil_nir_lower_int_cubemaps()
579 return result; in dxil_nir_lower_int_cubemaps()
/third_party/mesa3d/src/panfrost/vulkan/
H A Dpanvk_cmd_buffer.c384 VkResult result = vk_command_pool_init(&pool->vk, &device->vk, in panvk_CreateCommandPool()
386 if (result != VK_SUCCESS) { in panvk_CreateCommandPool()
388 return result; in panvk_CreateCommandPool()
/third_party/icu/icu4c/source/test/cintltst/
H A Dcrestst.c136 const UChar *result = NULL; in TestAliasConflict() local
145 result = ures_getStringByKey(he, "ExemplarCharacters", &resultLen, &status); in TestAliasConflict()
146 if(U_FAILURE(status) || result == NULL) { in TestAliasConflict()
/third_party/icu/icu4c/source/test/intltest/
H A Didnaref.cpp1014 int32_t result = -1; in idnaref_compare() local
1050 result = compareCaseInsensitiveASCII(b1,b1Len,b2,b2Len); in idnaref_compare()
1061 return result; in idnaref_compare()
/third_party/node/deps/v8/src/compiler/
H A Djs-inlining.cc328 // be the result of a closure instantiation operation, as follows: in DetermineCallTarget()
407 // still return the result of the Wasm function call. in ReduceJSWasmCall()
651 Node* result; in ReduceJSCall() local
653 // value or the implicit receiver should be selected as a result of the in ReduceJSCall()
656 result = in ReduceJSCall()
660 ReplaceWithValue(dummy, result); in ReduceJSCall()
H A Djs-inlining-heuristic.cc79 bool const result = CanConsiderForInlining(broker, feedback_cell); in CanConsiderForInlining() local
80 if (result) { in CanConsiderForInlining()
84 return result; in CanConsiderForInlining()
/third_party/node/deps/v8/src/ast/
H A Dscopes.h654 Variable* result = variables_.Declare( in Declare() local
657 if (*was_added) locals_.Add(result); in Declare()
658 return result; in Declare()
663 // returning a valid result after variables are resolved, NeedsScopeInfo()
/third_party/node/deps/v8/src/heap/cppgc/
H A Dsweeper.cc552 const auto result = in VisitNormalPage() local
559 if (result.is_empty) { in VisitNormalPage()
567 result.largest_new_free_list_entry, largest_new_free_list_entry_); in VisitNormalPage()

Completed in 58 milliseconds

1...<<621622623624625626627628629630>>...713