Home
last modified time | relevance | path

Searched refs:result (Results 10326 - 10350 of 18001) sorted by relevance

1...<<411412413414415416417418419420>>...721

/test/ostest/wukong/report/src/
H A Dexception_manager.cpp92 int32_t result = HiSysEventManager::RemoveListener(toolListener); in StopCatching() local
93 DEBUG_LOG_STR("remove listener result: %d", result); in StopCatching()
/test/xts/acts/ability/ability_runtime/capichildprocess/entry/src/main/cpp/
H A DIpcStub.cpp118 int32_t result = Add(a, b); in HandleAdd() local
119 if (OH_IPCParcel_WriteInt32(reply, result) != OH_IPC_SUCCESS) { in HandleAdd()
/third_party/elfutils/tests/
H A Dfuncretval.c98 int result = 0; in main() local
105 return result; in main()
/third_party/elfutils/libdw/
H A Ddwarf_error.c46 int result = global_error; in dwarf_errno() local
48 return result; in dwarf_errno()
/third_party/elfutils/libelf/
H A Dgelf_getnote.c40 gelf_getnote (Elf_Data *data, size_t offset, GElf_Nhdr *result, in gelf_getnote() argument
107 *result = *n; in gelf_getnote()
/third_party/curl/src/
H A Dtool_xattr.c124 CURLcode result = curl_easy_getinfo(curl, mappings[i].info, &value); in fwrite_xattr() local
125 if(!result && value) in fwrite_xattr()
/third_party/gn/src/gn/
H A Dfile_writer.cc61 BOOL result = in Write() local
63 if (!result) { in Write()
H A Dfunction_get_target_outputs.cc42 action_foreach targets: this will return the result of applying the output
44 same result (though with guaranteed absolute file paths), as
/third_party/glfw/tests/
H A Dempty.c77 int result; in main() local
127 thrd_join(thread, &result); in main()
/third_party/astc-encoder/Test/
H A Dastc_quality_test.py69 result = sp.run(command, stdout=sp.PIPE, stderr=sp.PIPE,
78 return result.stdout.splitlines()
/third_party/backends/backend/escl/
H A Descl_scan.c39 * \return to_write (the result of the fwrite function)
51 * \fn SANE_Status escl_scan(capabilities_t *scanner, const ESCL_Device *device, char *result)
60 escl_scan(capabilities_t *scanner, const ESCL_Device *device, char *scanJob, char *result) in escl_scan() argument
74 scan_jobs, scanJob, result, scanner_start); in escl_scan()
/third_party/curl/docs/examples/
H A D10-at-a-time.c136 msg->data.result, curl_easy_strerror(msg->data.result), url); in main()
/third_party/googletest/googletest/include/gtest/hwext/
H A Dgtest-tag.h51 bool eleForName(const char* name, int& result) const;
110 bool flagForName(const char* set_name, const char* ele_name, int& result);
/third_party/googletest/googletest/test/
H A Dgtest_list_output_unittest.py265 result = f.read()
266 return result
/third_party/icu/icu4c/source/test/intltest/
H A Dconvtest.h91 const UChar *result, int32_t resultLength,
97 const uint8_t *result, int32_t resultLength,
/third_party/icu/icu4c/source/i18n/unicode/
H A Dbasictz.h48 * The caller owns the result and should delete it when done.
58 * @param result Receives the first transition after the base time.
62 virtual UBool getNextTransition(UDate base, UBool inclusive, TimeZoneTransition& result) const = 0;
68 * @param result Receives the most recent transition before the base time.
72 virtual UBool getPreviousTransition(UDate base, UBool inclusive, TimeZoneTransition& result) const = 0;
/third_party/icu/icu4c/source/samples/legacy/
H A Doldcol.cpp40 int32_t result = ucol_getSortKey(coll, string, sLen, buffer, bLen); in getSortKey_legacy() local
42 return result; in getSortKey_legacy()
H A Dnewcol.cpp39 int32_t result = ucol_getSortKey(coll, string, sLen, buffer, bLen); in getSortKey_current() local
41 return result; in getSortKey_current()
/third_party/icu/icu4c/source/common/
H A Dschriter.cpp116 StringCharacterIterator::getText(UnicodeString& result) { in getText() argument
117 result = text; in getText()
/third_party/icu/icu4c/source/i18n/
H A Dstrmatch.h126 * @param result Output param to receive the pattern.
128 * @return A reference to 'result'.
130 virtual UnicodeString& toPattern(UnicodeString& result,
179 * result of calling this function is passed to the appropriate
182 * @param result the string to receive the pattern. Previous
188 * @return a reference to 'result'.
190 virtual UnicodeString& toReplacerPattern(UnicodeString& result,
H A Dnfsubs.h97 * Replaces result with the string describing the substitution.
98 * @param result Output param which will receive the string.
100 virtual void toString(UnicodeString& result) const;
110 * either ruleSet or decimalFormat, and inserts the result into
113 * @param toInsertInto The string we insert the result into
122 * either ruleSet or decimalFormat, and inserts the result into
125 * @param toInsertInto The string we insert the result into
135 * mathematical operation on the number. The result of this operation
137 * substitution refers to, and the result is inserted into the result
[all...]
H A Dnumber_grouping.cpp23 const char16_t* result = ures_getStringByKeyWithFallback( in getMinGroupingForLocale() local
32 return result[0] - u'0'; in getMinGroupingForLocale()
/third_party/libwebsockets/include/libwebsockets/
H A Dlws-genhash.h133 /** lws_genhash_destroy() - copy out the result digest and destroy the ctx
136 * \param result: NULL, or where to copy the result hash
141 * NULL result is supported so that you can destroy the ctx cleanly on error
142 * conditions, where there is no valid result.
145 lws_genhash_destroy(struct lws_genhash_ctx *ctx, void *result);
176 /** lws_genhmac_destroy() - copy out the result digest and destroy the ctx
179 * \param result: NULL, or where to copy the result hash
184 * NULL result i
[all...]
/third_party/json/docs/examples/
H A Dsax_parse__binary.cpp104 bool result = json::sax_parse(vec, &sec, json::input_format_t::cbor); in main() local
112 // output the result of sax_parse in main()
113 std::cout << "\nresult: " << std::boolalpha << result << std::endl; in main()
/third_party/jerryscript/tests/unit-ext/
H A Dtest-ext-module-canonical.c48 resolve (const jerry_value_t canonical_name, jerry_value_t *result) in resolve() argument
57 *result = jerry_create_object (); in resolve()

Completed in 15 milliseconds

1...<<411412413414415416417418419420>>...721