Home
last modified time | relevance | path

Searched refs:result (Results 226 - 250 of 11706) sorted by relevance

12345678910>>...469

/third_party/node/deps/npm/test/lib/commands/
H A Dls.js112 result: () => mock.joinedOutput(),
133 const { result, ls } = await mockLs(t, {
149 cleanCwd(result()),
155 const { result, ls } = await mockLs(t, {
163 cleanCwd(result()),
173 const { result, ls } = await mockLs(t, {
205 t.matchSnapshot(cleanCwd(result()), 'should omit missing optional dep')
209 const { result, ls } = await mockLs(t, {
223 t.matchSnapshot(cleanCwd(result()), 'should output containing problems info')
230 const { result, l
[all...]
/third_party/curl/lib/
H A Dopenldap.c233 static CURLcode oldap_map_error(int rc, CURLcode result) in oldap_map_error() argument
237 result = CURLE_OUT_OF_MEMORY; in oldap_map_error()
240 result = CURLE_LOGIN_DENIED; in oldap_map_error()
243 result = CURLE_UNSUPPORTED_PROTOCOL; in oldap_map_error()
246 result = CURLE_REMOTE_ACCESS_DENIED; in oldap_map_error()
249 return result; in oldap_map_error()
254 CURLcode result = CURLE_OK; in oldap_url_parse() local
277 result = rc == LDAP_URL_ERR_MEM? CURLE_OUT_OF_MEMORY: CURLE_URL_MALFORMAT; in oldap_url_parse()
283 return result; in oldap_url_parse()
289 CURLcode result in oldap_parse_login_options() local
320 CURLcode result; oldap_setup_connection() local
352 CURLcode result = CURLE_OK; oldap_perform_auth() local
375 CURLcode result = CURLE_OK; oldap_continue_auth() local
396 CURLcode result = CURLE_OK; oldap_cancel_auth() local
409 CURLcode result = CURLE_OK; oldap_perform_bind() local
439 CURLcode result = CURLE_OK; oldap_perform_mechs() local
462 CURLcode result = Curl_sasl_start(&li->sasl, data, TRUE, &progress); oldap_perform_sasl() local
480 CURLcode result = CURLE_OK; oldap_ssl_connect() local
506 CURLcode result = CURLE_OK; oldap_perform_starttls() local
536 CURLcode result; oldap_connect() local
587 CURLcode result = oldap_perform_starttls(data); oldap_connect() local
610 CURLcode result = CURLE_OK; oldap_state_mechs_resp() local
673 CURLcode result = CURLE_OK; oldap_state_sasl_resp() local
700 CURLcode result = CURLE_OK; oldap_state_bind_resp() local
723 CURLcode result = CURLE_OK; oldap_connecting() local
882 CURLcode result; oldap_do() local
955 CURLcode result = CURLE_OK; client_write() local
985 CURLcode result = CURLE_AGAIN; oldap_recv() local
[all...]
/test/xts/acts/applications/print_fwk/print_xts/entry/src/main/cpp/
H A Dohprint.cpp48 napi_value result = nullptr; in OHPrintInit() local
51 napi_create_int32(env, static_cast<int32_t>(errorCode), &result); in OHPrintInit()
52 return result; in OHPrintInit()
57 napi_value result = nullptr; in OHPrintListener() local
62 napi_create_int32(env, static_cast<int32_t>(errorCode), &result); in OHPrintListener()
63 return result; in OHPrintListener()
68 napi_value result = nullptr; in OHPrintDiscovery() local
73 napi_create_int32(env, static_cast<int32_t>(errorCode), &result); in OHPrintDiscovery()
74 return result; in OHPrintDiscovery()
79 napi_value result in OHPrintConnect() local
91 napi_value result = nullptr; OHPrintJob() local
101 napi_value result = nullptr; OHPrintList() local
114 napi_value result = nullptr; OHPrintInfo() local
127 napi_value result = nullptr; OHPrintProperty() local
142 napi_value result = nullptr; OHPrintStartPrintByNative() local
[all...]
/third_party/icu/icu4c/source/i18n/
H A Dmeasunit_extra.cpp228 UStringTrieResult result = quantitiesTrie.next(target.data(), target.length());
229 if (!USTRINGTRIE_HAS_VALUE(result)) {
377 // Copy the result into the global constant pointer
451 StringPiece result = b.buildStringPiece(USTRINGTRIE_BUILD_FAST, status);
454 // Copy the result into the global constant pointer
455 size_t numBytes = result.length();
461 uprv_memcpy(gSerializedUnitExtrasStemTrie, result.data(), numBytes);
555 MeasureUnitImpl result;
558 return result;
561 // The dimenionless unit: nothing to parse. leave result a
[all...]
/third_party/node/deps/icu-small/source/i18n/
H A Dmeasunit_extra.cpp228 UStringTrieResult result = quantitiesTrie.next(target.data(), target.length());
229 if (!USTRINGTRIE_HAS_VALUE(result)) {
377 // Copy the result into the global constant pointer
451 StringPiece result = b.buildStringPiece(USTRINGTRIE_BUILD_FAST, status);
454 // Copy the result into the global constant pointer
455 size_t numBytes = result.length();
461 uprv_memcpy(gSerializedUnitExtrasStemTrie, result.data(), numBytes);
555 MeasureUnitImpl result;
558 return result;
561 // The dimenionless unit: nothing to parse. leave result a
[all...]
/third_party/mesa3d/src/vulkan/wsi/
H A Dwsi_common_drm.c112 VkResult result; in prepare_signal_dma_buf_from_semaphore() local
119 result = wsi_dma_buf_export_sync_file(image->dma_buf_fd, &sync_file_fd); in prepare_signal_dma_buf_from_semaphore()
120 if (result != VK_SUCCESS) in prepare_signal_dma_buf_from_semaphore()
121 return result; in prepare_signal_dma_buf_from_semaphore()
123 result = wsi_dma_buf_import_sync_file(image->dma_buf_fd, sync_file_fd); in prepare_signal_dma_buf_from_semaphore()
125 if (result != VK_SUCCESS) in prepare_signal_dma_buf_from_semaphore()
126 return result; in prepare_signal_dma_buf_from_semaphore()
137 result = chain->wsi->CreateSemaphore(chain->device, &semaphore_info, in prepare_signal_dma_buf_from_semaphore()
140 if (result != VK_SUCCESS) in prepare_signal_dma_buf_from_semaphore()
141 return result; in prepare_signal_dma_buf_from_semaphore()
150 VkResult result; wsi_prepare_signal_dma_buf_from_semaphore() local
168 VkResult result; wsi_signal_dma_buf_from_semaphore() local
209 VkResult result; wsi_create_sync_for_dma_buf_wait() local
259 bool result = drmDevicesEqual(device_a, device_b); wsi_common_drm_devices_equal() local
333 VkResult result = wsi_configure_image(chain, pCreateInfo, handle_type, info); wsi_configure_native_image() local
467 VkResult result; wsi_create_native_image_mem() local
570 VkResult result = wsi_create_prime_image_mem() local
600 VkResult result = wsi_configure_prime_image() local
[all...]
/test/xts/acts/commonlibrary/thirdparty/musl/entry/src/main/cpp/
H A Dstatndk.cpp77 napi_value result = nullptr; in Stat() local
78 napi_create_int32(env, intValue, &result); in Stat()
79 return result; in Stat()
95 napi_value result = nullptr; in Stat64() local
96 napi_create_int32(env, intValue, &result); in Stat64()
97 return result; in Stat64()
118 napi_value result = nullptr; in Umask() local
119 napi_create_int32(env, toJs, &result); in Umask()
120 return result; in Umask()
137 napi_value result in Utimensat() local
149 napi_value result = nullptr; FchModAt() local
161 napi_value result = nullptr; FchMod() local
171 napi_value result = nullptr; Creat() local
186 napi_value result = nullptr; Creat64() local
199 napi_value result; Chmod() local
216 napi_value result; Fstat() local
234 napi_value result; Fstat64() local
252 napi_value result; Fstatat() local
270 napi_value result; Fstatat64() local
280 napi_value result; Futimens() local
288 napi_value result = nullptr; MkFifoAt() local
345 napi_value result; MkNodAt() local
363 napi_value result; MkNod() local
380 napi_value result = nullptr; MkDir() local
390 napi_value result = nullptr; MkDirAt() local
407 napi_value result = nullptr; MkFiFo() local
416 napi_value result = nullptr; Lstat() local
429 napi_value result = nullptr; Lstat64() local
[all...]
H A Dpwdndk.cpp43 napi_value result = nullptr; in Getpwent() local
45 napi_create_int32(env, PARAM_0, &result); in Getpwent()
47 napi_create_int32(env, PARAM_UNNORMAL, &result); in Getpwent()
49 return result; in Getpwent()
56 napi_value result; in Setpwent() local
58 napi_create_int32(env, MINUSONE, &result); in Setpwent()
61 napi_create_int32(env, errno, &result); in Setpwent()
68 napi_create_int32(env, MINUSTWO, &result); in Setpwent()
71 napi_create_int32(env, MINUSTHR, &result); in Setpwent()
74 napi_create_int32(env, errno, &result); in Setpwent()
85 napi_value result = nullptr; Getpwnam() local
99 napi_value result = nullptr; EndPwEnt() local
111 napi_value result; GetpwnamR() local
127 napi_value result; GetpwuidR() local
141 napi_value result = nullptr; Getpwuid() local
[all...]
/test/xts/acts/time/timeNDKTest/entry/src/main/cpp/
H A Dnapi_init.cpp34 napi_value result = nullptr; in GetTimezone_0100() local
35 NAPI_CALL(env, napi_create_string_utf8(env, bufTmp, NAPI_AUTO_LENGTH, &result)); in GetTimezone_0100()
36 return result; in GetTimezone_0100()
39 napi_value result = nullptr; in GetTimezone_0100() local
40 NAPI_CALL(env, napi_create_int32(env, returnValue, &result)); in GetTimezone_0100()
41 return result; in GetTimezone_0100()
51 napi_value result = nullptr; in GetTimezone_0200() local
52 NAPI_CALL(env, napi_create_string_utf8(env, bufTmp, NAPI_AUTO_LENGTH, &result)); in GetTimezone_0200()
53 return result; in GetTimezone_0200()
56 napi_value result in GetTimezone_0200() local
68 napi_value result = nullptr; GetTimezone_0300() local
73 napi_value result = nullptr; GetTimezone_0300() local
85 napi_value result = nullptr; GetTimezone_0400() local
90 napi_value result = nullptr; GetTimezone_0400() local
[all...]
/third_party/musl/libc-test/src/functionalext/supplement/multibyte/
H A Dc16rtomb.c32 size_t result = c16rtomb(bytes, L'h', NULL); in c16rtomb_0100() local
33 if (result != 1U) { in c16rtomb_0100()
34 t_error("%s c16rtomb failed, result is %d\n", __func__, result); in c16rtomb_0100()
48 result = c16rtomb(bytes, L'h', NULL); in c16rtomb_0100()
49 if (result != 1U) { in c16rtomb_0100()
50 t_error("%s c16rtomb failed, result is %d\n", __func__, result); in c16rtomb_0100()
58 result = c16rtomb(bytes, 0x00a2, NULL); in c16rtomb_0100()
59 if (result ! in c16rtomb_0100()
93 size_t result = c16rtomb(NULL, L'\\0', NULL); c16rtomb_0200() local
113 size_t result = c16rtomb(bytes, 0xdbea, NULL); c16rtomb_0300() local
128 size_t result = c16rtomb(bytes, 0xdfcd, NULL); c16rtomb_0400() local
156 size_t result = c16rtomb(bytes, 0xdfcd, NULL); c16rtomb_0500() local
[all...]
/third_party/elfutils/libasm/
H A Dasm_newscngrp.c47 AsmScnGrp_t *result; in asm_newscngrp() local
60 result = malloc (sizeof (AsmScnGrp_t) + grpname_len); in asm_newscngrp()
61 if (result == NULL) in asm_newscngrp()
64 result->signature = signature; in asm_newscngrp()
65 result->members = NULL; in asm_newscngrp()
66 result->nmembers = 0; in asm_newscngrp()
67 result->flags = flags; in asm_newscngrp()
69 memcpy (result->name, grpname, grpname_len); in asm_newscngrp()
70 result->strent = dwelf_strtab_add_len (ctx->section_strtab, result in asm_newscngrp()
[all...]
/third_party/musl/libc-test/src/functionalext/supplement/signal/
H A Dsigignore.c31 int result = sigaction(sig, NULL, &old_act); in sigignore_0100() local
32 if (result != 0 || errno != 0) { in sigignore_0100()
33 t_error("%s failed: result = %d\n", __func__, result); in sigignore_0100()
38 result = sigignore(sig); in sigignore_0100()
39 if (result != 0 || errno != 0) { in sigignore_0100()
40 t_error("%s failed: result = %d\n", __func__, result); in sigignore_0100()
46 result = sigaction(SIGALRM, NULL, &sa); in sigignore_0100()
47 if (result ! in sigignore_0100()
65 int result = sigignore(SIGKILL); sigignore_0200() local
80 int result = sigignore(SIGSTOP); sigignore_0300() local
97 int result = sigignore(sig); sigignore_0400() local
[all...]
H A Dsighold.c40 int result = sigaction(sig, &act, &old_act); in sighold_0100() local
41 if (result != 0) { in sighold_0100()
42 t_error("%s failed: result = %d\n", __func__, result); in sighold_0100()
46 result = sighold(sig); in sighold_0100()
47 if (result != 0) { in sighold_0100()
48 t_error("%s failed: result = %d\n", __func__, result); in sighold_0100()
53 result = sigprocmask(SIG_SETMASK, NULL, &set); in sighold_0100()
54 if (result ! in sighold_0100()
84 int result = sighold(sig); sighold_0200() local
[all...]
H A Dsigpause.c40 int result = sigaction(sig, &act, &old_act); in sigpause_0100() local
41 if (result != 0) { in sigpause_0100()
42 t_error("%s failed: result = %d\n", __func__, result); in sigpause_0100()
46 result = sighold(sig); in sigpause_0100()
47 if (result != 0) { in sigpause_0100()
48 t_error("%s failed: result = %d\n", __func__, result); in sigpause_0100()
53 result = sigprocmask(SIG_SETMASK, NULL, &set); in sigpause_0100()
54 if (result ! in sigpause_0100()
[all...]
/third_party/gn/src/gn/
H A Druntime_deps_unittest.cc33 std::string result; in GetVectorDescription() local
36 result.append(", "); in GetVectorDescription()
37 result.append("\"" + v[i].first.value() + "\""); in GetVectorDescription()
39 return result; in GetVectorDescription()
85 std::vector<std::pair<OutputFile, const Target*>> result = in TEST_F() local
88 // The result should have deps of main, all 5 dat files, libshared.so, and in TEST_F()
90 ASSERT_EQ(8u, result.size()) << GetVectorDescription(result); in TEST_F()
93 EXPECT_TRUE(MakePair("./main", &main) == result[0]); in TEST_F()
96 EXPECT_TRUE(base::ContainsValue(result, MakePai in TEST_F()
154 std::vector<std::pair<OutputFile, const Target*>> result = TEST_F() local
200 std::vector<std::pair<OutputFile, const Target*>> result = TEST_F() local
260 std::vector<std::pair<OutputFile, const Target*>> result = TEST_F() local
372 std::vector<std::pair<OutputFile, const Target*>> result = TEST_F() local
415 std::vector<std::pair<OutputFile, const Target*>> result = TEST_F() local
[all...]
/third_party/icu/icu4j/main/classes/collate/src/com/ibm/icu/util/
H A DGlobalizationPreferences.java178 List<ULocale> result; in getLocales()
180 result = guessLocales(); in getLocales()
182 result = new ArrayList<>(); in getLocales()
183 result.addAll(locales); in getLocales()
185 return result; in getLocales()
531 String result = id; in getDisplayName()
538 result = ULocale.getDisplayName(id, locale); in getDisplayName()
541 result = ULocale.getDisplayLanguage(id, locale); in getDisplayName()
544 result = ULocale.getDisplayScript("und-" + id, locale); in getDisplayName()
547 result in getDisplayName()
[all...]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/util/
H A DGlobalizationPreferences.java180 List<ULocale> result; in getLocales()
182 result = guessLocales(); in getLocales()
184 result = new ArrayList<>(); in getLocales()
185 result.addAll(locales); in getLocales()
187 return result; in getLocales()
533 String result = id; in getDisplayName()
540 result = ULocale.getDisplayName(id, locale); in getDisplayName()
543 result = ULocale.getDisplayLanguage(id, locale); in getDisplayName()
546 result = ULocale.getDisplayScript("und-" + id, locale); in getDisplayName()
549 result in getDisplayName()
[all...]
/third_party/musl/libc-test/src/functionalext/supplement/linux/
H A Dflock.c27 int result = -1; in flock_0100() local
32 result = flock(fd, LOCK_SH); in flock_0100()
33 EXPECT_EQ("flock_0100", result, 0); in flock_0100()
45 int result = -1; in flock_0200() local
50 result = flock(fd, LOCK_SH | LOCK_NB); in flock_0200()
51 EXPECT_EQ("flock_0200", result, 0); in flock_0200()
63 int result = -1; in flock_0300() local
68 result = flock(fd, LOCK_EX); in flock_0300()
69 EXPECT_EQ("flock_0300", result, 0); in flock_0300()
81 int result in flock_0400() local
99 int result = -1; flock_0500() local
117 int result = flock(-1, LOCK_EX); flock_0600() local
128 int result = 0; flock_0700() local
[all...]
/test/xts/acts/distributeddatamgr/UDMFtest/UDMFndktestHvigor/entry/src/main/cpp/
H A Dutd_ndk_test.cpp36 const char* result = OH_Utd_GetTypeId(utd); in OH_Utd_Create_0001() local
38 napi_create_int32(env, strcmp(result, "general.entity") == PARAM_0, &returnCode); in OH_Utd_Create_0001()
46 const char* result = OH_Utd_GetTypeId(utd); in OH_Utd_Create_0002() local
48 napi_create_int32(env, strcmp(result, "general.object") == PARAM_0, &returnCode); in OH_Utd_Create_0002()
56 const char* result = OH_Utd_GetTypeId(utd); in OH_Utd_Create_0003() local
58 napi_create_int32(env, strcmp(result, "general.composite-object") == PARAM_0, &returnCode); in OH_Utd_Create_0003()
65 const char* result = OH_Utd_GetTypeId(utd); in OH_Utd_Create_0004() local
67 napi_create_int32(env, strcmp(result, "general.text") == PARAM_0, &returnCode); in OH_Utd_Create_0004()
74 const char* result = OH_Utd_GetTypeId(utd); in OH_Utd_Create_0005() local
76 napi_create_int32(env, strcmp(result, "genera in OH_Utd_Create_0005()
83 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0006() local
93 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0007() local
102 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0008() local
112 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0009() local
121 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0010() local
131 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0011() local
141 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0012() local
151 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0013() local
161 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0014() local
171 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0015() local
181 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0017() local
190 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0018() local
199 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0019() local
208 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0020() local
217 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0021() local
226 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0022() local
235 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0023() local
244 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0024() local
253 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0025() local
262 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0026() local
271 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0027() local
281 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0030() local
290 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0031() local
299 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0032() local
308 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0033() local
317 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0034() local
326 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0035() local
335 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0036() local
344 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0037() local
354 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0038() local
363 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0039() local
372 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0040() local
381 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0041() local
390 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0042() local
399 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0043() local
409 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0044() local
419 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0045() local
428 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0046() local
438 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0047() local
448 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0048() local
458 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0049() local
467 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0050() local
476 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0051() local
485 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0052() local
494 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0053() local
503 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0055() local
513 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0056() local
523 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0057() local
532 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0058() local
541 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0059() local
551 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0060() local
560 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0061() local
569 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0062() local
579 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0063() local
588 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0064() local
597 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0065() local
606 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0066() local
615 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0067() local
624 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0068() local
633 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0069() local
642 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0070() local
651 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0071() local
660 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0072() local
669 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0073() local
678 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0074() local
687 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0075() local
696 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0076() local
705 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0077() local
715 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0078() local
725 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0079() local
735 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0080() local
745 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0081() local
755 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0082() local
764 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0083() local
773 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0084() local
782 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0085() local
791 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0086() local
800 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0087() local
809 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0089() local
818 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0090() local
827 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0091() local
836 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0092() local
845 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0093() local
854 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0094() local
863 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0095() local
872 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0096() local
881 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0097() local
890 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0098() local
899 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0099() local
908 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0100() local
917 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0101() local
926 const char* result = OH_Utd_GetTypeId(ut); OH_Utd_Create_0102() local
935 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0103() local
944 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0104() local
953 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0105() local
962 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0106() local
971 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0107() local
980 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0108() local
989 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0109() local
998 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0110() local
1007 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0111() local
1016 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0112() local
1025 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0113() local
1034 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0114() local
1043 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0115() local
1052 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0116() local
1061 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0117() local
1070 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0118() local
1079 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0119() local
1088 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0120() local
1097 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0121() local
1106 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0122() local
1115 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0123() local
1125 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0124() local
1134 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0125() local
1143 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0126() local
1152 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0127() local
1161 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0128() local
1170 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0129() local
1179 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0130() local
1188 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0131() local
1197 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0132() local
1206 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0133() local
1215 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0134() local
1224 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0135() local
1233 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0136() local
1242 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0137() local
1251 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0138() local
1260 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0139() local
1269 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_0140() local
1279 const char* result = OH_Utd_GetTypeId(utd); OH_Utd_Create_Test0100() local
1531 auto result = OH_Utd_BelongsTo("general.plain-text", "general.text"); OH_Utd_BelongsTo_001() local
1542 bool result = OH_Utd_BelongsTo(UDMF_META_PLAIN_TEXT, UDMF_META_HTML); OH_Utd_BelongsTo_002() local
1550 bool result = OH_Utd_BelongsTo(UDMF_META_PLAIN_TEXT, nullptr); OH_Utd_BelongsTo_003() local
1558 bool result = OH_Utd_BelongsTo(nullptr, UDMF_META_PLAIN_TEXT); OH_Utd_BelongsTo_004() local
1566 bool result = OH_Utd_BelongsTo(UDMF_META_PLAIN_TEXT, UDMF_META_PLAIN_TEXT); OH_Utd_BelongsTo_005() local
1575 bool result = OH_Utd_IsLower(UDMF_META_PLAIN_TEXT, UDMF_META_TEXT); OH_Utd_IsLower_001() local
1586 bool result = OH_Utd_IsLower(UDMF_META_PLAIN_TEXT, UDMF_META_HTML); OH_Utd_IsLower_002() local
1594 bool result = OH_Utd_IsLower(UDMF_META_PLAIN_TEXT, nullptr); OH_Utd_IsLower_003() local
1601 bool result = OH_Utd_IsLower(nullptr, UDMF_META_PLAIN_TEXT); OH_Utd_IsLower_004() local
1609 bool result = OH_Utd_IsLower(UDMF_META_PLAIN_TEXT, UDMF_META_PLAIN_TEXT); OH_Utd_IsLower_005() local
1616 bool result = OH_Utd_IsLower(nullptr, nullptr); OH_Utd_IsLower_006() local
1625 bool result = OH_Utd_Equals(utd, utd2); OH_Utd_Equals_001() local
1636 bool result = OH_Utd_Equals(utd, nullptr); OH_Utd_Equals_002() local
1646 bool result = OH_Utd_Equals(nullptr, utd); OH_Utd_Equals_003() local
1656 bool result = OH_Utd_Equals(utd, nullptr); OH_Utd_Equals_004() local
1665 bool result = OH_Utd_Equals(nullptr, nullptr); OH_Utd_Equals_005() local
1674 bool result = OH_Utd_IsHigher(UDMF_META_TEXT, UDMF_META_PLAIN_TEXT); OH_Utd_IsHigher_001() local
1685 bool result = OH_Utd_IsHigher(UDMF_META_PLAIN_TEXT, UDMF_META_HTML); OH_Utd_IsHigher_002() local
1693 bool result = OH_Utd_IsHigher(UDMF_META_PLAIN_TEXT, nullptr); OH_Utd_IsHigher_003() local
1700 bool result = OH_Utd_IsHigher(nullptr, UDMF_META_PLAIN_TEXT); OH_Utd_IsHigher_004() local
1708 bool result = OH_Utd_IsHigher(UDMF_META_PLAIN_TEXT, UDMF_META_PLAIN_TEXT); OH_Utd_IsHigher_005() local
1715 bool result = OH_Utd_IsHigher(nullptr, nullptr); OH_Utd_IsHigher_006() local
[all...]
/test/xts/acts/multimedia/avsource/entry/src/main/cpp/
H A Dvideoencoderndk.cpp53 napi_value result = nullptr; in OHVideoEncoderCreateByMime() local
55 napi_create_int32(env, backParam, &result); in OHVideoEncoderCreateByMime()
56 return result; in OHVideoEncoderCreateByMime()
67 napi_value result = nullptr; in OHVideoEncoderCreateByMimeHEVC() local
69 napi_create_int32(env, backParam, &result); in OHVideoEncoderCreateByMimeHEVC()
70 return result; in OHVideoEncoderCreateByMimeHEVC()
81 napi_value result = nullptr; in OHVideoEncoderCreateByMimeAbnormal() local
82 napi_create_int32(env, backParam, &result); in OHVideoEncoderCreateByMimeAbnormal()
83 return result; in OHVideoEncoderCreateByMimeAbnormal()
96 napi_value result in OHVideoEncoderCreateByName() local
112 napi_value result = nullptr; OHVideoEncoderCreateByNameHEVC() local
128 napi_value result = nullptr; OHVideoEncoderCreateByNameAbnormal() local
136 napi_value result = nullptr; OHVideoEncoderDestroy() local
152 napi_value result = nullptr; OHVideoEncoderDestroyHEVC() local
168 napi_value result = nullptr; OHVideoEncoderDestroyAbnormal() local
219 napi_value result = nullptr; OHVideoEncoderSetCallback() local
236 napi_value result = nullptr; OHVideoEncoderSetCallbackHEVC() local
253 napi_value result = nullptr; OHVideoEncoderSetCallbackAbnormal() local
270 napi_value result = nullptr; OHVideoEncoderRegisterCallback() local
287 napi_value result = nullptr; OHVideoEncoderRegisterCallbackHEVC() local
304 napi_value result = nullptr; OHVideoEncoderRegisterCallbackAbnormal() local
321 napi_value result = nullptr; OHVideoEncoderConfigure() local
342 napi_value result = nullptr; OHVideoEncoderConfigureHEVC() local
363 napi_value result = nullptr; OHVideoEncoderConfigureAbnormal1() local
384 napi_value result = nullptr; OHVideoEncoderConfigureAbnormal2() local
405 napi_value result = nullptr; OHVideoEncoderConfigureAbnormal3() local
426 napi_value result = nullptr; OHVideoEncoderConfigureAbnormal4() local
447 napi_value result = nullptr; OHVideoEncoderConfigureAbnormal5() local
468 napi_value result = nullptr; OHVideoEncoderConfigureAbnormal6() local
489 napi_value result = nullptr; OHVideoEncoderConfigureAbnormal7() local
510 napi_value result = nullptr; OHVideoEncoderPrepare() local
532 napi_value result = nullptr; OHVideoEncoderPrepareHEVC() local
554 napi_value result = nullptr; OHVideoEncoderPrepareAbnormal1() local
576 napi_value result = nullptr; OHVideoEncoderPrepareAbnormal2() local
598 napi_value result = nullptr; OHVideoEncoderPrepareAbnormal3() local
620 napi_value result = nullptr; OHVideoEncoderPrepareAbnormal4() local
642 napi_value result = nullptr; OHVideoEncoderPrepareAbnormal5() local
664 napi_value result = nullptr; OHVideoEncoderPrepareAbnormal6() local
686 napi_value result = nullptr; OHVideoEncoderPrepareAbnormal7() local
708 napi_value result = nullptr; OHVideoEncoderPrepareAbnormal8() local
730 napi_value result = nullptr; OHVideoEncoderPrepareAbnormal9() local
752 napi_value result = nullptr; OHVideoEncoderPrepareAbnormal10() local
774 napi_value result = nullptr; OHVideoEncoderPrepareAbnormal11() local
796 napi_value result = nullptr; OHVideoEncoderPrepareAbnormal12() local
818 napi_value result = nullptr; OHVideoEncoderPrepareAbnormal13() local
840 napi_value result = nullptr; OHVideoEncoderPrepareAbnormal14() local
862 napi_value result = nullptr; OHVideoEncoderPrepareAbnormal15() local
901 napi_value result = nullptr; OHVideoEncoderStart() local
978 napi_value result = nullptr; OHVideoEncoderStop() local
1060 napi_value result = nullptr; OHVideoEncoderFlush() local
1143 napi_value result = nullptr; OHVideoEncoderReset() local
1224 napi_value result = nullptr; OHVideoEncoderGetOutputDescription() local
1286 napi_value result = nullptr; OHVideoEncoderSetParameter() local
1312 napi_value result = nullptr; OHVideoEncoderSetParameterHEVC() local
1338 napi_value result = nullptr; OHVideoEncoderSetParameterAbnormal() local
1363 napi_value result = nullptr; OHVideoEncoderGetInputDescription() local
1381 napi_value result = nullptr; OHVideoEncoderGetInputDescriptionHEVC() local
1399 napi_value result = nullptr; OHVideoEncoderGetInputDescriptionAbnormal() local
1416 napi_value result = nullptr; OHVideoEncoderIsValid() local
1434 napi_value result = nullptr; OHVideoEncoderIsValidHEVC() local
1452 napi_value result = nullptr; OHVideoEncoderIsValidAbnormal() local
1470 napi_value result = nullptr; OHVideoEncoderPushInputBuffer() local
1487 napi_value result = nullptr; OHVideoEncoderPushInputBufferHEVC() local
1504 napi_value result = nullptr; OHVideoEncoderPushInputBufferAbnormal() local
1521 napi_value result = nullptr; OHVideoEncoderFreeOutputBuffer() local
1538 napi_value result = nullptr; OHVideoEncoderFreeOutputBufferHEVC() local
1555 napi_value result = nullptr; OHVideoEncoderFreeOutputBufferAbnormal() local
[all...]
/third_party/json/tests/src/
H A Dunit-cbor.cpp108 const auto result = json::to_cbor(j); variable
109 CHECK(result.empty());
117 const auto result = json::to_cbor(j); variable
118 CHECK(result == expected);
126 const auto result = json::to_cbor(j); variable
127 CHECK(result == expected);
134 const auto result = json::to_cbor(j); variable
135 CHECK(result == expected);
138 CHECK(json::from_cbor(result) == j);
139 CHECK(json::from_cbor(result, tru
148 const auto result = json::to_cbor(j); global() variable
160 const auto result = json::to_cbor(j); global() variable
211 const auto result = json::to_cbor(j); global() variable
264 const auto result = json::to_cbor(j); global() variable
303 const auto result = json::to_cbor(j); global() variable
324 const auto result = json::to_cbor(j); global() variable
353 const auto result = json::to_cbor(j); global() variable
384 const auto result = json::to_cbor(j); global() variable
415 const auto result = json::to_cbor(j); global() variable
447 const auto result = json::to_cbor(j); global() variable
481 const auto result = json::to_cbor(j); global() variable
521 const auto result = json::to_cbor(j); global() variable
568 const auto result = json::to_cbor(j); global() variable
609 const auto result = json::to_msgpack(j); global() variable
643 const auto result = json::to_cbor(j); global() variable
674 const auto result = json::to_cbor(j); global() variable
708 const auto result = json::to_cbor(j); global() variable
747 const auto result = json::to_cbor(j); global() variable
793 const auto result = json::to_cbor(j); global() variable
826 const auto result = json::to_cbor(j); global() variable
847 const auto result = json::to_cbor(j); global() variable
860 const auto result = json::to_cbor(j); global() variable
873 const auto result = json::to_cbor(j); global() variable
886 const auto result = json::to_cbor(j); global() variable
899 const auto result = json::to_cbor(j); global() variable
913 const auto result = json::to_cbor(j); global() variable
927 const auto result = json::to_cbor(j); global() variable
942 const auto result = json::to_cbor(j); global() variable
957 const auto result = json::to_cbor(j); global() variable
1090 const auto result = json::to_cbor(j); global() variable
1125 const auto result = json::to_cbor(j); global() variable
1158 const auto result = json::to_cbor(j); global() variable
1193 const auto result = json::to_cbor(j); global() variable
1212 const auto result = json::to_cbor(j); global() variable
1224 const auto result = json::to_cbor(j); global() variable
1236 const auto result = json::to_cbor(j); global() variable
1248 const auto result = json::to_cbor(j); global() variable
1263 const auto result = json::to_cbor(j); global() variable
1280 const auto result = json::to_cbor(j); global() variable
1295 const auto result = json::to_cbor(j); global() variable
1307 const auto result = json::to_cbor(j); global() variable
1322 const auto result = json::to_cbor(j); global() variable
1342 const auto result = json::to_cbor(j); global() variable
1369 const auto result = json::to_cbor(j); global() variable
1398 const auto result = json::to_cbor(j); global() variable
1439 const auto result = json::to_cbor(j); global() variable
1474 const auto result = json::to_cbor(j); global() variable
1507 const auto result = json::to_cbor(j); global() variable
1542 const auto result = json::to_cbor(j); global() variable
1784 const auto result = json::from_cbor(vec, false); global() variable
[all...]
/test/xts/acts/communication/dsoftbus/rpc/entry/src/ohosTest/js/test/
H A DassertDeepEquals.js18 let result = eq(actualValue, expected,[], [])
20 return result;
24 let result = true;
28 result = a.message == b.message;
29 return result;
33 result = a !== 0 || 1 / a == 1 / b;
34 return result;
38 result = a === b;
39 return result;
52 result
[all...]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/
H A DPluralRanges.java63 void set(StandardPlural start, StandardPlural end, StandardPlural result) { in set() argument
64 data[start.ordinal() * StandardPlural.COUNT + end.ordinal()] = result == null ? (byte) -1 in set()
65 : (byte) result.ordinal(); in set()
72 StandardPlural result) { in setIfNew()
78 data[start.ordinal() * StandardPlural.COUNT + end.ordinal()] = result == null ? (byte) -1 in setIfNew()
79 : (byte) result.ordinal(); in setIfNew()
86 byte result = data[start.ordinal() * StandardPlural.COUNT + end.ordinal()]; in get()
87 return result < 0 ? null : StandardPlural.VALUES.get(result); in get()
142 int result in hashCode()
71 setIfNew(StandardPlural start, StandardPlural end, StandardPlural result) setIfNew() argument
203 add(StandardPlural rangeStart, StandardPlural rangeEnd, StandardPlural result) add() argument
[all...]
/third_party/mesa3d/src/gallium/auxiliary/driver_trace/
H A Dtr_screen.c50 const char *result; in trace_screen_get_name() local
56 result = screen->get_name(screen); in trace_screen_get_name()
58 trace_dump_ret(string, result); in trace_screen_get_name()
62 return result; in trace_screen_get_name()
71 const char *result; in trace_screen_get_vendor() local
77 result = screen->get_vendor(screen); in trace_screen_get_vendor()
79 trace_dump_ret(string, result); in trace_screen_get_vendor()
83 return result; in trace_screen_get_vendor()
92 const char *result; in trace_screen_get_device_vendor() local
98 result in trace_screen_get_device_vendor()
115 const void *result; trace_screen_get_compiler_options() local
143 struct disk_cache *result = screen->get_disk_shader_cache(screen); trace_screen_get_disk_shader_cache() local
159 int result; trace_screen_get_param() local
183 int result; trace_screen_get_shader_param() local
207 float result; trace_screen_get_paramf() local
232 int result; trace_screen_get_compute_param() local
261 bool result; trace_screen_is_format_supported() local
331 bool result; trace_context_is_resource_busy() local
387 struct pipe_context *result; trace_screen_context_create() local
482 uint32_t result; trace_screen_get_device_node_mask() local
506 void *result; trace_screen_map_memory() local
546 struct pipe_memory_allocation *result; trace_screen_allocate_memory() local
569 struct pipe_memory_allocation *result; trace_screen_allocate_memory_fd() local
630 bool result; trace_screen_resource_bind_backing() local
655 struct pipe_resource *result; trace_screen_resource_create_unbacked() local
682 struct pipe_resource *result; trace_screen_resource_create() local
707 struct pipe_resource *result; trace_screen_resource_create_drawable() local
732 struct pipe_resource *result; trace_screen_resource_create_with_modifiers() local
759 struct pipe_resource *result; trace_screen_resource_from_handle() local
799 bool result; trace_screen_resource_get_handle() local
831 bool result; trace_screen_resource_get_param() local
970 int result; trace_screen_fence_get_fd() local
1020 int result; trace_screen_fence_finish() local
1089 uint64_t result; trace_screen_get_timestamp() local
[all...]
/third_party/ffmpeg/tests/api/
H A Dapi-seek-test.c80 int result; in compute_crc_of_packets() local
93 result = av_seek_frame(fmt_ctx, video_stream, ts_start, AVSEEK_FLAG_ANY); in compute_crc_of_packets()
95 if (result < 0) { in compute_crc_of_packets()
97 return result; in compute_crc_of_packets()
103 result = av_read_frame(fmt_ctx, pkt); in compute_crc_of_packets()
104 if (result >= 0 && pkt->stream_index != video_stream) { in compute_crc_of_packets()
109 if (result < 0) in compute_crc_of_packets()
110 result = avcodec_send_packet(ctx, NULL); in compute_crc_of_packets()
116 result = avcodec_send_packet(ctx, pkt); in compute_crc_of_packets()
121 if (result < in compute_crc_of_packets()
194 int result; seek_test() local
[all...]

Completed in 19 milliseconds

12345678910>>...469