Searched refs:parts (Results 1 - 11 of 11) sorted by relevance
/base/web/webview/ohos_interface/ohos_glue/scripts/ |
H A D | make_capi_header.py | 64 parts = func.get_capi_parts() 65 result += indent+parts['retval']+' (ARK_WEB_CALLBACK *'+parts['name'] + suffix + \ 66 ')('+', '.join(parts['args'])+');\n'
|
H A D | make_cpptoc_impl.py | 27 def make_cpptoc_impl_proto(name, func, parts, flag): 29 proto = parts['retval'] + ' ARK_WEB_CALLBACK' 31 proto = 'ARK_WEB_EXPORT ' + parts['retval'] 33 proto = parts['retval'] 35 proto += ' ' + name + '(' + ', '.join(parts['args']) + ')' 168 # retrieve the C API prototype parts 169 parts = func.get_capi_parts(defined_names, True) 170 result = make_cpptoc_impl_proto(name, func, parts, False) + ' {' 292 parts = func.get_capi_parts(defined_names, True) 294 impl += make_cpptoc_impl_proto(func_name + '_static', func, parts, Tru [all...] |
H A D | make_ctocpp_impl.py | 29 parts = func.get_cpp_parts(True) 31 proto += 'ARK_WEB_GLOBAL ' + parts['retval'] + ' ' + func.get_name() + '(' + ', '.join(parts['args']) + ') {' 34 proto += parts['retval'] + ' ' + cls.get_name() 39 proto += '::' + func.get_name() + '(' + ', '.join(parts['args']) + ')' + const + ' {' 164 parts = func.get_capi_parts() 166 impl += 'using ' + func_type + ' = ' + parts['retval'] + ' (*)(' + ', '.join(parts['args']) + ');\n' + \
|
H A D | file_parser.py | 145 function prototype parts. 242 parts = str.split(',') 243 for part in parts: 439 """ Retrieve the function parts from the specified contents as a set of 471 parts = retval.split(' ') 472 name = parts[-1] 473 del parts[-1] 474 retval = ' '.join(parts) 1199 """ Return the parts of the C API function definition. """ 1239 parts [all...] |
/base/telephony/sms_mms/frameworks/native/mms/src/ |
H A D | mms_body.cpp | 209 void MmsBody::GetMmsBodyPart(std::vector<MmsBodyPart> &parts)
in GetMmsBodyPart() argument 211 parts.clear();
in GetMmsBodyPart() 212 parts.assign(mmsBodyParts_.begin(), mmsBodyParts_.end());
in GetMmsBodyPart()
|
/base/telephony/sms_mms/frameworks/native/mms/include/ |
H A D | mms_body.h | 39 void GetMmsBodyPart(std::vector<MmsBodyPart> &parts);
|
/base/startup/appspawn/etc/sandbox/ |
H A D | appdata_sandbox_fixer.py | 205 parts = pattern.split(":") 206 contents = contents.replace("{%s}" % parts[0], parts[1])
|
/base/hiviewdfx/hiview/utility/smart_parser/rule/ |
H A D | extract_rule.cpp | 178 std::vector<std::string> parts; in IsMatchPath() local 179 StringUtil::SplitStr(path, "/", parts, false, false); in IsMatchPath() 181 for (auto& part : parts) { in IsMatchPath()
|
/base/security/code_signature/services/key_enable/src/ |
H A D | profile_utils.rs | 242 let mut parts = Vec::new(); in format_x509name_to_string() variables 253 parts.push(format!("{}={}", tag, value)); in format_x509name_to_string() 255 parts.join(", ") in format_x509name_to_string()
|
H A D | cert_path_utils.rs | 357 let parts: Vec<&str> = subject.split(',').collect(); in fabricate_name() 358 for part in parts { in fabricate_name()
|
/base/telephony/sms_mms/test/gtest/ |
H A D | zero_branch_mms_test.cpp | 937 std::vector<MmsBodyPart> parts; in HWTEST_F() local 938 mmsBody.GetMmsBodyPart(parts); in HWTEST_F()
|
Completed in 9 milliseconds