/interface/sdk_c/ark_runtime/jsvm/ |
H A D | jsvm.h | 106 * @return Returns JSVM funtions result code. 116 * @param result: The new VM instance. 117 * @return Returns JSVM funtions result code. 122 JSVM_VM* result); 128 * @return Returns JSVM funtions result code. 138 * @param result: The new VM scope. 139 * @return Returns JSVM funtions result code. 144 JSVM_VMScope* result); 151 * @return Returns JSVM funtions result code. 164 * @param result [all...] |
/interface/sdk_c/third_party/node/src/ |
H A D | js_native_api.h | 53 const napi_extended_error_info** result); 56 NAPI_EXTERN napi_status napi_get_undefined(napi_env env, napi_value* result); 57 NAPI_EXTERN napi_status napi_get_null(napi_env env, napi_value* result); 58 NAPI_EXTERN napi_status napi_get_global(napi_env env, napi_value* result); 61 napi_value* result); 64 NAPI_EXTERN napi_status napi_create_object(napi_env env, napi_value* result); 65 NAPI_EXTERN napi_status napi_create_array(napi_env env, napi_value* result); 68 napi_value* result); 71 napi_value* result); 74 napi_value* result); [all...] |
H A D | node_api.h | 128 napi_async_context* result); 139 napi_value* result); 145 napi_value* result); 151 napi_value* result); 156 napi_value* result); 159 bool* result); 173 napi_async_work* result); 216 napi_callback_scope* result); 238 napi_threadsafe_function* result); 242 void** result); [all...] |
/interface/sdk_c/arkui/napi/ |
H A D | native_api.h | 49 napi_value* result); 55 size_t* result); 64 bool* result); 90 NAPI_EXTERN napi_status napi_run_script_path(napi_env env, const char* path, napi_value* result); 92 NAPI_EXTERN napi_status napi_load_module(napi_env env, const char* path, napi_value* result); 100 * @param result Result of loading a module, which is an exported object of the module. 107 napi_value* result); 125 napi_async_context* result); 130 napi_callback_scope* result); 131 NAPI_EXTERN napi_status node_api_get_module_file_name(napi_env env, const char** result); [all...] |
/interface/sdk-js/build-tools/api_check_plugin/test/ |
H A D | test.js | 18 let result = [];
25 result = scanEntry(url, prId, false);
30 result.push(`API_CHECK_ERROR :${error}`);
36 result.unshift(errorInfo);
39 writeResultFile(result, path.resolve(__dirname, './Result.txt'), {});
|
/interface/sdk_c/filemanagement/fileshare/include/ |
H A D | oh_file_share.h | 91 * Failed policy result on URI. 144 * @param result Output a pointer to an {@link FileShare_PolicyErrorResult} instance. Please use 146 * @param resultNum Output the size of the result array. 158 FileShare_PolicyErrorResult **result, 167 * @param result Output a pointer to an {@link FileShare_PolicyErrorResult} instance. Please use 169 * @param resultNum Output the size of the result array. 181 FileShare_PolicyErrorResult **result, 190 * @param result Output a pointer to an {@link FileShare_PolicyErrorResult} instance. Please use 192 * @param resultNum Output the size of the result array. 204 FileShare_PolicyErrorResult **result, [all...] |
/interface/sdk_c/build-tools/capi_parser/src/coreImpl/check/ |
H A D | check_name.py | 108 result = re.match(CheckName['MACRO_DEFINITION'].value, name) 109 if result is None: 114 result = re.match(CheckName['MACRO_DEFINITION'].value, name) 115 if result is None: 130 result = re.match(CheckName['FILE_NAME'].value, file_name) 131 if result is None: 142 result = re.match(CheckName[function_type].value, name) 143 if result is None:
|
H A D | comment_parser.js | 26 const result = parse(jsdocText); 27 return result;
|
H A D | check.py | 148 for result in check_result_list: 149 if result.defectType in command_list: 150 result_list.append(result)
|
/interface/sdk_c/filemanagement/file_uri/include/ |
H A D | oh_file_uri.h | 27 * and there is no guarantee that the conversion result will actually exist. 46 * @param result Output a pointer to a uri string. Please use free() to clear the resource. 55 FileManagement_ErrCode OH_FileUri_GetUriFromPath(const char *path, unsigned int length, char **result); 62 * @param result Output a pointer to a path string. Please use free() to clear the resource. 71 FileManagement_ErrCode OH_FileUri_GetPathFromUri(const char *uri, unsigned int length, char **result); 78 * @param result Output a pointer to a uri string. Please use free() to clear the resource. 88 FileManagement_ErrCode OH_FileUri_GetFullDirectoryUri(const char *uri, unsigned int length, char **result); 107 * @param result Output a pointer to a FileName string. Please use free() to clear the resource. 115 FileManagement_ErrCode OH_FileUri_GetFileName(const char *uri, unsigned int length, char **result);
|
/interface/sdk-js/build-tools/api_label_detection/src/coreImpl/ |
H A D | detection_label.py | 30 def judgement_dict_data(result, result_key): 32 for dict_data in result[result_key]: # 代表对应文件的解析数据 82 result = Output(parent_enum_info['filePath'], ErrorType.ENUM_VALUE_LABEL.value, 88 result_list.append(result) 92 result = Output(parent_enum_info['filePath'], ErrorType.ENUM_LABEL.value, parent_enum_info['definedText'], 97 result_list.append(result) 205 result = Output(relative_data['filePath'], ErrorType.RELATIVE_LABEL.value, relative_data['definedText'], 209 result_list.append(result) 229 result = Output(api_info['filePath'], ErrorType.MUTEX_LABEL.value, api_info['definedText'], 233 result_list.append(result) [all...] |
/interface/sdk_c/filemanagement/environment/include/ |
H A D | oh_environment.h | 44 * @param result Output a pointer to a string. Please use free() to clear the resource. 51 FileManagement_ErrCode OH_Environment_GetUserDownloadDir(char **result); 56 * @param result Output a pointer to a string. Please use free() to clear the resource. 63 FileManagement_ErrCode OH_Environment_GetUserDesktopDir(char **result); 68 * @param result Output a pointer to a string. Please use free() to clear the resource. 75 FileManagement_ErrCode OH_Environment_GetUserDocumentDir(char **result);
|
/interface/sdk_c/third_party/icu4c/ndk_headers/unicode/ |
H A D | unum.h | 77 * UChar* result = NULL;
83 * result = NULL;
87 * result=(UChar*)malloc(sizeof(UChar) * resultlength);
88 * unum_format(nf, a[i], result, resultlength, &pos, &status);
90 * printf( " Example 2: %s\n", austrdup(result));
91 * free(result);
284 * ROUND_UNNECESSARY reports an error if formatted result is not exact.
490 * @param result A pointer to a buffer to receive the NULL-terminated formatted number. If
493 * doesn't fit into result then the error code is set to U_BUFFER_OVERFLOW_ERROR.
494 * @param resultLength The maximum size of result [all...] |
H A D | udat.h | 122 * 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:
958 * @param result A pointer to a buffer to receive the formatted number.
959 * @param resultLength The maximum size of result.
974 UChar* result,
987 * @param result A pointer to a buffer to receive the formatted number.
988 * @param capacity The maximum size of result.
1004 UChar* result,
1016 * @param result
1019 * The maximum size of result [all...] |
H A D | ucal.h | 624 * @param result A buffer to receive the result, or NULL
626 * @param resultCapacity The capacity of the result buffer
630 * @return The result string length, not including the terminating
638 ucal_getDefaultTimeZone(UChar* result, int32_t resultCapacity, UErrorCode* ec);
671 * @param result A buffer to receive the result, or NULL
672 * @param resultCapacity The capacity of the result buffer
674 * @return The result string length, not including the terminating
682 ucal_getHostTimeZone(UChar *result, int32_ [all...] |
H A D | ucol.h | 72 * Possible values for a comparison result
269 * is performed. The correctness of the result is guaranteed only if the
419 * be closed. Otherwise, a memory leak will result.
456 * @return The result of comparing the strings; one of UCOL_EQUAL,
481 * @return The result of comparing the strings; one of UCOL_EQUAL,
586 * will only return the length of the result without writing any codes (pre-flighting).
626 * The result of setting no reordering will be to have the DUCET/CLDR ordering used. The
656 * will only return the length of the result without writing any codes (pre-flighting).
677 * @param result A pointer to a buffer to receive the attribute.
678 * @param resultLength The maximum size of result [all...] |
H A D | uloc.h | 176 * UChar* result,
191 * As a result, uloc_getName() is far from a no-op, and will have the
545 * Locale::getFrench() for inLocale would result in "Anglais",
546 * while passing Locale::getGerman() for inLocale would result
574 * Locale::getFrench() for inLocale would result in "", while
575 * passing Locale::getGerman() for inLocale would result in "".
606 * Locale::getFrench() for inLocale would result in "Anglais",
607 * while passing Locale::getGerman() for inLocale would result
636 * Locale::getFrench() for inLocale would result in "Anglais",
637 * while passing Locale::getGerman() for inLocale would result
[all...] |
/interface/sdk_c/multimedia/media_library/ |
H A D | media_asset_base_capi.h | 124 * @error Media library result is ok. 281 * @param result Results of the processing of the requested resources. 285 typedef void (*OH_MediaLibrary_OnDataPrepared)(int32_t result, MediaLibrary_RequestId requestId); 292 * @param result results {@link MediaLibrary_ErrorCode} of the processing of the requested resources. 299 typedef void (*OH_MediaLibrary_OnImageDataPrepared)(MediaLibrary_ErrorCode result, 308 * @param result results {@link MediaLibrary_ErrorCode} of the processing of the requested resources. 315 typedef void (*OH_MediaLibrary_OnMovingPhotoDataPrepared)(MediaLibrary_ErrorCode result,
|
/interface/sdk_c/third_party/musl/ndk_musl_include/fortify/ |
H A D | stdio.h | 116 int result = __builtin___vsprintf_chk(dest, 0, __DIAGNOSE_BOS(dest), format, va_l);
variable 118 return result;
127 int result = __builtin___vsnprintf_chk(dest, size, 0, __DIAGNOSE_BOS(dest), format, va_l);
variable 129 return result;
|
H A D | fortify.h | 73 #define __DIAGNOSE__SIZE_MUL_OVERFLOW(a, b, result) __builtin_umull_overflow(a, b, result)
|
/interface/sdk-js/build-tools/api_label_detection/src/utils/ |
H A D | util.py | 57 result = {} 59 result[label_comparison_dist.get(label)] = doc_info[label_comparison_dist.get(label)] 60 return result
|
/interface/sdk_c/build-tools/capi_parser/src/coreImpl/ |
H A D | comment_parser.js | 26 const result = parse(jsdocText); 27 return result;
|
/interface/sdk-js/ |
H A D | process_internal.py | 73 result = copy_files(options) 74 print(json.dumps(result))
|
/interface/sdk-js/build-tools/api_check_plugin/src/ |
H A D | compile_info.js | 17 const result = require('../check_result.json');
32 const checkFailFileNameSet = new Set(result.apiFiles);
34 result.apiFiles.push(fileName);
|
H A D | api_check_plugin.js | 33 const result = require('../check_result.json');
133 result.scanResult.push(`api_check: ${ApiCheckResult.formatCheckResult}`);
134 return result.scanResult;
|