/kernel/linux/linux-6.6/tools/testing/selftests/powerpc/pmu/ |
H A D | per_event_excludes.c | 92 FAIL_IF(events[i].result.running != events[i].result.enabled); in per_event_excludes() 95 * We can also check that the result for instructions is >= all the in per_event_excludes() 100 FAIL_IF(events[0].result.value < events[i].result.value); in per_event_excludes()
|
/test/testfwk/developer_test/src/core/command/ |
H A D | distribute_execute.py | 54 result = os.path.join(self.result_path, 'result',
57 if not os.path.exists(result):
58 os.makedirs(result)
59 distribute.pull_result(self.major, source_path, result)
|
/test/ostest/wukong/input_factory/src/ |
H A D | rotate_input.cpp | 42 ErrCode result = OHOS::ERR_OK;
in OrderInput() local 70 return result;
in OrderInput() 75 ErrCode result = OHOS::ERR_OK;
in RandomInput() local 103 return result;
in RandomInput()
|
/test/xts/acts/global_lite/i18n_lite/resource_parse_load/src/ |
H A D | test_common.cpp | 36 std::string result(value); in FormatFullPath() 37 result.append("/"); in FormatFullPath() 38 result.append(fileRelativePath); in FormatFullPath() 39 return result; in FormatFullPath()
|
/test/xts/acts/graphic/windowNdk/entry/src/main/cpp/ |
H A D | windowNdkTest.cpp | 44 auto result = OH_NativeWindowManager_RegisterKeyEventFilter(windowId, filterESC); in filterKeyCode() local 46 napi_create_int32(env, result, &res); in filterKeyCode() 59 auto result = OH_NativeWindowManager_UnregisterKeyEventFilter(windowId); in unFilterKeyCode() local 61 napi_create_int32(env, result, &res); in unFilterKeyCode()
|
/third_party/elfutils/tests/ |
H A D | asm-tst6.c | 40 int result = 0; in main() local 142 if (result == 0) in main() 143 result = WEXITSTATUS (system ("../src/elflint -q asm-tst6-out.o")); in main() 150 return result; in main()
|
H A D | dwfl-bug-fd-leak.c | 58 int result = dwfl_linux_proc_report (dwfl, pid); in elfutils_open() local 59 if (result < 0) in elfutils_open() 61 else if (result > 0) in elfutils_open() 62 error (2, result, "dwfl_linux_proc_report"); in elfutils_open()
|
H A D | arls.c | 36 int result = 0; in main() local 38 result = handle ("a.out"); in main() 41 result |= handle (argv[1]); in main() 43 return result; in main()
|
H A D | peel_type.c | 59 /* Test twice, once with a separate result DIE. Then with the in print_var_raw_type() 62 Dwarf_Die *result = &result_mem; in print_var_raw_type() local 63 int res = dwarf_peel_type (type, result); in print_var_raw_type() 68 name, dwarf_tag_string (dwarf_tag (result))); in print_var_raw_type() 71 int tag = dwarf_tag (result); in print_var_raw_type()
|
/third_party/curl/tests/libtest/ |
H A D | lib668.c | 56 CURLcode result; in test() local 107 result = curl_easy_perform(easy); in test() 108 if(result) { in test() 110 res = (int) result; in test()
|
H A D | lib667.c | 62 CURLcode result; in test() local 103 result = curl_easy_perform(easy); in test() 104 if(result) { in test() 106 res = (int) result; in test()
|
/third_party/elfutils/libdw/ |
H A D | dwarf_child.c | 134 dwarf_child (Dwarf_Die *die, Dwarf_Die *result) in dwarf_child() argument 180 memset (result, '\0', sizeof (Dwarf_Die)); in dwarf_child() 183 result->addr = addr; in dwarf_child() 186 result->cu = cu; in dwarf_child()
|
/third_party/elfutils/libebl/ |
H A D | eblauxvinfo.c | 91 int result = ebl->auxv_info (a_type, name, format); in ebl_auxv_info() local 92 if (result == 0 && a_type < nauxv_types && auxv_types[a_type].name != NULL) in ebl_auxv_info() 97 result = 1; in ebl_auxv_info() 99 return result; in ebl_auxv_info()
|
/third_party/gn/src/gn/ |
H A D | function_filter.cc | 32 result = filter_exclude(values, [ "*.proto" ]) 33 # result will be [ "foo.cc", "foo.h" ] 52 result = filter_include(values, [ "*.proto" ]) 53 # result will be [ "foo.proto" ] 85 Value result(function, Value::LIST); in RunFilter() 96 result.list_value().push_back(value); in RunFilter() 101 result.list_value().push_back(value); in RunFilter() 105 return result; in RunFilter()
|
/third_party/backends/backend/ |
H A D | epson2_scsi.c | 27 unsigned char *result, void *arg) in sanei_epson2_scsi_sense_handler() 33 if (result[0] && result[0] != 0x70) { in sanei_epson2_scsi_sense_handler() 35 __func__, result[0]); in sanei_epson2_scsi_sense_handler() 26 sanei_epson2_scsi_sense_handler(int scsi_fd, unsigned char *result, void *arg) sanei_epson2_scsi_sense_handler() argument
|
H A D | epson_scsi.c | 32 sanei_epson_scsi_sense_handler (int scsi_fd, u_char * result, void *arg) in sanei_epson_scsi_sense_handler() argument 38 if (result[0] && result[0] != 0x70) in sanei_epson_scsi_sense_handler() 40 DBG (2, "sense_handler() : sense code = 0x%02x\n", result[0]); in sanei_epson_scsi_sense_handler()
|
/third_party/googletest/googletest/include/gtest/ |
H A D | gtest-test-part.h | 50 // A copyable object representing the result of a test part (i.e. an 128 std::ostream& operator<<(std::ostream& os, const TestPartResult& result); 139 void Append(const TestPartResult& result); 154 // This interface knows how to report a test part result. 159 virtual void ReportTestPartResult(const TestPartResult& result) = 0; 166 // current test part result reporter. Besides checking if fatal failures were 167 // reported, it only delegates the reporting to the former result reporter. 168 // The original result reporter is restored in the destructor. 175 void ReportTestPartResult(const TestPartResult& result) override;
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/locale/ |
H A D | LSR.java | 60 StringBuilder result = new StringBuilder(language); in toString() 62 result.append('-').append(script); in toString() 65 result.append('-').append(region); in toString() 67 return result.toString(); in toString()
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
H A D | ICURWLock.java | 105 Stats result = stats; in resetStats() 107 return result; in resetStats() 114 Stats result = stats; in clearStats() 116 return result; in clearStats()
|
/third_party/icu/icu4c/source/test/cintltst/ |
H A D | ccolltst.c | 71 static const char *getCompareResult(UCollationResult result) in getCompareResult() argument 73 if (result == UCOL_LESS) in getCompareResult() 77 else if (result == UCOL_EQUAL) in getCompareResult() 81 else if (result == UCOL_GREATER) in getCompareResult() 121 log_err("difference between sortkey and compare result for (%s , %s) Keys: %s compare %s\n", aescstrdup(source,-1), aescstrdup(target,-1), in reportCResult()
|
/third_party/icu/icu4c/source/samples/udata/ |
H A D | reader.c | 82 UDataMemory *result = NULL; in main() local 102 result=udata_openChoice(curPathBuffer, DATA_TYPE, DATA_NAME, isAcceptable, NULL, &status); in main() 113 dataMemory = udata_getMemory(result); in main() 124 udata_close(result); in main()
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/translit/ |
H A D | TestUtility.java | 35 String result = hex(s.charAt(0)); in hex() 37 result += sep; in hex() 38 result += hex(s.charAt(i)); in hex() 40 return result; in hex()
|
/third_party/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/ |
H A D | TestUtility.java | 32 String result = hex(s.charAt(0)); in hex() 34 result += sep; in hex() 35 result += hex(s.charAt(i)); in hex() 37 return result; in hex()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/ |
H A D | ICURWLock.java | 108 Stats result = stats; in resetStats() 110 return result; in resetStats() 117 Stats result = stats; in clearStats() 119 return result; in clearStats()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/locale/ |
H A D | LSR.java | 64 StringBuilder result = new StringBuilder(language); in toString() 66 result.append('-').append(script); in toString() 69 result.append('-').append(region); in toString() 71 return result.toString(); in toString()
|