/third_party/icu/icu4j/main/tests/packaging/src/com/ibm/icu/dev/test/ |
H A D | TestLocaleNamePackaging.java | 90 String result = dn.regionDisplayName(targetLocale.getCountry()); in testRegionDisplayNames() 91 assertEquals(targetLocale + " in " + displayLocale, expected[n++], result); in testRegionDisplayNames() 103 String result = dn.regionDisplayName(targetLocale.getCountry()); in testRegionDisplayNames() 104 assertEquals(targetLocale + " in " + displayJavaLocale, expected[n++], result); in testRegionDisplayNames() 156 String result = dn.languageDisplayName(targetLocale.getLanguage()); in testLanguageDisplayNames() 157 assertEquals(targetLocale + " in " + displayLocale, expected[n++], result); in testLanguageDisplayNames() 171 String result = dn.languageDisplayName(targetLocale.getLanguage()); in testLanguageDisplayNames() 172 assertEquals(targetLocale + " in " + displayJavaLocale, expected[n], result); in testLanguageDisplayNames() 203 String result = dn.localeDisplayName(kl); in testLocaleDisplayNameWithKeywords() 204 assertEquals(kl + " in " + displayLocale, expected[n++], result); in testLocaleDisplayNameWithKeywords() [all...] |
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/ |
H A D | TestLocaleNamePackaging.java | 93 String result = dn.regionDisplayName(targetLocale.getCountry()); in testRegionDisplayNames() 94 assertEquals(targetLocale + " in " + displayLocale, expected[n++], result); in testRegionDisplayNames() 106 String result = dn.regionDisplayName(targetLocale.getCountry()); in testRegionDisplayNames() 107 assertEquals(targetLocale + " in " + displayJavaLocale, expected[n++], result); in testRegionDisplayNames() 159 String result = dn.languageDisplayName(targetLocale.getLanguage()); in testLanguageDisplayNames() 160 assertEquals(targetLocale + " in " + displayLocale, expected[n++], result); in testLanguageDisplayNames() 174 String result = dn.languageDisplayName(targetLocale.getLanguage()); in testLanguageDisplayNames() 175 assertEquals(targetLocale + " in " + displayJavaLocale, expected[n], result); in testLanguageDisplayNames() 206 String result = dn.localeDisplayName(kl); in testLocaleDisplayNameWithKeywords() 207 assertEquals(kl + " in " + displayLocale, expected[n++], result); in testLocaleDisplayNameWithKeywords() [all...] |
/third_party/mbedtls/scripts/ |
H A D | code_style.py | 38 We don't reformat generated files, since the result might be different 39 from the output of the generator. Ideally the result of the generator 103 result = subprocess.run([UNCRUSTIFY_EXE, "--version"], 106 if result.returncode != 0: 107 print_err("Could not get Uncrustify version:", str(result.stderr, "utf-8")) 110 return str(result.stdout, "utf-8") 120 result = subprocess.run(uncrustify_cmd, stdout=subprocess.PIPE, 122 if result.returncode != 0: 123 print_err("Uncrustify returned " + str(result.returncode) + 127 # Uncrustify makes changes to the code and places the result i [all...] |
/third_party/jerryscript/tests/jerry/ |
H A D | array-prototype-slice.js | 65 var result = array.slice(4294967293, -1) variable 66 assert(result.length === 1) 67 assert(result[0] === "foo") 70 var result = array.slice(-4294967295, -4294967294) variable 71 assert(result.length === 1) 72 assert(result[0] === "bar") 76 var result = array.slice(4294967296, 4294967297); variable 77 assert(result.length === 0); 80 var result = array.slice(-4294967297, -4294967296); variable 81 assert(result [all...] |
/third_party/mesa3d/src/broadcom/compiler/ |
H A D | v3d_nir_lower_image_load_store.c | 179 nir_ssa_def *result = &instr->dest.ssa; in v3d_nir_lower_image_load() local 181 result = nir_format_unpack_uint(b, result, bits16, 4); in v3d_nir_lower_image_load() 183 result = nir_format_unpack_sint(b, result, bits16, 4); in v3d_nir_lower_image_load() 185 nir_ssa_def *rg = nir_channel(b, result, 0); in v3d_nir_lower_image_load() 186 nir_ssa_def *ba = nir_channel(b, result, 1); in v3d_nir_lower_image_load() 187 result = nir_vec4(b, in v3d_nir_lower_image_load() 194 nir_ssa_def_rewrite_uses_after(&instr->dest.ssa, result, in v3d_nir_lower_image_load() 195 result in v3d_nir_lower_image_load() [all...] |
/third_party/node/deps/v8/src/wasm/ |
H A D | simd-shuffle.cc | 136 int8_t result = 0; in PackBlend8() local 138 result |= (shuffle16x8[i] >= 8 ? 1 : 0) << i; in PackBlend8() 140 return result; in PackBlend8() 144 int8_t result = 0; in PackBlend4() local 146 result |= (shuffle32x4[i] >= 4 ? 0x3 : 0) << (i * 2); in PackBlend4() 148 return result; in PackBlend4() 152 int32_t result = 0; in Pack4Lanes() local 154 result <<= 8; in Pack4Lanes() 155 result |= shuffle[i]; in Pack4Lanes() 157 return result; in Pack4Lanes() [all...] |
/third_party/node/deps/v8/third_party/test262-harness/test/ |
H A D | test_test262.py | 72 result = mute(True)(test_suite.PrintSummary)(progress, None) 78 """, result) 94 result = mute(True)(test_suite.PrintSummary)(progress, True) 108 self.assertEqual(expected_out, result) 127 result = mute(True)(test_suite.PrintSummary)(progress, None) 139 """, result) 182 result = mute(True)(test_suite.PrintSummary)(progress, True) 183 self.assertEqual(expected_out, result) 201 result = mute(True)(test_suite.PrintSummary)(progress, True) 213 self.assertEqual(expected_out, result) [all...] |
/third_party/node/deps/v8/src/numbers/ |
H A D | conversions-inl.h | 46 uint32_t result; in FastD2UI() 54 memcpy(&result, mantissa_ptr, sizeof(result)); in FastD2UI() 55 return negative ? ~result + 1 : result; in FastD2UI() 105 // Masking to a 32-bit value ensures that the result of the 186 uint64_t result = bit_cast<uint64_t>(shifted_value); in DoubleToUint32IfEqualToSelf() local 187 if ((result >> 32) == kValidTopBits) { in DoubleToUint32IfEqualToSelf() 188 *uint32_value = result & kBottomBitMask; in DoubleToUint32IfEqualToSelf() 189 return FastUI2D(result in DoubleToUint32IfEqualToSelf() 245 TryNumberToSize(Object number, size_t* result) DoubleToUint32IfEqualToSelf() argument 274 size_t result = 0; NumberToSize() local [all...] |
/third_party/rust/crates/codespan/codespan-lsp/src/ |
H A D | lib.rs | 181 let result = position_to_byte_index( in unicode_get_byte_index() 189 assert_eq!(result.unwrap(), 5); in unicode_get_byte_index() 191 let result = position_to_byte_index( in unicode_get_byte_index() 199 assert_eq!(result.unwrap(), 10); in unicode_get_byte_index() 208 let result = byte_index_to_position(&files, file_id, 5); in unicode_get_position() 210 result.unwrap(), in unicode_get_position() 217 let result = byte_index_to_position(&files, file_id, 10); in unicode_get_position() 219 result.unwrap(), in unicode_get_position() 226 let result = byte_index_to_position(&files, file_id2, 11); in unicode_get_position() 228 result in unicode_get_position() [all...] |
/third_party/rust/crates/clap/tests/derive/ |
H A D | nested_subcommands.rs | 45 let result = Opt::try_parse_from(["test"]); in test_no_cmd() 46 assert!(result.is_err()); in test_no_cmd() 100 let result = Opt::try_parse_from(["test", "badcmd"]); in test_badinput() 101 assert!(result.is_err()); in test_badinput() 102 let result = Opt::try_parse_from(["test", "add", "--verbose"]); in test_badinput() 103 assert!(result.is_err()); in test_badinput() 104 let result = Opt::try_parse_from(["test", "--badopt", "add"]); in test_badinput() 105 assert!(result.is_err()); in test_badinput() 106 let result = Opt::try_parse_from(["test", "add", "--badopt"]); in test_badinput() 107 assert!(result in test_badinput() [all...] |
/third_party/skia/third_party/externals/angle2/src/common/third_party/base/anglebase/numerics/ |
H A D | safe_math_clang_gcc_impl.h | 86 __attribute__((always_inline)) static constexpr bool Do(T x, U y, V *result) in Do() 88 return !__builtin_add_overflow(x, y, result); in Do() 97 __attribute__((always_inline)) static constexpr bool Do(T x, U y, V *result) in Do() 99 return !__builtin_sub_overflow(x, y, result); in Do() 119 __attribute__((always_inline)) static constexpr bool Do(T x, U y, V *result) in Do() 121 return CheckedMulFastAsmOp<T, U>::is_supported ? CheckedMulFastAsmOp<T, U>::Do(x, y, result) in Do() 122 : !__builtin_mul_overflow(x, y, result); in Do() 168 T result; in Do() local 169 return !__builtin_sub_overflow(T(0), value, &result) ? result in Do() [all...] |
/third_party/skia/third_party/externals/libwebp/swig/ |
H A D | libwebp_go_wrap.c | 207 int result; in _wrap_WebPGetDecoderVersion() local 211 intgo result; in _wrap_WebPGetDecoderVersion() member 215 result = (int)WebPGetDecoderVersion(); in _wrap_WebPGetDecoderVersion() 216 swig_a->result = result; in _wrap_WebPGetDecoderVersion() 229 int result; in _wrap_wrapped_WebPGetInfo() local 236 intgo result; in _wrap_wrapped_WebPGetInfo() member 256 result = (int)WebPGetInfo((uint8_t const *)arg1,arg2,arg3,arg4); in _wrap_wrapped_WebPGetInfo() 257 swig_a->result = result; in _wrap_wrapped_WebPGetInfo() [all...] |
/third_party/skia/third_party/externals/oboe/apps/OboeTester/app/src/main/java/com/google/sample/oboe/manualtest/ |
H A D | OboeAudioStream.java | 31 int result = stopPlaybackNative(); in stopPlayback() 32 if (result < 0) { in stopPlayback() 33 throw new IOException("Stop Playback failed! result = " + result); in stopPlayback() 41 int result = startPlaybackNative(); in startPlayback() 42 if (result < 0) { in startPlayback() 43 throw new IOException("Start Playback failed! result = " + result); in startPlayback() 59 int result = openNative(requestedConfiguration.getNativeApi(), in open() 75 if (result < in open() [all...] |
/third_party/skia/src/pathops/ |
H A D | SkOpBuilder.cpp | 128 bool SkOpBuilder::resolve(SkPath* result) { in resolve() argument 129 SkPath original = *result; in resolve() 164 *result = fPathRefs[0]; in resolve() 166 if (!Op(*result, fPathRefs[index], fOps[index], result)) { in resolve() 168 *result = original; in resolve() 179 *result = original; in resolve() 183 // convert the even odd result back to winding form before accumulating it in resolve() 185 *result = original; in resolve() 192 bool success = Simplify(sum, result); in resolve() [all...] |
/third_party/skia/third_party/externals/tint/src/reader/spirv/ |
H A D | namer.cc | 75 std::string result; in Sanitize() local 82 // prefix the result with "x". in Sanitize() 85 result = "x"; in Sanitize() 88 std::back_inserter(result), [&valid](const char c) { in Sanitize() 91 return result; in Sanitize() 96 std::string result; in GetMemberName() local 101 result = member_names[member_index]; in GetMemberName() 104 return result; in GetMemberName() 124 auto result = FindUnusedDerivedName(base_name); in MakeDerivedName() local 125 const bool registered = RegisterWithoutId(result); in MakeDerivedName() [all...] |
/third_party/skia/third_party/externals/tint/src/writer/msl/ |
H A D | generator_impl_variable_decl_statement_test.cc | 38 EXPECT_EQ(gen.result(), " float a = 0.0f;\n"); in TEST_F() 51 EXPECT_EQ(gen.result(), " float const a = float();\n"); in TEST_F() 64 EXPECT_EQ(gen.result(), " float a[5] = {0.0f};\n"); in TEST_F() 82 EXPECT_EQ(gen.result(), R"( S a = {}; in TEST_F() 96 EXPECT_EQ(gen.result(), " float2 a = 0.0f;\n"); in TEST_F() 110 EXPECT_EQ(gen.result(), " float3x2 a = float3x2(0.0f);\n"); in TEST_F() 123 EXPECT_THAT(gen.result(), HasSubstr("thread float tint_symbol_1 = 0.0f;\n")); in TEST_F() 135 EXPECT_THAT(gen.result(), in TEST_F() 149 EXPECT_THAT(gen.result(), HasSubstr("threadgroup float tint_symbol_2;\n")); in TEST_F() 162 EXPECT_EQ(gen.result(), in TEST_F() [all...] |
/third_party/protobuf/src/google/protobuf/ |
H A D | dynamic_message.h | 162 std::vector<const Message*> result; in Sort() local 163 result.reserve(map_size); in Sort() 167 result.push_back(&*it); in Sort() 170 std::stable_sort(result.begin(), result.end(), comparator); in Sort() 174 if (!comparator(result[j - 1], result[j])) { in Sort() 175 GOOGLE_LOG(ERROR) << (comparator(result[j], result[j - 1]) in Sort() 181 return result; in Sort() [all...] |
/third_party/protobuf/js/experimental/runtime/kernel/ |
H A D | buffer_decoder.js | 222 let result = b & 0x7F; 224 return result; 228 result |= (b & 0x7F) << 7; 230 return result; 234 result |= (b & 0x7F) << 14; 236 return result; 240 result |= (b & 0x7F) << 21; 242 return result; 247 result |= (b & 0x0F) << 28; 256 return result >>> [all...] |
/third_party/python/Lib/test/ |
H A D | _testcppext.cpp | 214 PyObject *result; in _testcppext_exec() local 216 result = PyObject_CallMethod(module, "test_api_casts", ""); in _testcppext_exec() 217 if (!result) return -1; in _testcppext_exec() 218 Py_DECREF(result); in _testcppext_exec() 220 result = PyObject_CallMethod(module, "test_unicode", ""); in _testcppext_exec() 221 if (!result) return -1; in _testcppext_exec() 222 Py_DECREF(result); in _testcppext_exec() 224 result = PyObject_CallMethod(module, "test_virtual_object", ""); in _testcppext_exec() 225 if (!result) return -1; in _testcppext_exec() 226 Py_DECREF(result); in _testcppext_exec() [all...] |
/third_party/skia/bench/ |
H A D | RegionBench.cpp | 13 SkRegion result; in union_proc() local 14 return result.op(a, b, SkRegion::kUnion_Op); in union_proc() 18 SkRegion result; in sect_proc() local 19 return result.op(a, b, SkRegion::kIntersect_Op); in sect_proc() 23 SkRegion result; in diff_proc() local 24 return result.op(a, b, SkRegion::kDifference_Op); in diff_proc() 28 SkRegion result; in diffrect_proc() local 29 return result.op(a, b.getBounds(), SkRegion::kDifference_Op); in diffrect_proc() 33 SkRegion result; in diffrectbig_proc() local 34 return result in diffrectbig_proc() [all...] |
/third_party/vk-gl-cts/scripts/log/ |
H A D | log_to_xml.py | 111 def normalizeToXml (result, doc): 115 xml.sax.parseString(result.log, handler, errHandler) 124 testCaseResult.setAttribute('CasePath', result.name) 132 # Create result element 134 resultElem.setAttribute('StatusCode', result.statusCode) 135 resultElem.appendChild(doc.createTextNode(result.statusDetails)) 168 result = parser.getNextTestCaseResult(logFile) 169 while result is not None: 171 countByStatusCode[result.statusCode] += 1 172 rootNodes = normalizeToXml(result, dstDo [all...] |
/third_party/libabigail/src/ |
H A D | abg-ir.cc | 125 string*& result = priv_->map[str_value]; in create_string() local 126 if (!result && !str_value.empty()) in create_string() 127 result = new string(str_value); in create_string() 128 return interned_string(result); in create_string() 414 string path, result; in expand() local 828 // kinds of comparison should yield the same result, otherwise type in try_canonical_compare() 868 bool result = l.priv_->comparison_started(l, r); in is_comparison_cycle_detected() local 869 return result ; in is_comparison_cycle_detected() 895 /// To break the cycle, we assume the result of the comparison is true 991 /// Return the result o 2214 int result = 0; get_number_of_aliases() local 2468 string result; get_aliases_id_string() local 2508 string result; get_aliases_id_string() local 3473 sort_types(const canonical_type_sptr_set_type& types, vector<type_base_sptr>& result) sort_types() argument 4547 size_t result = 0; get_hash() local 5022 bool result = true; maybe_compare_as_member_decls() local 5119 bool result = true; equals() local 6741 qualified_type_def_sptr result = t; strip_redundant_quals_from_underyling_types() local 7334 type_base_sptr result; clone_typedef_array_qualified_type() local 7366 type_base_sptr result = clone_typedef_array_qualified_type(t); clone_array_tree() local 7615 int result = 0; get_num_anonymous_member_classes() local 7633 int result = 0; get_num_anonymous_member_unions() local 7651 int result = 0; get_num_anonymous_member_enums() local 7934 bool result = true; equals() local 8342 string result; get_name() local 8522 interned_string result; get_generic_anonymous_internal_type_name() local 8929 string result; get_pretty_representation() local 10728 array_type_def_sptr result; is_typedef_of_array() local 10869 string result; components_to_type_name() local 11091 union_decl_sptr result = lookup_type_in_map<union_decl>(loc, m); lookup_union_type_per_location() local 11426 type_base_sptr result; lookup_type() local 11686 type_base_sptr result; lookup_type_in_scope() local 11870 type_decl_sptr result; lookup_basic_type_through_translation_units() local 11896 union_decl_sptr result; lookup_union_type_through_translation_units() local 11922 enum_type_decl_sptr result; lookup_enum_type_through_translation_units() local 11946 typedef_decl_sptr result; lookup_typedef_type_through_translation_units() local 11971 qualified_type_def_sptr result; lookup_qualified_type_through_translation_units() local 11996 pointer_type_def_sptr result; lookup_pointer_type_through_translation_units() local 12021 reference_type_def_sptr result; lookup_reference_type_through_translation_units() local 12046 array_type_def_sptr result; lookup_array_type_through_translation_units() local 12071 function_type_sptr result; lookup_function_type_through_translation_units() local 12095 type_base_sptr result; lookup_type_through_translation_units() local 12147 function_type_sptr result; lookup_or_synthesize_fn_type() local 12195 type_decl_sptr result; lookup_basic_type() local 12218 type_decl_sptr result; lookup_basic_type_per_location() local 12311 class_decl_sptr result = lookup_type_in_map<class_decl>(qualified_name, m); lookup_class_type() local 12345 lookup_decl_only_class_types(const interned_string& qualified_name, const corpus& corp, type_base_wptrs_type& result) lookup_decl_only_class_types() argument 12395 class_decl_sptr result = lookup_type_in_map<class_decl>(loc, m); lookup_class_type_per_location() local 12430 union_decl_sptr result = lookup_type_in_map<union_decl>(type_name, m); lookup_union_type() local 12510 enum_type_decl_sptr result = lookup_enum_type() local 12561 enum_type_decl_sptr result = lookup_type_in_map<enum_type_decl>(loc, m); lookup_enum_type_per_location() local 12635 typedef_decl_sptr result = lookup_typedef_type() local 12656 typedef_decl_sptr result = lookup_type_in_map<typedef_decl>(loc, m); lookup_typedef_type_per_location() local 12691 type_base_sptr result = lookup_class_type(qualified_name, corp); lookup_class_or_typedef_type() local 12717 type_base_sptr result = lookup_class_or_typedef_type(qualified_name, corp); lookup_class_typedef_or_enum_type() local 12754 qualified_type_def_sptr result = lookup_qualified_type() local 12799 pointer_type_def_sptr result = lookup_pointer_type() local 12849 reference_type_def_sptr result = lookup_reference_type() local 12898 array_type_def_sptr result = lookup_array_type() local 12969 function_type_sptr result = lookup_function_type() local 12995 type_base_sptr result; lookup_type() local 13028 type_base_sptr result; lookup_type_per_location() local 13110 bool result = false; maybe_update_types_lookup_map() local 13169 bool result = false; maybe_update_types_lookup_map() local 13203 bool result = false; maybe_update_types_lookup_map() local 13736 type_base_sptr result; synthesize_type_from_translation_unit() local 14193 type_base_sptr result; get_canonical_type_for() local 14599 bool result = (l.get_size_in_bits() == r.get_size_in_bits() equals() local 14667 bool result = v.visit_end(this); traverse() local 14985 string result; to_string() local 15116 bool result = false; equals() local 15311 bool result = v.visit_end(this); traverse() local 15373 bool result = equals(static_cast<const scope_decl&>(l), equals() local 15452 bool result = v.visit_end(this); traverse() local 15762 bool result = true; equals() local 15948 bool result = v.visit_end(this); traverse() local 16244 bool result = l.get_pointed_to_type() == r.get_pointed_to_type(); equals() local 16427 bool result = v.visit_end(this); traverse() local 16634 bool result = (l.get_pointed_to_type() == r.get_pointed_to_type()); equals() local 16758 string result = get_pretty_representation() local 16792 bool result = v.visit_end(this); traverse() local 17199 bool result = true; equals() local 17320 bool result = v.visit_end(this); traverse() local 17524 bool result = true; equals() local 17789 bool result = v.visit_end(this); traverse() local 17934 bool result = v.visit_end(this); traverse() local 17956 bool result = false; enum_has_non_name_change() local 18140 bool result = true; equals() local 18625 bool result = true; equals() local 18701 string result = "typedef "; get_pretty_representation() local 18752 bool result = v.visit_end(this); traverse() local 18939 bool result = true; equals() local 19142 string result; get_pretty_representation() local 19411 parameter_sptr result; get_parm_at_index_from_first_non_implicit_parm() local 19522 bool result = true; equals() local 20159 string result = mem_fn ? "method ": "function "; get_pretty_representation() local 20208 string result; get_pretty_representation_of_declarator() local 20442 bool result = true; equals() local 20896 bool result = true; equals() local 21055 string result = type_repr; get_pretty_representation() local 21255 bool result = v.visit_end(this); traverse() local 21398 int result = 0; get_num_anonymous_member_classes() local 21416 int result = 0; get_num_anonymous_member_unions() local 21434 int result = 0; get_num_anonymous_member_enums() local 22009 bool result = true; equals() local 22686 string result = cl; get_pretty_representation() local 23061 method_type_sptr result; get_type() local 23528 bool result = false; equals() local 23541 bool result = true; equals() local 23932 bool result = v.visit_end(this); traverse() local 24646 bool result = v.visit_end(this); traverse() local 24682 bool result = false; equals() local 24690 bool result = equals(static_cast<const class_or_union&>(l), equals() local 25736 size_t result = 0; hash_type_or_decl() local [all...] |
/base/hiviewdfx/hiview/adapter/plugins/eventservice/service/test/unittest/common/ |
H A D | data_share_test.cpp | 108 auto result = dataShareDao->SaveSubscriberInfo(uid, events); in HWTEST_F() local 109 EXPECT_EQ(result, DB_SUCC); in HWTEST_F() 113 result = dataShareDao->GetEventListByUid(uid, eventList); in HWTEST_F() 114 EXPECT_EQ(result, DB_SUCC); in HWTEST_F() 116 result = dataShareDao->GetUidByBundleName(bundleName, uid); in HWTEST_F() 117 EXPECT_EQ(result, DB_SUCC); in HWTEST_F() 119 result = dataShareDao->GetTotalSubscriberInfo(uidToEventsMap); in HWTEST_F() 120 EXPECT_EQ(result, DB_SUCC); in HWTEST_F() 122 result = dataShareDao->SaveSubscriberInfo(uid, events); in HWTEST_F() 123 EXPECT_EQ(result, DB_SUC in HWTEST_F() [all...] |
/base/location/frameworks/js/napi/include/ |
H A D | napi_util.h | 42 void LocationToJs(const napi_env& env, const std::unique_ptr<Location>& locationInfo, napi_value& result); 43 void LocationsToJs(const napi_env& env, const std::vector<std::unique_ptr<Location>>& locations, napi_value& result); 44 void SatelliteStatusToJs(const napi_env& env, const std::shared_ptr<SatelliteStatus>& statusInfo, napi_value& result); 45 void SystemLocationToJs(const napi_env& env, const std::unique_ptr<Location>& locationInfo, napi_value& result); 64 napi_status SetValueUtf8String(const napi_env& env, const char* fieldStr, const char* str, napi_value& result); 65 napi_status SetValueStringArray(const napi_env& env, const char* fieldStr, napi_value& value, napi_value& result); 66 napi_status SetValueInt32(const napi_env& env, const char* fieldStr, const int intValue, napi_value& result); 67 napi_status SetValueInt64(const napi_env& env, const char* fieldStr, const int64_t intValue, napi_value& result); 68 napi_status SetValueDouble(const napi_env& env, const char* fieldStr, const double doubleValue, napi_value& result); 69 napi_status SetValueBool(const napi_env& env, const char* fieldStr, const bool boolvalue, napi_value& result); [all...] |
/base/account/os_account/frameworks/account_iam/src/ |
H A D | account_iam_callback_stub.cpp | 73 int32_t result; in ProcOnResult() local 74 if (!data.ReadInt32(result)) { in ProcOnResult() 75 ACCOUNT_LOGE("failed to read result for IDMCallback OnResult"); in ProcOnResult() 80 ACCOUNT_LOGE("failed to read result for IDMCallback OnResult"); in ProcOnResult() 84 OnResult(result, extraInfo); in ProcOnResult() 168 int32_t result; in ProcOnResult() local 169 if (!data.ReadInt32(result)) { in ProcOnResult() 170 ACCOUNT_LOGE("failed to read result for GetSetPropCallback OnResult"); in ProcOnResult() 175 ACCOUNT_LOGE("failed to read result for GetSetPropCallback OnResult"); in ProcOnResult() 179 OnResult(result, extraInf in ProcOnResult() 204 int32_t result; ProcOnEnrolledId() local 239 int32_t result; ProcOnResult() local [all...] |