Searched defs:colon (Results 1 - 3 of 3) sorted by relevance

/frameworks/av/media/libstagefright/foundation/
H A DADebug.cpp50 char *colon = strchr(current, ':'); local
59 if (errno != 0 || end == current || (end != colon && *end != '\0' && end != next)) {
63 if (colon != NULL) {
65 do { // skip colon and spaces
66 ++colon;
67 } while (isspace(*colon));
68 size_t globLen = (next == NULL ? strlen(colon) : (next - 1 - colon));
69 while (globLen > 0 && isspace(colon[globLen - 1])) {
74 colon, globLe
[all...]
/frameworks/compile/mclinker/include/mcld/Support/
H A DPath.h36 const char colon = ':'; member in namespace:mcld::sys::fs
/frameworks/base/tools/aapt/
H A DResource.cpp2018 ssize_t colon = symbol.find(":", 0); local
2019 if (colon >= 0) {
2020 return String8(symbol.string(), colon);
2026 ssize_t colon = symbol.find(":", 0); local
2027 if (colon >= 0) {
2028 return String8(symbol.string() + colon + 1);

Completed in 619 milliseconds