Home
last modified time | relevance | path

Searched refs:result (Results 1101 - 1125 of 11613) sorted by relevance

1...<<41424344454647484950>>...465

/third_party/skia/third_party/externals/brotli/scripts/dictionary/
H A Dstep-04-generate-java-literals.py51 result = []
54 result.append("\\r")
56 result.append("\\n")
58 result.append("\\t")
60 result.append("\\\"")
62 result.append("\\\\")
64 result.append("\\u%04X" % ord(c))
66 result.append(c);
67 return result
/third_party/skia/third_party/externals/harfbuzz/src/
H A Dcheck-static-inits.py26 result = subprocess.run(objdump.split () + ['-t', obj], stdout=subprocess.PIPE, stderr=subprocess.PIPE) variable
28 if result.returncode:
29 if result.stderr.find (b'not recognized') != -1:
33 print ('objdump %s returned error:\n%s' % (obj, result.stderr.decode ('utf-8')))
36 result = result.stdout.decode ('utf-8') variable
39 for l in re.findall (r'^.*\.[cd]tors.*$', result, re.MULTILINE):
45 if ('__cxa_' in result) and ('__ubsan_handle' not in result):
/third_party/skia/third_party/externals/sfntly/cpp/src/test/
H A Dtest_utils_test.cc60 const char *result; in TestExtension() local
61 result = TestUtils::Extension("../data/ext/tuffy.ttf"); in TestExtension()
62 EXPECT_EQ(strcmp(result, ".ttf"), 0); in TestExtension()
65 result = TestUtils::Extension("tuffy.ttf.fake"); in TestExtension()
66 EXPECT_EQ(strcmp(result, ".fake"), 0); in TestExtension()
69 result = TestUtils::Extension("tuffy"); in TestExtension()
70 EXPECT_STREQ(result, NULL); in TestExtension()
73 result = TestUtils::Extension("tuffy."); in TestExtension()
74 EXPECT_EQ(strcmp(result, "."), 0); in TestExtension()
/third_party/skia/third_party/externals/icu/source/common/unicode/
H A Dlocdspnm.h111 * @param result receives the locale's display name
116 UnicodeString& result) const = 0;
121 * @param result receives the locale's display name
126 UnicodeString& result) const = 0;
132 * @param result receives the language code's display name
137 UnicodeString& result) const = 0;
142 * @param result receives the script code's display name
147 UnicodeString& result) const = 0;
152 * @param result receives the script code's display name
157 UnicodeString& result) cons
[all...]
H A Dures.h585 * @param status fills in the outgoing error code. You may still get a non NULL result even if an
813 UnicodeString result; in ures_getUnicodeString() local
817 result.setTo(true, r, len); in ures_getUnicodeString()
819 result.setToBogus(); in ures_getUnicodeString()
821 return result; in ures_getUnicodeString()
838 UnicodeString result; in ures_getNextUnicodeString() local
842 result.setTo(true, r, len); in ures_getNextUnicodeString()
844 result.setToBogus(); in ures_getNextUnicodeString()
846 return result; in ures_getNextUnicodeString()
860 UnicodeString result; in ures_getUnicodeStringByIndex() local
883 UnicodeString result; ures_getUnicodeStringByKey() local
[all...]
/third_party/python/Python/
H A Dbltinmodule.c20 PyObject *base, *meth, *new_base, *result, *new_bases = NULL; in update_bases() local
80 result = PyList_AsTuple(new_bases); in update_bases()
82 return result; in update_bases()
749 PyObject *result; in builtin_compile_impl() local
806 result = source; in builtin_compile_impl()
820 result = (PyObject*)_PyAST_Compile(mod, filename, in builtin_compile_impl()
831 result = Py_CompileStringObject(str, filename, start[compile_mode], &cf, optimize); in builtin_compile_impl()
837 result = NULL; in builtin_compile_impl()
840 return result; in builtin_compile_impl()
908 PyObject *result, *source_cop in builtin_eval_impl() local
1119 PyObject *v, *name, *result; builtin_getattr() local
1345 PyObject *result = NULL; map_next() local
2163 PyObject *result; builtin_input_impl() local
2318 PyObject *round, *result; builtin_round_impl() local
2451 PyObject *result = start; builtin_sum_impl() local
2685 PyObject *result; global() member
2695 PyObject *result; zip_new() local
2779 PyObject *result = lz->result; zip_next() local
[all...]
/applications/standard/app_samples/code/BasicFeature/Native/NdkRawfile/entry/src/main/cpp/
H A Drawfile_demo.cpp76 napi_value result = nullptr; in CreateJsArrayValue() local
77 status = napi_create_typedarray(env, napi_uint8_array, length, buffer, 0, &result); in CreateJsArrayValue()
83 return result; in CreateJsArrayValue()
120 napi_value result; in createJsFileDescriptor() local
121 napi_status status = napi_create_object(env, &result); in createJsFileDescriptor()
123 return result; in createJsFileDescriptor()
129 return result; in createJsFileDescriptor()
131 status = napi_set_named_property(env, result, "fd", fd); in createJsFileDescriptor()
133 return result; in createJsFileDescriptor()
139 return result; in createJsFileDescriptor()
[all...]
/test/xts/acts/distributed_schedule_lite/system_ability_manager_posix/src/
H A DFeatureTest.cpp146 BOOL result = SAMGR_GetInstance()->RegisterService((Service *)&g_service); in SetUp() local
147 if (result != TRUE) { in SetUp()
164 BOOL result = SAMGR_GetInstance()->RegisterFeature("serviceName201", (Feature *)&g_feature); in HWTEST_F() local
165 ASSERT_EQ(result, TRUE); in HWTEST_F()
176 BOOL result = SAMGR_GetInstance()->RegisterFeature(NULL, (Feature *)&g_feature); in HWTEST_F() local
177 ASSERT_EQ(result, FALSE); in HWTEST_F()
186 BOOL result = SAMGR_GetInstance()->RegisterFeature("serviceName201", nullptr); in HWTEST_F() local
187 ASSERT_EQ(result, FALSE); in HWTEST_F()
196 BOOL result = SAMGR_GetInstance()->RegisterFeature("noExistServiceName", (Feature *)&g_feature); in HWTEST_F() local
197 ASSERT_EQ(result, FALS in HWTEST_F()
208 BOOL result = SAMGR_GetInstance()->RegisterFeature("serviceName201", (Feature *)&g_feature); HWTEST_F() local
312 Feature *result = SAMGR_GetInstance()->UnregisterFeature("serviceName201", "featureName201"); HWTEST_F() local
327 BOOL result = SAMGR_GetInstance()->RegisterFeature("serviceName201", (Feature *)&g_feature); HWTEST_F() local
[all...]
/test/xts/acts/distributed_schedule_lite/system_ability_manager_hal/src/
H A Dfeature_func_test.c135 BOOL result = SAMGR_GetInstance()->RegisterService((Service *)&g_service); in FeatureTestSuiteSetUp() local
136 return result; in FeatureTestSuiteSetUp()
156 BOOL result = SAMGR_GetInstance()->RegisterFeature("serviceName201", (Feature *)&g_feature); variable
157 TEST_ASSERT_EQUAL_INT(result, TRUE);
169 BOOL result = SAMGR_GetInstance()->RegisterFeature(NULL, (Feature *)&g_feature); variable
170 TEST_ASSERT_EQUAL_INT(result, FALSE);
180 BOOL result = SAMGR_GetInstance()->RegisterFeature("serviceName201", NULL); variable
181 TEST_ASSERT_EQUAL_INT(result, FALSE);
191 BOOL result = SAMGR_GetInstance()->RegisterFeature("noExistServiceName", (Feature *)&g_feature); variable
192 TEST_ASSERT_EQUAL_INT(result, FALS
204 BOOL result = SAMGR_GetInstance()->RegisterFeature("serviceName201", (Feature *)&g_feature); global() variable
315 Feature *result = SAMGR_GetInstance()->UnregisterFeature("serviceName201", "featureName201"); global() variable
331 BOOL result = SAMGR_GetInstance()->RegisterFeature("serviceName201", (Feature *)&g_feature); global() variable
[all...]
/third_party/backends/backend/
H A Dumax-usb.c84 unsigned char result; in sanei_umaxusb_cmd() local
90 DBG(DBG_info, "Sending SCSI cmd 0x%02x cdb len %ld, param len %ld, result len %ld\n", ((const unsigned char *)src)[0], (long)cmd_size, (long)param_size, dst_size? (long)*dst_size:(long)0); in sanei_umaxusb_cmd()
109 result = 0xA5; /* to be sure */ in sanei_umaxusb_cmd()
111 sanei_pv8630_bulkread(fd, &result, &tmp_len); in sanei_umaxusb_cmd()
112 if (result != 0) { in sanei_umaxusb_cmd()
113 DBG(DBG_info, "error in sanei_pv8630_bulkread (got %02x)\n", result); in sanei_umaxusb_cmd()
114 if (result == 8) { in sanei_umaxusb_cmd()
132 result = 0xA5; /* to be sure */ in sanei_umaxusb_cmd()
134 sanei_pv8630_bulkread(fd, &result, &tmp_len); in sanei_umaxusb_cmd()
135 if (result ! in sanei_umaxusb_cmd()
[all...]
/third_party/gn/src/gn/
H A Dvalue.cc169 std::string result = "\""; in ToString() local
176 result += '\\'; in ToString()
180 result += '\\'; in ToString()
181 result += ch; in ToString()
187 result += '\\'; in ToString()
188 result += '"'; in ToString()
189 return result; in ToString()
193 std::string result = "["; in ToString() local
196 result += ", "; in ToString()
197 result in ToString()
[all...]
H A Dxml_element_writer.cc85 std::string result; in XmlEscape() local
89 result += "&#10;"; in XmlEscape()
92 result += "&#13;"; in XmlEscape()
95 result += "&#9;"; in XmlEscape()
98 result += "&quot;"; in XmlEscape()
101 result += "&lt;"; in XmlEscape()
104 result += "&gt;"; in XmlEscape()
107 result += "&amp;"; in XmlEscape()
110 result += c; in XmlEscape()
113 return result; in XmlEscape()
[all...]
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/parse/
H A DCombinedCurrencyMatcher.java92 public boolean match(StringSegment segment, ParsedNumber result) { in match() argument
93 if (result.currencyCode != null) { in match()
100 if (result.seenNumber() && !beforeSuffixInsert.isEmpty()) { in match()
110 maybeMore = maybeMore || matchCurrency(segment, result); in match()
111 if (result.currencyCode == null) { in match()
117 if (!result.seenNumber() && !afterPrefixInsert.isEmpty()) { in match()
130 private boolean matchCurrency(StringSegment segment, ParsedNumber result) { in matchCurrency() argument
141 result.currencyCode = isoCode; in matchCurrency()
143 result.setCharsConsumed(segment); in matchCurrency()
157 result in matchCurrency()
213 postProcess(ParsedNumber result) postProcess() argument
[all...]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/number/parse/
H A DCombinedCurrencyMatcher.java94 public boolean match(StringSegment segment, ParsedNumber result) { in match() argument
95 if (result.currencyCode != null) { in match()
102 if (result.seenNumber() && !beforeSuffixInsert.isEmpty()) { in match()
112 maybeMore = maybeMore || matchCurrency(segment, result); in match()
113 if (result.currencyCode == null) { in match()
119 if (!result.seenNumber() && !afterPrefixInsert.isEmpty()) { in match()
132 private boolean matchCurrency(StringSegment segment, ParsedNumber result) { in matchCurrency() argument
143 result.currencyCode = isoCode; in matchCurrency()
145 result.setCharsConsumed(segment); in matchCurrency()
159 result in matchCurrency()
215 postProcess(ParsedNumber result) postProcess() argument
[all...]
/third_party/icu/icu4c/source/common/unicode/
H A Dures.h585 * @param status fills in the outgoing error code. You may still get a non NULL result even if an
813 UnicodeString result; in ures_getUnicodeString() local
817 result.setTo(true, r, len); in ures_getUnicodeString()
819 result.setToBogus(); in ures_getUnicodeString()
821 return result; in ures_getUnicodeString()
838 UnicodeString result; in ures_getNextUnicodeString() local
842 result.setTo(true, r, len); in ures_getNextUnicodeString()
844 result.setToBogus(); in ures_getNextUnicodeString()
846 return result; in ures_getNextUnicodeString()
860 UnicodeString result; in ures_getUnicodeStringByIndex() local
883 UnicodeString result; ures_getUnicodeStringByKey() local
[all...]
/third_party/mesa3d/.gitlab-ci/tests/
H A Dtest_lava_job_submitter.py62 "simple pass case": (mock_logs(result="pass"), does_not_raise(), "pass", {}),
63 "simple fail case": (mock_logs(result="fail"), does_not_raise(), "fail", {}),
72 result="fail", variable
81 jobs_logs_response(finished=False, msg=None, result="fail"),
96 result="pass", variable
110 result="pass", variable
125 result="pass", variable
132 mock_logs(result="pass"),
137 generate_testsuite_result(result="pass")
142 mock_logs(result
[all...]
/third_party/node/deps/icu-small/source/common/unicode/
H A Dures.h586 * @param status fills in the outgoing error code. You may still get a non NULL result even if an
814 UnicodeString result; in ures_getUnicodeString() local
818 result.setTo(true, r, len); in ures_getUnicodeString()
820 result.setToBogus(); in ures_getUnicodeString()
822 return result; in ures_getUnicodeString()
839 UnicodeString result; in ures_getNextUnicodeString() local
843 result.setTo(true, r, len); in ures_getNextUnicodeString()
845 result.setToBogus(); in ures_getNextUnicodeString()
847 return result; in ures_getNextUnicodeString()
861 UnicodeString result; in ures_getUnicodeStringByIndex() local
884 UnicodeString result; ures_getUnicodeStringByKey() local
[all...]
/third_party/skia/third_party/externals/oboe/samples/RhythmGame/src/main/cpp/audio/
H A DFFMpegExtractor.cpp82 int result = avformat_open_input(&avFormatContext, in openAVFormatContext() local
88 if (result == 0) { in openAVFormatContext()
91 LOGE("Failed to open file. Error code %s", av_err2str(result)); in openAVFormatContext()
98 int result = avformat_find_stream_info(avFormatContext, nullptr); in getStreamInfo() local
99 if (result == 0 ){ in getStreamInfo()
102 LOGE("Failed to find stream info. Error code %s", av_err2str(result)); in getStreamInfo()
219 int result = swr_init(swr); in decode() local
220 if (result != 0){ in decode()
221 LOGE("swr_init failed. Error: %s", av_err2str(result)); in decode()
246 result in decode()
[all...]
/third_party/skia/third_party/externals/tint/src/writer/msl/
H A Dgenerator_impl_constructor_test.cc33 EXPECT_THAT(gen.result(), HasSubstr("false")); in TEST_F()
42 EXPECT_THAT(gen.result(), HasSubstr("-12345")); in TEST_F()
51 EXPECT_THAT(gen.result(), HasSubstr("56779u")); in TEST_F()
61 EXPECT_THAT(gen.result(), HasSubstr("1073741824.0f")); in TEST_F()
70 EXPECT_THAT(gen.result(), HasSubstr("float(-0.000012f)")); in TEST_F()
79 EXPECT_THAT(gen.result(), HasSubstr("bool(true)")); in TEST_F()
88 EXPECT_THAT(gen.result(), HasSubstr("int(-12345)")); in TEST_F()
97 EXPECT_THAT(gen.result(), HasSubstr("uint(12345u)")); in TEST_F()
106 EXPECT_THAT(gen.result(), HasSubstr("float3(1.0f, 2.0f, 3.0f)")); in TEST_F()
115 EXPECT_THAT(gen.result(), HasSubst in TEST_F()
[all...]
/third_party/skia/third_party/externals/dng_sdk/source/
H A Ddng_safe_arithmetic.h37 // If the result of adding arg1 and arg2 will fit in an int32_t (without
38 // under-/overflow), stores this result in *result and returns true. Otherwise,
39 // returns false and leaves *result unchanged.
40 bool SafeInt32Add(std::int32_t arg1, std::int32_t arg2, std::int32_t *result);
42 // Returns the result of adding arg1 and arg2 if it will fit in the result type
48 // If the result of adding arg1 and arg2 will fit in a uint32_t (without
49 // wraparound), stores this result in *result an
114 std::int64_t result; SafeInt64MultByClang() local
136 __int128 result = static_cast<__int128>(arg1) * static_cast<__int128>(arg2); SafeInt64MultByClang() local
[all...]
/third_party/skia/fuzz/
H A DFuzzPathop.cpp37 SkPath result; in DEF_FUZZ() local
38 builder.resolve(&result); in DEF_FUZZ()
48 SkPath result; in DEF_FUZZ() local
52 result = path; in DEF_FUZZ()
54 Simplify(path, &result); in DEF_FUZZ()
72 SkPath result; in DEF_FUZZ() local
76 result = path; in DEF_FUZZ()
78 result = path2; in DEF_FUZZ()
80 Op(path, path2, op, &result); in DEF_FUZZ()
90 SkPath result; in DEF_FUZZ() local
106 SkRect result; DEF_FUZZ() local
200 SkPath result; DEF_FUZZ() local
[all...]
/test/ostest/wukong/input_factory/src/
H A Dswap_input.cpp37 ErrCode result; in OrderInput() local
57 result = MultimodeManager::GetInstance()->IntervalSwap(xSrcPosition, ySrcPosition, xDstPosition, yDstPosition); in OrderInput()
58 return result; in OrderInput()
65 ErrCode result = WuKongUtil::GetInstance()->GetScreenSize(screenWidth, screenHeight); in RandomInput() local
66 if (result != OHOS::ERR_OK) { in RandomInput()
67 return result; in RandomInput()
74 result = MultimodeManager::GetInstance()->IntervalSwap(xSrcPosition, ySrcPosition, xDstPosition, yDstPosition); in RandomInput()
75 if (result != OHOS::ERR_OK) { in RandomInput()
76 return result; in RandomInput()
79 return result; in RandomInput()
[all...]
H A Dmouse_input.cpp45 ErrCode result = WuKongUtil::GetInstance()->GetScreenSize(screenWidth, screenHeight); in RandomInput() local
46 if (result != OHOS::ERR_OK) { in RandomInput()
47 return result; in RandomInput()
64 result = in RandomInput()
66 if (result != OHOS::ERR_OK) { in RandomInput()
67 return result; in RandomInput()
69 result = multiinput->PointerInput(xClickPosition, yClickPosition, mouseType, MMI::PointerEvent::POINTER_ACTION_UP); in RandomInput()
70 if (result != OHOS::ERR_OK) { in RandomInput()
71 return result; in RandomInput()
74 return result; in RandomInput()
[all...]
/test/xts/acts/pcs/pcs_ndk/entry/src/main/cpp/
H A DsoftwareNdk.cpp27 napi_value result = nullptr; in InitArray() local
29 napi_create_array_with_length(env, length, &result); in InitArray()
30 napi_set_element(env, result, 0, num1); in InitArray()
31 napi_set_element(env, result, 1, num2); in InitArray()
32 return result; in InitArray()
43 napi_value result = nullptr; in GetBool() local
45 napi_create_array_with_length(env, length, &result); in GetBool()
46 napi_set_element(env, result, 0, num1); in GetBool()
47 napi_set_element(env, result, 1, num2); in GetBool()
48 return result; in GetBool()
[all...]
/third_party/elfutils/libdwfl/
H A Ddwfl_module_build_id.c70 int result = __libdwfl_find_elf_build_id (mod, elf, &build_id_bits, in __libdwfl_find_build_id() local
72 if (result <= 0) in __libdwfl_find_build_id()
73 return result; in __libdwfl_find_build_id()
91 int result = __libdwfl_find_build_id (mod, true, mod->main.elf); in dwfl_module_build_id() local
92 if (result <= 0) in dwfl_module_build_id()
94 mod->build_id_len = -1; /* Cache negative result. */ in dwfl_module_build_id()
95 return result; in dwfl_module_build_id()
116 int result = INTUSE(dwfl_module_build_id) (mod, bits, vaddr); in NEW_INTDEF() local
117 if (result > 0) in NEW_INTDEF()
118 *vaddr += (result in NEW_INTDEF()
[all...]

Completed in 16 milliseconds

1...<<41424344454647484950>>...465