/third_party/node/deps/icu-small/source/i18n/ |
H A D | regexcmp.cpp | 4333 UnicodeString propName; 4346 propName.append(fC.fChar); 4362 uset = createSetForProperty(propName, negated); 4395 UnicodeSet *RegexCompile::createSetForProperty(const UnicodeString &propName, UBool negated) { 4410 setExpr.append(propName); 4428 if (propName.caseCompare(u"word", -1, 0) == 0) { 4433 if (propName.compare(u"all", -1) == 0) { 4441 UnicodeString mPropName = propName; 4457 if (propName.startsWith(u"Is", 2) && propName [all...] |
/third_party/skia/third_party/externals/icu/source/i18n/ |
H A D | regexcmp.cpp | 4330 UnicodeString propName; 4343 propName.append(fC.fChar); 4359 uset = createSetForProperty(propName, negated); 4392 UnicodeSet *RegexCompile::createSetForProperty(const UnicodeString &propName, UBool negated) { 4407 setExpr.append(propName); 4425 if (propName.caseCompare(u"word", -1, 0) == 0) { 4430 if (propName.compare(u"all", -1) == 0) { 4438 UnicodeString mPropName = propName; 4454 if (propName.startsWith(u"Is", 2) && propName [all...] |
/foundation/distributeddatamgr/pasteboard/interfaces/kits/napi/src/ |
H A D | napi_data_utils.cpp | 497 std::string propName = "constructor_of_" + name; in DefineClass() local 500 napi_has_named_property(env, root, propName.c_str(), &hasProp); in DefineClass() 502 napi_get_named_property(env, root, propName.c_str(), &constructor); in DefineClass() 505 "got data.distributeddata.%{public}s as constructor", propName.c_str()); in DefineClass() 517 napi_set_named_property(env, root, propName.c_str(), constructor); in DefineClass() 519 "save constructor to data.distributeddata.%{public}s", propName.c_str()); in DefineClass()
|
H A D | napi_pastedata.cpp | 510 napi_env env, const std::string &propName, napi_value &propValueNapi, PasteDataRecord::Builder &builder) in SetStringProp() 517 if ((propName == "mimeType") && (propValue.size() <= MIMETYPE_MAX_SIZE)) { in SetStringProp() 519 } else if ((propName == "htmlText") && (propValue.size() <= MAX_TEXT_LEN)) { in SetStringProp() 521 } else if ((propName == "plainText") && (propValue.size() <= MAX_TEXT_LEN)) { in SetStringProp() 523 } else if (propName == "uri") { in SetStringProp() 547 std::string propName = str; in ParseRecord() local 548 PASTEBOARD_HILOGI(PASTEBOARD_MODULE_JS_NAPI, "propName = %{public}s,", propName.c_str()); in ParseRecord() 550 if (propName == "mimeType" || propName in ParseRecord() 509 SetStringProp( napi_env env, const std::string &propName, napi_value &propValueNapi, PasteDataRecord::Builder &builder) SetStringProp() argument [all...] |
/foundation/arkui/ace_engine/frameworks/bridge/js_frontend/engine/jsi/ |
H A D | ark_js_value.h | 68 bool GetPropertyNames(shared_ptr<JsRuntime> runtime, shared_ptr<JsValue> &propName, int32_t &len) override; 70 shared_ptr<JsValue> &propName, int32_t &len) override;
|
/foundation/arkui/ace_engine_lite/frameworks/src/core/modules/presets/ |
H A D | image_module.cpp | 45 jerry_value_t propName = jerry_create_string(reinterpret_cast<const jerry_char_t *>(attributeName)); in RegisterAttributeFunc() local 52 jerry_value_t returnValue = jerry_define_own_property(canvas2dContext, propName, &desc); in RegisterAttributeFunc() 54 ReleaseJerryValue(propName, returnValue, VA_ARG_END_FLAG); in RegisterAttributeFunc()
|
/foundation/multimedia/audio_framework/services/audio_policy/server/src/service/config/ |
H A D | audio_device_parser.cpp | 173 std::string AudioDeviceParser::ExtractPropertyValue(const std::string &propName, xmlNode *node) in ExtractPropertyValue() argument 178 if (xmlHasProp(node, reinterpret_cast<const xmlChar*>(propName.c_str()))) { in ExtractPropertyValue() 179 tempValue = xmlGetProp(node, reinterpret_cast<const xmlChar*>(propName.c_str())); in ExtractPropertyValue()
|
/third_party/skia/experimental/docs/ |
H A D | animationCommon.js | 254 function loopAddProp(action, propName) { 256 var prop = action[propName]; 257 if ('draw' != propName && isArray(prop)) {
|
/foundation/resourceschedule/background_task_mgr/interfaces/kits/napi/include/ |
H A D | init_bgtaskmgr.h | 29 void SetNamedPropertyByInteger(napi_env env, napi_value dstObj, int32_t objName, const char *propName);
|
H A D | init.h | 29 void SetNamedPropertyByInteger(napi_env env, napi_value dstObj, int32_t objName, const char *propName);
|
/foundation/resourceschedule/device_standby/interfaces/kits/napi/include/ |
H A D | init.h | 29 void SetNamedPropertyByInteger(napi_env env, napi_value dstObj, int32_t objName, const char *propName);
|
/third_party/typescript/tests/baselines/reference/ |
H A D | tsxAttributeResolution14.js | 15 [propName: string]: string | number
|
/foundation/ability/ability_runtime/frameworks/js/napi/featureAbility/ |
H A D | napi_data_ability_operation.h | 36 void SetNamedProperty(napi_env env, napi_value obj, const char *propName, int propValue);
|
/foundation/bundlemanager/bundle_framework/interfaces/kits/js/zip/napi/ |
H A D | napi_zlib_common.h | 52 void SetNamedProperty(napi_env env, napi_value obj, const char *propName, const int propValue);
|
/foundation/graphic/graphic_2d/rosen/modules/graphic_2d_configure/include/ |
H A D | graphic_2d_xml_parser.h | 53 std::string ExtractPropertyValue(const std::string &propName, xmlNode &node);
|
/foundation/distributeddatamgr/udmf/framework/jskitsimpl/common/ |
H A D | napi_data_utils.cpp | 576 std::string propName = "constructor_of_" + name; in DefineClass() local 579 napi_has_named_property(env, root, propName.c_str(), &hasProp); in DefineClass() 581 napi_get_named_property(env, root, propName.c_str(), &constructor); in DefineClass() 583 LOG_DEBUG(UDMF_KITS_NAPI, "got data.distributeddata.%{public}s as constructor", propName.c_str()); in DefineClass() 595 napi_set_named_property(env, root, propName.c_str(), constructor); in DefineClass() 596 LOG_DEBUG(UDMF_KITS_NAPI, "save constructor to data.distributeddata.%{public}s", propName.c_str()); in DefineClass()
|
/third_party/icu/icu4c/source/common/ |
H A D | uniset_props.cpp | 1077 UnicodeString propName, valueName; in applyPropertyPattern() local 1080 pattern.extractBetween(pos, equals, propName); in applyPropertyPattern() 1086 pattern.extractBetween(pos, close, propName); in applyPropertyPattern() 1095 valueName = propName; in applyPropertyPattern() 1096 propName = UnicodeString(NAME_PROP, NAME_PROP_LENGTH, US_INV); in applyPropertyPattern() 1100 applyPropertyAlias(propName, valueName, ec); in applyPropertyPattern()
|
/third_party/node/deps/icu-small/source/common/ |
H A D | uniset_props.cpp | 1074 UnicodeString propName, valueName; in applyPropertyPattern() local 1077 pattern.extractBetween(pos, equals, propName); in applyPropertyPattern() 1083 pattern.extractBetween(pos, close, propName); in applyPropertyPattern() 1092 valueName = propName; in applyPropertyPattern() 1093 propName = UnicodeString(NAME_PROP, NAME_PROP_LENGTH, US_INV); in applyPropertyPattern() 1097 applyPropertyAlias(propName, valueName, ec); in applyPropertyPattern()
|
/third_party/skia/third_party/externals/icu/source/common/ |
H A D | uniset_props.cpp | 1077 UnicodeString propName, valueName; in applyPropertyPattern() local 1080 pattern.extractBetween(pos, equals, propName); in applyPropertyPattern() 1086 pattern.extractBetween(pos, close, propName); in applyPropertyPattern() 1095 valueName = propName; in applyPropertyPattern() 1096 propName = UnicodeString(NAME_PROP, NAME_PROP_LENGTH, US_INV); in applyPropertyPattern() 1100 applyPropertyAlias(propName, valueName, ec); in applyPropertyPattern()
|
/foundation/multimedia/player_framework/frameworks/js/system_sound_manager/src/ |
H A D | system_sound_manager_napi.cpp | 87 std::string propName; in CreateRingtoneTypeObject() local 93 propName = iter.first; in CreateRingtoneTypeObject() 94 status = AddNamedProperty(env, result, propName, iter.second); in CreateRingtoneTypeObject() 99 propName.clear(); in CreateRingtoneTypeObject() 117 std::string propName; in CreateSystemToneTypeObject() local 123 propName = iter.first; in CreateSystemToneTypeObject() 124 status = AddNamedProperty(env, result, propName, iter.second); in CreateSystemToneTypeObject() 129 propName.clear(); in CreateSystemToneTypeObject() 147 std::string propName; in CreateToneCustomizedTypeObject() local 153 propName in CreateToneCustomizedTypeObject() 177 std::string propName; CreateToneHapticsModeObject() local [all...] |
/foundation/graphic/graphic_3d/lume/scenewidgetplugin/plugin/src/ |
H A D | material_impl.cpp | 360 SCENE_NS::ITextureInfo::Ptr BindTextureSlot(const BASE_NS::string_view& propName, META_NS::IMetadata::Ptr& meta, in BindTextureSlot() argument 367 ix = propName.find('.', ix + 1); in BindTextureSlot() 375 textureSlotId += (propName[ii] - '0') * pow(10, (ix - ii - 1)); // 10 exponent in BindTextureSlot() 398 BASE_NS::string textureSlotName(propName.substr(ix + 1)); in BindTextureSlot() 409 ix = propName.find('.', ix + 1); in BindTextureSlot() 411 BASE_NS::string propertyName(propName.substr(ix)); in BindTextureSlot() 413 BindChanges<BASE_NS::Math::Vec4>(GET_HOLDER(info), info->Factor(), meta, propName); in BindTextureSlot() local 415 BindChanges<BASE_NS::Math::Vec2>(GET_HOLDER(info), info->Translation(), meta, propName); in BindTextureSlot() local 417 BindChanges<float>(GET_HOLDER(info), info->Rotation(), meta, propName); in BindTextureSlot() local 419 BindChanges<BASE_NS::Math::Vec2>(GET_HOLDER(info), info->Scale(), meta, propName); in BindTextureSlot() local [all...] |
/foundation/window/window_manager/window_scene/interfaces/kits/napi/scene_session_manager/ |
H A D | js_scene_utils.cpp | 782 for (const auto &propName : propNames) { in ConvertStringMapFromJs() 784 napi_get_named_property(env, value, propName.c_str(), &prop); in ConvertStringMapFromJs() 786 WLOGFW("prop is null: %{public}s", propName.c_str()); in ConvertStringMapFromJs() 790 WLOGFW("prop is not string: %{public}s", propName.c_str()); in ConvertStringMapFromJs() 795 WLOGFW("Failed to ConvertFromJsValue: %{public}s", propName.c_str()); in ConvertStringMapFromJs() 798 stringMap.emplace(propName, valName); in ConvertStringMapFromJs() 818 for (const auto& propName : propNames) { in ConvertJsonFromJs() 820 napi_get_named_property(env, value, propName.c_str(), &prop); in ConvertJsonFromJs() 822 WLOGFW("prop is null: %{public}s", propName.c_str()); in ConvertJsonFromJs() 826 WLOGFW("prop is not string: %{public}s", propName in ConvertJsonFromJs() [all...] |
/foundation/multimedia/audio_framework/services/audio_policy/server/include/service/config/ |
H A D | audio_strategy_router_parser.h | 65 string ExtractPropertyValue(const string &propName, xmlNode *node);
|
/foundation/graphic/graphic_2d/rosen/modules/hyper_graphic_manager/core/config/ |
H A D | xml_parser.cpp | 540 std::string XMLParser::ExtractPropertyValue(const std::string &propName, xmlNode &node)
in ExtractPropertyValue() argument 542 HGM_LOGD("XMLParser extracting value : %{public}s", propName.c_str());
in ExtractPropertyValue() 546 if (xmlHasProp(&node, reinterpret_cast<const xmlChar*>(propName.c_str()))) {
in ExtractPropertyValue() 547 tempValue = xmlGetProp(&node, reinterpret_cast<const xmlChar*>(propName.c_str()));
in ExtractPropertyValue()
|
/third_party/node/lib/ |
H A D | child_process.js | 971 function validateArgumentNullCheck(arg, propName) { 973 throw new ERR_INVALID_ARG_VALUE(propName, arg, 'must be a string without null bytes'); 978 function validateArgumentsNullCheck(args, propName) { 980 validateArgumentNullCheck(args[i], `${propName}[${i}]`);
|