| /test/xts/acts/commonlibrary/thirdparty/musl/entry/src/main/cpp/ |
| H A D | wcharndk.cpp | 1396 wchar_t target = L'C';
in Wmemchr() local 1398 wchar_t *result = wmemchr(str, target, sz);
in Wmemchr() 1404 wchar_t target = L'H';
in Wmemchr() local 1406 wchar_t *result = wmemchr(str, target, sz);
in Wmemchr() 1412 wchar_t target = L'C';
in Wmemchr() local 1414 wchar_t *result = wmemchr(str, target, sz);
in Wmemchr()
|
| /third_party/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/ |
| H A D | CollationMiscTest.java | 290 void reportCResult(String source, String target, CollationKey sourceKey, CollationKey targetKey, in reportCResult() argument 311 // logln(msg1 + source + msg2 + target + msg3 + sResult); in reportCResult() 313 errln(msg1 + source + msg2 + target + msg3 + sResult + msg4 + sExpect); in reportCResult() 320 // logln(msg1 + source + msg2 + target + msg3 + sResult); in reportCResult() 322 errln(msg1 + source + msg2 + target + msg3 + sResult + msg4 + sExpect); in reportCResult() 332 // logln(msg1 + source + msg2 + target + msg3 + sResult); in reportCResult() 334 errln(msg1 + source + msg2 + target + msg3 + sResult + msg4 + sExpect); in reportCResult() 2590 public OneTestCase(String source, String target, int result) { in OneTestCase() argument 2592 m_target_ = target; in OneTestCase() 2891 * Tests the method public boolean equals(Object target) i [all...] |
| /third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/calendar/ |
| H A D | IBMCalendarTest.java | 1488 public long target; in TestFieldDifference() 1501 target = tg; in TestFieldDifference() 1512 // timezobe locale start target prog yDf MDf dDf HDf mDf sDf in TestFieldDifference() 1546 ucal.setTimeInMillis(tfdItem.target); in TestFieldDifference() 1558 errln("Fail: for locale \"" + tfdItem.locale + "\", start " + tfdItem.start + ", target " + tfdItem.target + ", expected y-M-d-H-m-s progressive diffs " + in TestFieldDifference() 1574 errln("Fail: for locale \"" + tfdItem.locale + "\", start " + tfdItem.start + ", target " + tfdItem.target + ", expected y-M-d-H-m total diffs " + in TestFieldDifference() 1581 errln("Fail: for locale \"" + tfdItem.locale + "\", start " + tfdItem.start + ", target " + tfdItem.target in TestFieldDifference() [all...] |
| /third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/collator/ |
| H A D | CollationMiscTest.java | 293 void reportCResult(String source, String target, CollationKey sourceKey, CollationKey targetKey, in reportCResult() argument 314 // logln(msg1 + source + msg2 + target + msg3 + sResult); in reportCResult() 316 errln(msg1 + source + msg2 + target + msg3 + sResult + msg4 + sExpect); in reportCResult() 323 // logln(msg1 + source + msg2 + target + msg3 + sResult); in reportCResult() 325 errln(msg1 + source + msg2 + target + msg3 + sResult + msg4 + sExpect); in reportCResult() 335 // logln(msg1 + source + msg2 + target + msg3 + sResult); in reportCResult() 337 errln(msg1 + source + msg2 + target + msg3 + sResult + msg4 + sExpect); in reportCResult() 2593 public OneTestCase(String source, String target, int result) { in OneTestCase() argument 2595 m_target_ = target; in OneTestCase() 2894 * Tests the method public boolean equals(Object target) i [all...] |
| /third_party/mesa3d/src/freedreno/ir3/ |
| H A D | ir3_ra.c | 2330 unsigned target = reg_count; in calc_target_full_pressure() local 2338 while (target <= RA_FULL_SIZE / (2 * 4) && in calc_target_full_pressure() 2339 ir3_should_double_threadsize(v, target) == double_threadsize && in calc_target_full_pressure() 2340 ir3_get_reg_dependent_max_waves(v->compiler, target, in calc_target_full_pressure() 2342 target++; in calc_target_full_pressure() 2344 return (target - 1) * 2 * 4; in calc_target_full_pressure()
|
| /third_party/node/src/crypto/ |
| H A D | crypto_tls.cc | 331 Local<Object> target, in Set() 337 return !target->Set( in Set() 2088 Local<Object> target, in Initialize() 2095 SetMethod(context, target, "wrap", TLSWrap::Wrap); in Initialize() 2097 NODE_DEFINE_CONSTANT(target, HAVE_SSL_TRACE); in Initialize() 2181 target->Set(env->context(), tlsWrapString, fn).Check(); in Initialize() 329 Set( Environment* env, Local<Object> target, Local<String> name, const char* value, bool ignore_null = true) Set() argument 2087 Initialize( Local<Object> target, Local<Value> unused, Local<Context> context, void* priv) Initialize() argument
|
| /third_party/node/deps/v8/src/ast/ |
| H A D | scopes.cc | 662 VariableProxy* target = factory->NewVariableProxy(var); in HoistSloppyBlockFunctions() local 664 sloppy_block_function->init(), target, source, pos); in HoistSloppyBlockFunctions() 2258 Scope* target = cache_scope == nullptr ? scope : cache_scope; in LookupSloppyEval() local 2259 var = target->NonLocal(proxy->raw_name(), VariableMode::kDynamicGlobal); in LookupSloppyEval() 2267 Scope* target = cache_scope == nullptr ? scope : cache_scope; in LookupSloppyEval() local 2268 var = target->NonLocal(proxy->raw_name(), VariableMode::kDynamicLocal); in LookupSloppyEval()
|
| /third_party/node/deps/v8/src/wasm/baseline/ |
| H A D | liftoff-assembler.h | 594 void MergeFullStackWith(CacheState& target, const CacheState& source); 595 void MergeStackWith(CacheState& target, uint32_t arity, JumpDirection); 640 // Move {*target} into another register if needed and update {*target} to that 641 // register, or {no_reg} if target was spilled to the stack. 643 Register* target = nullptr, 1037 inline void emit_smi_check(Register obj, Label* target, SmiCheckMode mode); 1482 // Indirect call: If {target == no_reg}, then pop the target from the stack. 1485 Register target); [all...] |
| /third_party/python/Lib/ |
| H A D | tarfile.py | 758 # Include os.sep (target OS directory separator) as well. 859 linkname = ('Name of the target file name, which is only present ' 2338 # Prepare the link target for makelink(). 2401 # A (sym)link's file object is its target's file object. 2477 with bltn_open(targetpath, "wb") as target: 2480 target.seek(offset) 2481 copyfileobj(source, target, size, ReadError, bufsize) 2482 target.seek(tarinfo.size) 2483 target.truncate() 2485 copyfileobj(source, target, tarinf [all...] |
| /third_party/typescript/tests/baselines/reference/tsbuild/outfile-concat/ |
| H A D | explainFiles.js | 43 "target": "es5",
87 "target": "es5",
110 "target": "es5",
144 Default library for target 'es5'
156 Default library for target 'es5'
166 Default library for target 'es5'
1979 Default library for target 'es5'
1993 Default library for target 'es5'
3331 Default library for target 'es5'
|
| /third_party/skia/modules/skparagraph/src/ |
| H A D | ParagraphImpl.cpp | 232 TextRange target; in GetLineFontMetrics() local 233 target.start = sourceRange.start <= deletedRange.start ? sourceRange.start : deletedRange.start + ellSize; in GetLineFontMetrics() 234 target.end = sourceRange.end <= deletedRange.end ? deletedRange.start + ellSize : sourceRange.end + changeSize; in GetLineFontMetrics() 235 return target.start <= target.end ? target : EMPTY_RANGE; in GetLineFontMetrics()
|
| /third_party/vk-gl-cts/modules/gles2/functional/ |
| H A D | es2fIntegerStateQueryTests.cpp | 2168 GLenum target; in init() member 2179 FOR_EACH_VERIFIER(normalVerifiers, addChild(new BlendFuncTestCase (m_context, verifier, (std::string(blendColorStates[testNdx].name) + verifier->getTestNamePostfix()).c_str(), blendColorStates[testNdx].description, blendColorStates[testNdx].target, blendColorStates[testNdx].initialValue))); in init() 2180 FOR_EACH_VERIFIER(normalVerifiers, addChild(new BlendFuncSeparateTestCase (m_context, verifier, (std::string(blendColorStates[testNdx].name) + "_separate" + verifier->getTestNamePostfix()).c_str(), blendColorStates[testNdx].description, blendColorStates[testNdx].target, blendColorStates[testNdx].initialValue))); in init() 2189 GLenum target; in init() member 2198 FOR_EACH_VERIFIER(normalVerifiers, addChild(new BlendEquationTestCase (m_context, verifier, (std::string(blendEquationStates[testNdx].name) + + verifier->getTestNamePostfix()).c_str(), blendEquationStates[testNdx].description, blendEquationStates[testNdx].target, blendEquationStates[testNdx].initialValue))); in init() 2199 FOR_EACH_VERIFIER(normalVerifiers, addChild(new BlendEquationSeparateTestCase (m_context, verifier, (std::string(blendEquationStates[testNdx].name) + "_separate" + verifier->getTestNamePostfix()).c_str(), blendEquationStates[testNdx].description, blendEquationStates[testNdx].target, blendEquationStates[testNdx].initialValue))); in init()
|
| /foundation/arkui/ace_engine/frameworks/core/interfaces/native/node/ |
| H A D | node_common_modifier.cpp | 6499 auto target = info.GetTarget(); in SetOnClick() 6500 event.touchEvent.target = { target.id.c_str(), target.type.c_str(), in SetOnClick() 6501 { static_cast<ArkUI_Int32>(target.area.GetOffset().GetX().Value()), in SetOnClick() 6502 static_cast<ArkUI_Int32>(target.area.GetOffset().GetY().Value()), in SetOnClick() 6503 static_cast<ArkUI_Int32>(target.area.GetWidth().Value()), in SetOnClick() 6504 static_cast<ArkUI_Int32>(target.area.GetHeight().Value()) }, in SetOnClick() 6505 { static_cast<ArkUI_Int32>(target.origin.GetX().Value()), in SetOnClick() 6506 static_cast<ArkUI_Int32>(target in SetOnClick() [all...] |
| /third_party/mesa3d/src/gallium/frontends/nine/ |
| H A D | nine_ff.c | 1412 unsigned target; in nine_ff_build_ps() local 1416 case 0: target = TGSI_TEXTURE_1D; break; in nine_ff_build_ps() 1417 case 1: target = TGSI_TEXTURE_2D; break; in nine_ff_build_ps() 1418 case 2: target = TGSI_TEXTURE_3D; break; in nine_ff_build_ps() 1419 case 3: target = TGSI_TEXTURE_CUBE; break; in nine_ff_build_ps() 1449 ureg_TXP(ureg, ps.rTex, target, texture_coord, ps.s[s]); in nine_ff_build_ps() 1454 ureg_TEX(ureg, ps.rTex, target, ps.rTmpSrc, ps.s[s]); in nine_ff_build_ps() 1458 ureg_TEX(ureg, ps.rTex, target, texture_coord, ps.s[s]); in nine_ff_build_ps()
|
| /foundation/arkui/ace_engine/test/unittest/core/pattern/rich_editor/ |
| H A D | rich_editor_pattern_testone_ng.cpp | 749 RefPtr<SpanNode> target = OHOS::Ace::NG::SpanNode::CreateSpanNode(2); in HWTEST_F() local 753 richEditorPattern->CopyGestureOption(source, target); in HWTEST_F() 755 ASSERT_NE(target->GetSpanItem(), nullptr); in HWTEST_F()
|
| H A D | rich_editor_pattern_testfour_ng.cpp | 773 RefPtr<SpanNode> target = OHOS::Ace::NG::SpanNode::CreateSpanNode(2); in HWTEST_F() local 776 richEditorPattern->CopyTextSpanLineStyle(source, target, false); in HWTEST_F() 777 richEditorPattern->CopyTextSpanLineStyle(source, target, true); in HWTEST_F()
|
| H A D | rich_editor_styled_string_test_ng.cpp | 942 auto target = AceType::MakeRefPtr<SpanItem>(); in HWTEST_F() local 949 layoutAlgorithm->CopySpanStyle(source, target); in HWTEST_F() 950 EXPECT_EQ(target->fontStyle->GetFontSize(), FONT_SIZE_VALUE); in HWTEST_F()
|
| /foundation/multimedia/media_library/frameworks/innerkitsimpl/medialibrary_data_extension/src/ |
| H A D | medialibrary_analysis_album_operations.cpp | 611 static string ReorderTagId(string target, const vector<MergeAlbumInfo> &mergeAlbumInfo) in ReorderTagId() argument 615 if (target.empty()) { in ReorderTagId() 619 string strs = target + pattern; in ReorderTagId() 716 MEDIA_ERR_LOG("no target album id"); in SetGroupAlbumName() 747 MEDIA_ERR_LOG("no target album id"); in SetGroupCoverUri() 779 MEDIA_ERR_LOG("no target album id"); in DismissGroupPhotoAlbum()
|
| /foundation/communication/dsoftbus/tests/core/authentication/unittest/ |
| H A D | auth_session_message_test.cpp | 84 char target[10] = {0}; in HWTEST_F() local 86 OptString(json, DEVICE_ID, target, 10, ""); in HWTEST_F() 87 OptString(json, FAST_AUTH, target, 10, ""); in HWTEST_F()
|
| /third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/ |
| H A D | PluralRules.java | 1260 public void getStartEndSamples(Set<FixedDecimal> target) { in getStartEndSamples() argument 1262 target.add(item.start); in getStartEndSamples() 1263 target.add(item.end); in getStartEndSamples()
|
| /third_party/mbedtls/library/ |
| H A D | sha512.c | 76 # pragma clang attribute push (__attribute__((target("sha3"))), apply_to=function) 83 # pragma clang attribute push (__attribute__((target("sha3"))), apply_to=function) 91 # pragma GCC target ("arch=armv8.2-a+sha3")
|
| /third_party/json/tests/src/ |
| H A D | unit-json_patch.cpp | 42 // For example, an "add" with a target location of "/a/b" starting 87 // An example target JSON document: 116 // An example target JSON document: 142 // An example target JSON document: 171 // An example target JSON document: 197 // An example target JSON document: 228 // An example target JSON document: 270 // An example target JSON document: 296 // An example target JSON document: 320 // An example target JSO 632 json target = source.patch(p1); global() variable [all...] |
| /third_party/mesa3d/src/egl/drivers/dri2/ |
| H A D | platform_android.c | 1121 * * If <target> is EGL_NATIVE_BUFFER_ANDROID and <ctx> is not 1155 droid_create_image_khr(_EGLDisplay *disp, _EGLContext *ctx, EGLenum target, argument 1158 switch (target) { 1163 return dri2_create_image_khr(disp, ctx, target, buffer, attr_list);
|
| /third_party/mesa3d/src/amd/compiler/ |
| H A D | aco_scheduler.cpp | 1018 unsigned target = current->exp().dest; 1019 if (target >= V_008DFC_SQ_EXP_POS && target < V_008DFC_SQ_EXP_PRIM) {
|
| /third_party/mesa3d/src/gallium/drivers/vc4/ |
| H A D | vc4_resource.c | 446 if (prsc->target == PIPE_TEXTURE_CUBE) { in vc4_setup_slices() 510 if (tmpl->target == PIPE_BUFFER) in vc4_resource_create_with_modifiers() 556 if (tmpl->target != PIPE_BUFFER) in vc4_resource_create_with_modifiers()
|