Searched refs:sep (Results 1 - 21 of 21) sorted by relevance

/frameworks/base/tools/aapt/
H A DAaptUtil.cpp24 Vector<String8> split(const String8& str, const char sep) { argument
30 q = strchr(p, sep);
42 Vector<String8> splitAndLowerCase(const String8& str, const char sep) { argument
48 q = strchr(p, sep);
H A DAaptUtil.h27 android::Vector<android::String8> split(const android::String8& str, const char sep);
28 android::Vector<android::String8> splitAndLowerCase(const android::String8& str, const char sep);
H A DResourceTable.cpp1544 ssize_t sep = ident.findLast('.'); local
1545 if (sep >= 0) {
1546 parentIdent.setTo(ident, sep);
/frameworks/base/core/java/android/util/
H A DKeyValueListParser.java54 int sep = pair.indexOf('=');
55 if (sep < 0) {
60 mValues.put(pair.substring(0, sep).trim(), pair.substring(sep + 1).trim());
/frameworks/base/core/java/com/android/internal/app/procstats/
H A DDumpUtils.java123 public static void printMemLabel(PrintWriter pw, int offset, char sep) { argument
127 if (sep != 0) pw.print(' ');
131 if (sep != 0) pw.print(sep);
135 if (sep != 0) pw.print(sep);
139 if (sep != 0) pw.print(sep);
143 if (sep != 0) pw.print(sep);
239 dumpAdjTimesCheckin(PrintWriter pw, String sep, long[] durations, int curState, long curStartTime, long now) argument
255 dumpStateHeadersCsv(PrintWriter pw, String sep, int[] screenStates, int[] memStates, int[] procStates) argument
[all...]
/frameworks/base/packages/SystemUI/plugin/src/com/android/systemui/plugins/
H A DVolumeDialogController.java126 if (indent > 0) sep(sb, indent);
129 sep(sb, indent);
139 sep(sb, indent); sb.append("ringerModeExternal:").append(ringerModeExternal);
140 sep(sb, indent); sb.append("ringerModeInternal:").append(ringerModeInternal);
141 sep(sb, indent); sb.append("zenMode:").append(zenMode);
142 sep(sb, indent); sb.append("effectsSuppressor:").append(effectsSuppressor);
143 sep(sb, indent); sb.append("effectsSuppressorName:").append(effectsSuppressorName);
144 sep(sb, indent); sb.append("activeStream:").append(activeStream);
145 if (indent > 0) sep(sb, indent);
149 private static void sep(StringBuilde method in class:VolumeDialogController.State
[all...]
/frameworks/base/tools/aapt2/util/
H A DUtil.h53 std::vector<std::string> Split(const android::StringPiece& str, char sep);
54 std::vector<std::string> SplitAndLowercase(const android::StringPiece& str, char sep);
127 const Container& container, const char* sep) {
132 return [begin_iter, end_iter, sep](::std::ostream& out) -> ::std::ostream& {
135 out << sep; local
249 iterator(android::StringPiece s, char sep, android::StringPiece tok, bool end);
257 Tokenizer(android::StringPiece str, char sep);
272 inline Tokenizer Tokenize(const android::StringPiece& str, char sep) { return Tokenizer(str, sep); } argument
126 Joiner( const Container& container, const char* sep) argument
H A DUtil.cpp39 const StringPiece& str, char sep, const std::function<char(char)>& f) {
45 current = std::find(start, end, sep);
56 std::vector<std::string> Split(const StringPiece& str, char sep) { argument
57 return SplitAndTransform(str, sep, nullptr);
60 std::vector<std::string> SplitAndLowercase(const StringPiece& str, char sep) { argument
61 return SplitAndTransform(str, sep, ::tolower);
523 Tokenizer::iterator::iterator(StringPiece s, char sep, StringPiece tok, argument
525 : str_(s), separator_(sep), token_(tok), end_(end) {}
527 Tokenizer::Tokenizer(StringPiece str, char sep) argument
528 : begin_(++iterator(str, sep, StringPiec
38 SplitAndTransform( const StringPiece& str, char sep, const std::function<char(char)>& f) argument
[all...]
/frameworks/base/tools/aapt2/java/
H A DManifestClassGenerator.cpp34 const StringPiece sep = "."; local
35 auto iter = std::find_end(value.begin(), value.end(), sep.begin(), sep.end());
39 result.assign(iter + sep.size(), value.end() - (iter + sep.size()));
/frameworks/base/core/java/android/content/
H A DComponentName.java261 int sep = str.indexOf('/');
262 if (sep < 0 || (sep+1) >= str.length()) {
265 String pkg = str.substring(0, sep);
266 String cls = str.substring(sep+1);
H A DIntent.java6167 int sep = uri.indexOf('!', i);
6168 if (sep < 0 || sep > j) sep = j;
6169 if (i < sep) {
6170 intent.addCategory(uri.substring(i, sep));
6172 i = sep + 1;
6200 int sep = uri.indexOf('!', i);
6201 if (sep >= 0 && sep <
[all...]
/frameworks/base/services/tests/servicestests/src/com/android/server/devicepolicy/
H A DMockUtils.java123 String sep = "";
125 sb.append(sep);
126 sep = ",";
/frameworks/base/services/core/java/com/android/server/am/
H A DProcessStatsService.java669 boolean[] sep = new boolean[1];
672 ProcessStats.ADJ_SCREEN_MOD, args[i], sep, error);
678 csvSepScreenStats = sep[0];
686 boolean[] sep = new boolean[1];
689 sep, error);
695 csvSepMemStats = sep[0];
703 boolean[] sep = new boolean[1];
706 sep, error);
712 csvSepProcStats = sep[0];
/frameworks/base/graphics/java/android/graphics/drawable/
H A DIcon.java707 String sep = "";
709 sb.append(String.format("%s0x%08x", sep, c));
710 sep = "|";
/frameworks/ml/nn/tools/test_generator/
H A Dtest_generator.py177 left, sep, right = self.__shape.partition('{')
178 real_shape, sep, right = right.partition('}')
181 scale, sep, zero_point = right.rpartition(',')
186 left, sep, scale = scale.partition(',')
/frameworks/base/core/java/android/content/pm/
H A DShortcutInfo.java1876 String sep = "";
1878 sb.append(sep);
1879 sep = ", ";
/frameworks/av/media/libstagefright/httplive/
H A DPlaylistFetcher.cpp1949 uint8_t sep = buffer->data()[pos]; local
1950 return sep == ' ' || sep == '\t' || sep == '\n' || sep == '\r';
/frameworks/base/services/core/java/com/android/server/pm/
H A DShortcutPackage.java584 final int sep = path.lastIndexOf(File.separatorChar);
585 if (sep == -1) {
588 return path.substring(sep + 1);
/frameworks/av/media/libstagefright/codec2/tests/
H A DC2Param_test.cpp2400 const char *sep = ""; local
2402 cout << sep << get(p, t);
2403 sep = ",";
2478 const char *sep = ""; local
2480 cout << sep << p.first << "=";
2489 sep = ",";
/frameworks/base/core/java/android/service/notification/
H A DZenModeConfig.java370 private static int[] tryParseDayList(String dayList, String sep) { argument
372 final String[] tokens = dayList.split(sep);
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...

Completed in 909 milliseconds