/ohos5.0/base/telephony/core_service/frameworks/native/src/ |
H A D | network_state.cpp | 36 psOperatorInfo_.fullName = ""; in Init() 37 csOperatorInfo_.fullName = ""; in Init() 72 psOperatorInfo_.fullName = readString; in ReadParcelString() 84 csOperatorInfo_.fullName = readString; in ReadParcelString() 149 psOperatorInfo_.fullName == other.psOperatorInfo_.fullName && in operator ==() 152 csOperatorInfo_.fullName == other.csOperatorInfo_.fullName && in operator ==() 242 if (!psOperatorInfo_.fullName.empty()) { in GetLongOperatorName() 243 return psOperatorInfo_.fullName; in GetLongOperatorName() 245 return csOperatorInfo_.fullName; in GetLongOperatorName() 321 psOperatorInfo_.fullName = longName; in SetOperatorInfo() [all …]
|
/ohos5.0/base/startup/init/services/param/manager/ |
H A D | param_server.c | 123 char fullName[PARAM_NAME_LEN_MAX]; in Common2ConstDealFun() local 124 int ret = snprintf_s(fullName, sizeof(fullName), sizeof(fullName) - 1, in Common2ConstDealFun() 127 ret = CheckParamName(fullName, 0); in Common2ConstDealFun() 129 PARAM_LOGV("Param name %s, value %s", fullName, value); in Common2ConstDealFun() 130 ret = WriteParam(fullName, value, NULL, 0); in Common2ConstDealFun() 139 char fullName[PARAM_NAME_LEN_MAX]; in MatchReserverCmdline() local 148 ret = snprintf_s(fullName, sizeof(fullName), sizeof(fullName) - 1, ".%s", in MatchReserverCmdline() 150 matched = strstr(tmpName, fullName); in MatchReserverCmdline() 159 ret = snprintf_s(fullName, sizeof(fullName), sizeof(fullName) - 1, in MatchReserverCmdline() 171 PARAM_LOGV("proc cmdline %s matched.", fullName); in MatchReserverCmdline() [all …]
|
/ohos5.0/docs/zh-cn/application-dev/quick-start/ |
H A D | arkts-new-Computed.md | 43 get fullName() { // 正确用法 55 get fullName() { 123 - 点击第一个Button改变lastName,触发\@Computed fullName重新计算。 124 - `this.fullName`被绑定在两个Text组件上,观察`fullName`日志,可以发现,计算只发生了一次。 138 get fullName() { 148 Text(this.fullName) 149 Text(this.fullName) 167 - 点击Button改变lastName,触发\@Computed fullName重新计算,且只被计算一次。 176 get fullName() { 191 Text(this.name1.fullName) [all …]
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/drawing_ndk/src/ |
H A D | drawing_text_font_descriptor.cpp | 25 size_t CalculateDrawingStringSize(const std::string& fullName, std::u16string& utf16String) in CalculateDrawingStringSize() argument 27 if (fullName.empty()) { in CalculateDrawingStringSize() 31 utf16String = converter.from_bytes(fullName); in CalculateDrawingStringSize() 54 OH_Drawing_FontDescriptor* OH_Drawing_GetFontDescriptorByFullName(const OH_Drawing_String* fullName, in OH_Drawing_GetFontDescriptorByFullName() argument 57 if (fullName == nullptr) { in OH_Drawing_GetFontDescriptorByFullName() 63 if (!ConvertToString(fullName->strData, fullName->strLen, fullNameString)) { in OH_Drawing_GetFontDescriptorByFullName() 100 for (const auto& fullName : fullNameList) { in OH_Drawing_GetSystemFontFullNamesByType() local 102 size_t strByteLen = CalculateDrawingStringSize(fullName, utf16String); in OH_Drawing_GetSystemFontFullNamesByType()
|
H A D | font_utils.cpp | 28 dst->fullName = strdup(src.fullName.c_str()); in CopyFontDescriptor() 31 …if (dst->path == NULL || dst->postScriptName == NULL || dst->fullName == NULL || dst->fontFamily =… in CopyFontDescriptor() 35 free(dst->fullName); in CopyFontDescriptor() 40 dst->fullName = nullptr; in CopyFontDescriptor()
|
/ohos5.0/foundation/ability/idl_tool/idl_tool_2/codegen/ |
H A D | code_emitter.cpp | 88 std::string fullName = interfaceName; in InterfaceToFilePath() local 90 if (StringHelper::EndWith(fullName, "]")) { in InterfaceToFilePath() 91 index = fullName.find("["); in InterfaceToFilePath() 92 fullName = fullName.substr(0, index); in InterfaceToFilePath() 95 index = fullName.rfind("."); in InterfaceToFilePath() 96 std::string prefix = fullName.substr(0, index + 1); in InterfaceToFilePath() 97 std::string suffix = fullName.substr(index + 1); in InterfaceToFilePath() 216 void CodeEmitter::EmitHeadMacro(StringBuilder &sb, const std::string &fullName) const in EmitHeadMacro() 218 std::string macroName = MacroName(fullName); in EmitHeadMacro() 223 void CodeEmitter::EmitTailMacro(StringBuilder &sb, const std::string &fullName) const in EmitTailMacro() [all …]
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/texgine/src/ |
H A D | font_descriptor_cache.cpp | 72 stylishFullNameMap_[descriptorPtr->fullName].emplace(descriptorPtr); in ParserStylishFonts() 88 handleMapScatter(fullNameMap_, desc->fullName); in FontDescriptorScatter() 131 fullNameList.emplace(item->fullName); in GetInstallFontList() 150 fullNameList.emplace(temp->fullName); in GetGenericFontList() 212 if (item->fullName == fullName) { in ParseInstallFontDescSharedPtrByName() 223 void FontDescriptorCache::GetFontDescSharedPtrByFullName(const std::string& fullName, in GetFontDescSharedPtrByFullName() argument 226 if (fullName.empty()) { in GetFontDescSharedPtrByFullName() 242 auto tryFindFontDescriptor = [&fullName, &result](const std::unordered_map<std::string, in GetFontDescSharedPtrByFullName() 244 auto it = map.find(fullName); in GetFontDescSharedPtrByFullName() 260 ParseInstallFontDescSharedPtrByName(fullName, result)) { in GetFontDescSharedPtrByFullName() [all …]
|
H A D | font_descriptor_cache.h | 37 void GetFontDescSharedPtrByFullName(const std::string& fullName, 45 … bool ParseInstallFontDescSharedPtrByName(const std::string& fullName, FontDescSharedPtr& result); 58 return lhs->fullName < rhs->fullName; in operator()
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/test/texgine/unittest/ |
H A D | font_descriptor_cache_test.cpp | 54 descriptor.fullName = "test"; 97 desc->fullName = "IsDefaultName"; 144 std::string fullName = "GetSystemFontFullNamesByTypeTests"; variable 146 fontLis.emplace(fullName); 177 finishTest->fullName = "test"; 198 std::string fullName = ""; variable 200 fontDescriptorCache->GetFontDescSharedPtrByFullName(fullName, systemFontType, result); 202 fullName = "HandleMapIntersectionTest"; 203 fontDescriptorCache->GetFontDescSharedPtrByFullName(fullName, systemFontType, result); 209 fontDescriptorCache->fullNameMap_.emplace(fullName, fontDescSet); [all …]
|
/ohos5.0/base/startup/init/interfaces/innerkits/syspara/ |
H A D | sysversion.c | 50 const char *fullName = GetFullName_(); in GetVersions() local 51 if (fullName == NULL) { in GetVersions() 54 const char *tmp = strstr(fullName, "-"); in GetVersions() 61 fullName, g_majorVersion, g_seniorVersion, g_featureVersion, g_buildVersion, ret); in GetVersions()
|
/ohos5.0/foundation/graphic/graphic_2d/interfaces/kits/napi/graphic/color_manager/color_space_object_convertor/ |
H A D | js_color_space_utils.cpp | 31 std::string fullName; in BindNativeFunction() local 33 fullName = moduleName; in BindNativeFunction() 34 fullName += '.'; in BindNativeFunction() 36 fullName += name; in BindNativeFunction() 39 … status = napi_create_function(env, fullName.c_str(), fullName.size(), func, nullptr, &funcValue); in BindNativeFunction() 43 status = napi_set_named_property(env, object, fullName.c_str(), funcValue); in BindNativeFunction()
|
/ohos5.0/base/startup/init/interfaces/kits/syscap_ts/src/ |
H A D | syscap_ts.cpp | 26 std::string fullName(moduleName); in BindNativeFunction() local 27 fullName += "."; in BindNativeFunction() 28 fullName += name; in BindNativeFunction() 30 napi_create_function(env, fullName.c_str(), fullName.length(), func, nullptr, &result); in BindNativeFunction()
|
/ohos5.0/foundation/resourceschedule/resource_schedule_service/cgroup_sched/framework/process_group/src/ |
H A D | cgroup_action.cpp | 66 const std::string& fullName, const std::string& abbrName) in AddSchedPolicyDeclaration() argument 71 __func__, policy, fullName.c_str(), abbrName.c_str()); in AddSchedPolicyDeclaration() 76 __func__, policy, fullName.c_str(), abbrName.c_str()); in AddSchedPolicyDeclaration() 79 if (fullName.empty() || abbrName.empty()) { in AddSchedPolicyDeclaration() 86 [ &fullName ] (const auto& kv) { return kv.second == fullName; })) { in AddSchedPolicyDeclaration() 90 __func__, policy, fullName.c_str(), abbrName.c_str()); in AddSchedPolicyDeclaration() 91 fullNames_[policy] = fullName; in AddSchedPolicyDeclaration()
|
/ohos5.0/foundation/arkui/napi/native_engine/ |
H A D | native_sendable.cpp | 88 std::string fullName; in InitSendablePropertiesInfo() local 90 fullName += propertyDescriptor.utf8name; in InitSendablePropertiesInfo() 92 fullName += key->IsString(vm) ? Local<StringRef>(key)->ToString(vm) in InitSendablePropertiesInfo() 97 …NapiNativeCreateSendableFunction(env, fullName.c_str(), propertyDescriptor.method, propertyDescrip… in InitSendablePropertiesInfo() 163 std::string fullName; in NapiDefineSendabledProperty() local 165 fullName += propertyDescriptor.utf8name; in NapiDefineSendabledProperty() 167 fullName += propertyName->IsString(vm) ? Local<StringRef>(propertyName)->ToString(vm) in NapiDefineSendabledProperty() 172 …NapiNativeCreateSendableFunction(env, fullName.c_str(), propertyDescriptor.method, propertyDescrip… in NapiDefineSendabledProperty()
|
/ohos5.0/foundation/graphic/graphic_2d/interfaces/kits/napi/graphic/text/fontdescriptor_napi/src/ |
H A D | js_fontdescriptor.cpp | 75 {"fullName", item->fullName}, in CreateAndSetProperties() 148 napi_value fullName = nullptr; in CreateFontList() local 149 …TEXT_ERROR_CHECK(napi_create_string_utf8(env, item.c_str(), NAPI_AUTO_LENGTH, &fullName) == napi_o… in CreateFontList() 151 …TEXT_ERROR_CHECK(napi_set_element(env, fullNameArray, index++, fullName) == napi_ok, return nullpt… in CreateFontList() 160 std::string fullName; in GetFontDescriptorByFullName() member 176 … NAPI_CHECK_ARGS(context, ConvertFromJsValue(env, argv[0], context->fullName), napi_invalid_arg, in GetFontDescriptorByFullName() 186 context->fullName, context->systemFontType, context->resultDesc); in GetFontDescriptorByFullName()
|
/ohos5.0/docs/en/application-dev/quick-start/ |
H A D | arkts-new-Computed.md | 40 get fullName() { // Correct format. 52 get fullName() { 120 - Click the first button to change the value of **lastName**, triggering **\@Computed fullName** re… 121 - The **this.fullName** is bound to two **Text** components. The **fullName** log shows that the co… 135 get fullName() { 145 Text(this.fullName) 146 Text(this.fullName) 164 - Click the button to change the value of **lastName** and the **\@Computed fullName** will be reco… 173 get fullName() { 188 Text(this.name1.fullName) [all …]
|
/ohos5.0/foundation/graphic/graphic_2d/interfaces/kits/napi/graphic/drawing/ |
H A D | js_drawing_utils.cpp | 36 std::string fullName; in BindNativeFunction() local 38 fullName = moduleName; in BindNativeFunction() 39 fullName += '.'; in BindNativeFunction() 41 fullName += name; in BindNativeFunction() 43 napi_create_function(env, fullName.c_str(), fullName.size(), func, nullptr, &funcValue); in BindNativeFunction() 44 napi_set_named_property(env, object, fullName.c_str(), funcValue); in BindNativeFunction()
|
/ohos5.0/drivers/hdf_core/framework/tools/hdi-gen/codegen/ |
H A D | code_emitter.cpp | 146 std::string fullName = interfaceName; in InterfaceToFilePath() local 147 if (StringHelper::EndWith(fullName, "]")) { in InterfaceToFilePath() 148 fullName = fullName.substr(0, fullName.find("[")); in InterfaceToFilePath() 150 size_t index = fullName.rfind("."); in InterfaceToFilePath() 151 std::string prefix = fullName.substr(0, index + 1); in InterfaceToFilePath() 152 std::string suffix = fullName.substr(index + 1); in InterfaceToFilePath()
|
H A D | c_code_emitter.cpp | 118 void CCodeEmitter::EmitHeadMacro(StringBuilder &sb, const std::string &fullName) const in EmitHeadMacro() 120 std::string macroName = MacroName(fullName); in EmitHeadMacro() 125 void CCodeEmitter::EmitTailMacro(StringBuilder &sb, const std::string &fullName) const in EmitTailMacro() 127 std::string macroName = MacroName(fullName); in EmitTailMacro()
|
/ohos5.0/docs/zh-cn/application-dev/reference/apis-arkgraphics2d/ |
H A D | _o_h___drawing___font_descriptor.md | 22 | char \* [fullName](#fullname) | 系统字体的名称。 | 57 ### fullName subsection 60 char* OH_Drawing_FontDescriptor::fullName
|
/ohos5.0/foundation/ability/idl_tool/idl_tool_2/codegen/SA/cpp/ |
H A D | sa_cpp_interface_code_emitter.cpp | 130 std::string fullName; in EmitInterfaceUsings() local 140 fullName = CppFullName(np + seqType->GetName()); in EmitInterfaceUsings() 141 sb.Append("using ").AppendFormat("%s;\n", fullName.c_str()); in EmitInterfaceUsings() 153 fullName = CppFullName(np + interface->GetName()); in EmitInterfaceUsings() 154 sb.Append("using ").AppendFormat("%s;\n", fullName.c_str()); in EmitInterfaceUsings()
|
/ohos5.0/drivers/hdf_core/framework/tools/hdi-gen/ast/ |
H A D | ast.cpp | 53 void AST::SetFullName(const std::string &fullName) in SetFullName() argument 55 size_t index = fullName.rfind('.'); in SetFullName() 57 packageName_ = StringHelper::SubStr(fullName, 0, index); in SetFullName() 58 name_ = StringHelper::SubStr(fullName, index + 1); in SetFullName() 61 name_ = fullName; in SetFullName()
|
/ohos5.0/foundation/ability/idl_tool/ast/ |
H A D | ast_sequenceable_type.cpp | 32 String fullName = namespace_ != nullptr ? in GetSignature() local 34 return "L" + fullName.Replace('.', '/') + ";"; in GetSignature()
|
/ohos5.0/base/hiviewdfx/hiview/plugins/reliability/leak_detectors/native_leak/ |
H A D | native_leak_detector.cpp | 373 string fullName = FaultDetectorUtil::GetProcessName(pid); in ProcessUserEvent() local 374 if (fullName.find(name) == string::npos) { in ProcessUserEvent() 376 name.c_str(), pid, fullName.c_str()); in ProcessUserEvent() 383 auto it = processedPids_.find(fullName); in ProcessUserEvent() 414 HIVIEW_LOGI("start monitor pid: %{public}d, name: %{public}s", pid, fullName.c_str()); in ProcessUserEvent() 416 userMonitorInfo->SetProcessName(fullName); in ProcessUserEvent()
|
/ohos5.0/foundation/ability/idl_tool/idl_tool_2/ast/ |
H A D | ast_sequenceable_type.cpp | 31 std::string fullName = namespace_ != nullptr ? in GetSignature() local 33 return "L" + StringHelper::Replace(fullName, '.', '/') + ";"; in GetSignature()
|