Home
last modified time | relevance | path

Searched refs:sep (Results 1 – 25 of 30) sorted by relevance

12

/packages/modules/NeuralNetworks/tools/systrace_parser/
Dparse_systrace.py39 sep = "["
41 sep = ""
50 sep = ","
53 starting_mark, sep)
64 sep = ","
65 print_stats(tracker_map, print_detail, total_times, per_execution, json, starting_mark, sep)
/packages/modules/Permission/PermissionController/iconloaderlib/src/com/android/launcher3/util/
DComponentKey.java69 int sep = str.indexOf('#'); in fromString() local
70 if (sep < 0 || (sep + 1) >= str.length()) { in fromString()
73 ComponentName componentName = ComponentName.unflattenFromString(str.substring(0, sep)); in fromString()
79 UserHandle.getUserHandleForUid(Integer.parseInt(str.substring(sep + 1)))); in fromString()
/packages/modules/Bluetooth/system/audio_hal_interface/aidl/
Da2dp_encoding_aidl.cc840 for (auto const& sep : remote_seps) { in get_a2dp_configuration() local
844 switch (sep.capabilities[2]) { in get_a2dp_configuration()
848 static_cast<CodecId::A2dp>(sep.capabilities[2])); in get_a2dp_configuration()
850 capabilities_end = 1 + sep.capabilities[0]; in get_a2dp_configuration()
855 (static_cast<uint32_t>(sep.capabilities[3]) << 0) | in get_a2dp_configuration()
856 (static_cast<uint32_t>(sep.capabilities[4]) << 8) | in get_a2dp_configuration()
857 (static_cast<uint32_t>(sep.capabilities[5]) << 16) | in get_a2dp_configuration()
858 (static_cast<uint32_t>(sep.capabilities[6]) << 24); in get_a2dp_configuration()
859 uint16_t codec_id = (static_cast<uint16_t>(sep.capabilities[7]) << 0) | in get_a2dp_configuration()
860 (static_cast<uint16_t>(sep.capabilities[8]) << 8); in get_a2dp_configuration()
[all …]
/packages/providers/ContactsProvider/qc/
Dqdb17 sep="〠"
18 output="-list -separator $sep"
19 filter="column -t -s $sep"
/packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/common/
DStoreUtils.java88 int sep = str.indexOf('/'); in stringToComponentName() local
89 if (sep < 0 || (sep+1) >= str.length()) { in stringToComponentName()
92 String pkg = str.substring(0, sep); in stringToComponentName()
93 String cls = str.substring(sep+1); in stringToComponentName()
/packages/modules/Wifi/service/java/com/android/server/wifi/util/
DKeyValueListParser.java60 int sep = pair.indexOf('='); in setString() local
61 if (sep < 0) { in setString()
66 mValues.put(pair.substring(0, sep).trim(), pair.substring(sep + 1).trim()); in setString()
/packages/modules/NeuralNetworks/tools/systrace_parser/parser/
Doutput.py13 json_output=False, starting_mark='', sep=''): argument
44 if sep:
45 print(sep)
/packages/modules/NeuralNetworks/tools/test_generator/
Dtest_generator.py39 def GetJointStr(l, sep=", ", method=str): argument
40 return sep.join([method(i) for i in l])
86 def __init__(self, *args, sep="_", showZero=False, startsFrom=0, skipRenaming=False): argument
87 name = GetJointStr([i for i in args if i is not None and i != ""], sep=sep)
92 uniqueName = name if showZero is False else name + sep + str(startsFrom)
95 uniqueName = name + sep + str(startsFrom)
119 def __init__(self, *args, sep="_", showZero=False, startsFrom=0, skipRenaming=False): argument
120 NamedObject.__init__(self, *args, sep=sep, showZero=showZero,
160 NamedVariable.__init__(self, name, sep="", showZero=True, skipRenaming=skipRenaming)
196 left, sep, right = shape.partition('{')
[all …]
/packages/modules/Bluetooth/system/test/mock/
Dmock_bta_av_api.h290 std::function<void(const RawAddress& bdaddr, uint8_t sep)> body{
292 void operator()(const RawAddress& bdaddr, uint8_t sep) { body(bdaddr, sep); }; in operator()
Dmock_bta_av_api.cc161 void BTA_AvSetPeerSep(const RawAddress& bdaddr, uint8_t sep) { in BTA_AvSetPeerSep() argument
163 test::mock::bta_av_api::BTA_AvSetPeerSep(bdaddr, sep); in BTA_AvSetPeerSep()
/packages/modules/Bluetooth/system/bta/av/
Dbta_av_api.cc651 void BTA_AvSetPeerSep(const RawAddress& bdaddr, uint8_t sep) { in BTA_AvSetPeerSep() argument
657 p_buf->sep = sep; in BTA_AvSetPeerSep()
Dbta_av_aact.cc684 .sep = AVDT_TSEP_INVALID, in bta_av_role_res()
688 bta_av_data.open.sep = AVDT_TSEP_SNK; in bta_av_role_res()
690 bta_av_data.open.sep = AVDT_TSEP_SRC; in bta_av_role_res()
1254 .sep = AVDT_TSEP_INVALID, in bta_av_str_opened()
1272 open.sep = AVDT_TSEP_SNK; in bta_av_str_opened()
1275 open.sep = AVDT_TSEP_SRC; in bta_av_str_opened()
1689 .sep = AVDT_TSEP_INVALID, in bta_av_open_failed()
1695 bta_av_data.open.sep = AVDT_TSEP_SNK; in bta_av_open_failed()
1697 bta_av_data.open.sep = AVDT_TSEP_SRC; in bta_av_open_failed()
2515 data.open.sep = AVDT_TSEP_SNK; in bta_av_str_closed()
[all …]
Dbta_av_main.cc1555 const tBTA_AV_SEP& sep = p_scb->seps[j]; in bta_debug_av_dump() local
1556 if (sep.av_handle == 0) { in bta_debug_av_dump()
1560 dprintf(fd, " SEP AVDTP handle: %d\n", sep.av_handle); in bta_debug_av_dump()
1561 dprintf(fd, " Local SEP type: %d\n", sep.tsep); in bta_debug_av_dump()
1562 dprintf(fd, " Codec: %s\n", A2DP_CodecName(sep.codec_info)); in bta_debug_av_dump()
Dbta_av_int.h447 uint8_t sep; member
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
DContactLocaleUtils.java88 String sep = ""; in dumpIndex() local
90 labels.append(sep); in dumpIndex()
92 sep = ","; in dumpIndex()
/packages/modules/NetworkStack/src/android/net/ip/
DIpReachabilityMonitor.java359 private String describeWatchList(String sep) {
361 sb.append("iface{" + mInterfaceParams + "}," + sep);
362 sb.append("ntable=[" + sep);
366 delimiter = "," + sep;
/packages/modules/Bluetooth/system/bta/include/
Dbta_av_api.h187 uint8_t sep; /* sep type of peer device */ member
736 void BTA_AvSetPeerSep(const RawAddress& bdaddr, uint8_t sep);
/packages/inputmethods/LatinIME/tools/EditTextVariations/src/com/android/inputmethod/tools/edittextvariations/
DEditTextVariations.java309 String sep = ""; in setupHintText() local
312 hint += sep + elem[elem.length - 1]; in setupHintText()
313 sep = ","; in setupHintText()
/packages/apps/Car/Launcher/libs/appgrid/lib/src/com/android/car/carlauncher/
DAppLauncherUtils.java499 String sep) { in getActivitiesFromSystemPreferences() argument
506 sep))); in getActivitiesFromSystemPreferences()
/packages/modules/Bluetooth/system/btif/src/
Dbtif_av.cc1902 peer_.PeerSep(), p_bta_data->open.sep); in ProcessEvent()
1913 if (peer_.PeerSep() != p_bta_data->open.sep) { in ProcessEvent()
1930 peer_.SetSep(p_bta_data->open.sep); in ProcessEvent()
1939 peer_.PeerSep() == p_bta_data->open.sep, in ProcessEvent()
2105 peer_.PeerSep(), p_bta_data->open.sep); in ProcessEvent()
2116 if (peer_.PeerSep() != p_bta_data->open.sep) { in ProcessEvent()
2133 peer_.SetSep(p_bta_data->open.sep); in ProcessEvent()
2142 peer_.PeerSep() == p_bta_data->open.sep, in ProcessEvent()
/packages/apps/Car/DebuggingRestrictionController/libs/
Djackson-core-2.11.1.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/LICENSE META-INF ...
/packages/services/Car/tests/BugReportApp/libs/
Djackson-core-2.9.9.jarMETA-INF/MANIFEST.MF META-INF/ META-INF/LICENSE META-INF ...
/packages/apps/TV/libs/m2/
Dauto-value-1.5.3.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/ ...
/packages/apps/TV/libs/
Dgoogle-java-format-1.7-all-deps.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/ ...
/packages/inputmethods/LatinIME/dictionaries/
Dsl_wordlist.combined.gz1dictionary=main:sl,locale=sl,description=Slovenščina,date=1393228152, ...

12