Home
last modified time | relevance | path

Searched refs:seps (Results 1 - 15 of 15) sorted by relevance

/third_party/python/Lib/
H A Dntpath.py111 seps = b'\\/'
115 seps = '\\/'
123 if p_path and p_path[0] in seps:
138 if result_path and result_path[-1] not in seps:
142 if (result_path and result_path[0] not in seps and
214 seps = _get_bothseps(p)
218 while i and p[i-1] not in seps:
222 head = head.rstrip(seps) or head
294 seps = _get_bothseps(path)
297 if root and root[0] in seps
[all...]
H A Dlocale.py196 seps = 0
199 parts[0], seps = _group(parts[0], monetary=monetary)
203 if seps:
204 formatted = _strip_padding(formatted, seps)
206 seps = 0
208 formatted, seps = _group(formatted, monetary=monetary)
209 if seps:
210 formatted = _strip_padding(formatted, seps)
/foundation/ability/ability_runtime/test/unittest/file_path_utils_test/
H A Dfile_path_utils_test.cpp93 const char* seps = "a"; in HWTEST_F() local
94 SplitString(longStr, strVector, pos, seps); in HWTEST_F()
109 const char* seps = "a"; in HWTEST_F() local
110 SplitString(longStr, strVector, pos, seps); in HWTEST_F()
125 const char* seps = "|"; in HWTEST_F() local
126 SplitString(longStr, strVector, pos, seps); in HWTEST_F()
141 const char* seps = ":"; in HWTEST_F() local
142 SplitString(longStr, strVector, pos, seps); in HWTEST_F()
/foundation/communication/bluetooth_service/services/bluetooth/service/src/gavdp/
H A Da2dp_profile_peer.cpp234 void A2dpProfilePeer::SetPeerSepInfo(AvdtDiscover seps) in SetPeerSepInfo() argument
238 for (int i = 0; i < seps.numSeps; i++) { in SetPeerSepInfo()
239 peerSepInfo_[i].isUsed = (seps.seps[i]).isUsed; in SetPeerSepInfo()
240 peerSepInfo_[i].mediaType = (seps.seps[i]).mediaType; in SetPeerSepInfo()
241 peerSepInfo_[i].seid = (seps.seps[i]).seid; in SetPeerSepInfo()
242 peerSepInfo_[i].sepType = (seps.seps[ in SetPeerSepInfo()
[all...]
H A Da2dp_profile_peer.h195 void SetPeerSepInfo(AvdtDiscover seps);
/foundation/communication/bluetooth_service/services/bluetooth/stack/src/avdtp/
H A Davdtp_message.c392 /* build seps */ in AvdtBuildDiscoverRsp()
402 * @details Build seps content to message.
417 LOG_DEBUG("[AVDT]%{public}s: discoverRsp acid(%hhu)", __func__, avdtMsgData->discoverRsp.seps[i].seid); in AvdtBuildSeps()
418 data = ((avdtMsgData->discoverRsp.seps[i].seid << AVDT_OFFSET_2BIT) | in AvdtBuildSeps()
419 (avdtMsgData->discoverRsp.seps[i].isUsed << AVDT_OFFSET_1BIT)); in AvdtBuildSeps()
423 data = ((avdtMsgData->discoverRsp.seps[i].mediaType << AVDT_OFFSET_4BIT) | in AvdtBuildSeps()
424 (avdtMsgData->discoverRsp.seps[i].sepType << AVDT_OFFSET_3BIT)); in AvdtBuildSeps()
615 /* buld seps */ in AvdtBuildGetCapRsp()
650 /* buld seps */ in AvdtBuildGetConfigureRsp()
1608 (void)memset_s(&data->discoverCfm.seps[inde in AvdtParseDiscoverRsp()
[all...]
H A Davdtp_impl.c45 /* disable call discover seps API continually */ in AvdtActDiscoverReq()
81 * Get the seps information of local device.
100 event.msg.discoverRsp.seps[event.msg.discoverRsp.numSeps].mediaType = in AvdtActDiscoverInd()
102 event.msg.discoverRsp.seps[event.msg.discoverRsp.numSeps].sepType = in AvdtActDiscoverInd()
104 event.msg.discoverRsp.seps[event.msg.discoverRsp.numSeps].isUsed = sigCtrl->streamCtrl[i].isUsed; in AvdtActDiscoverInd()
105 event.msg.discoverRsp.seps[event.msg.discoverRsp.numSeps].seid = in AvdtActDiscoverInd()
157 /* disable call discover seps API continually */ in AvdtActGetCapReq()
294 /* disable call discover seps API continually */ in AvdtActGetAllCapReq()
393 /* disable call discover seps API continually */ in AvdtActSetConfigReq()
527 /* disable call discover seps AP in AvdtActGetConfigReq()
[all...]
/third_party/python/Lib/distutils/command/
H A Dsdist.py368 seps = r'/|\\'
370 seps = '/'
374 vcs_ptrn = r'(^|%s)(%s)(%s).*' % (seps, '|'.join(vcs_dirs), seps)
/foundation/ability/ability_base/interfaces/kits/native/extractortool/include/
H A Dfile_path_utils.h25 void SplitString(const std::string& str, std::vector<std::string>& out, size_t pos = 0, const char* seps = "\\/");
/third_party/mbedtls/tests/scripts/
H A Dcheck_files.py61 seps = os.path.sep
63 seps += os.path.altsep
64 return '/'.join(filepath.split(seps))
/foundation/ability/ability_base/interfaces/kits/native/extractortool/src/
H A Dfile_path_utils.cpp73 void SplitString(const std::string& str, std::vector<std::string>& out, size_t pos, const char* seps) in SplitString() argument
81 while ((endPos = str.find_first_of(seps, startPos)) != std::string::npos) { in SplitString()
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/jsi/utils/
H A Djsi_module_searcher.cpp70 void SplitString(const std::string& str, std::vector<std::string>& out, size_t pos = 0, const char* seps = SEPERATOR) in SplitString()
78 while ((endPos = str.find_first_of(seps, startPos)) != std::string::npos) { in SplitString()
/third_party/skia/third_party/externals/freetype/src/bdf/
H A Dbdflib.c417 char seps[32]; in _bdf_list_split() local
446 FT_MEM_ZERO( seps, 32 ); in _bdf_list_split()
456 setsbit( seps, *sp ); in _bdf_list_split()
464 for ( ; *ep && !sbitset( seps, *ep ); ep++ ) in _bdf_list_split()
484 for ( ; *ep && sbitset( seps, *ep ); ep++ ) in _bdf_list_split()
/foundation/communication/bluetooth_service/services/bluetooth/stack/include/
H A Davdtp.h69 #define AVDT_BUSY 4 // A procedure is doing,such as discovery seps
263 AvdtSepInfo seps[AVDT_NUM_SEPS]; // Pointer to SEP information member
/third_party/backends/backend/
H A Dbh.c1373 const char *seps = "x+:"; in section_parse() local
1398 w = strtok(buf, seps); in section_parse()
1399 if (w) l = strtok(NULL, seps); in section_parse()
1400 if (l) x = strtok(NULL, seps); in section_parse()
1401 if (x) y = strtok(NULL, seps); in section_parse()
1402 if (y) f = strtok(NULL, seps); in section_parse()
1453 f = strtok(NULL, seps); in section_parse()

Completed in 22 milliseconds