/frameworks/av/media/module/foundation/ |
D | ADebug.cpp | 52 const char *colon = strchr(current, ':'); in GetLevelFromSettingsString() local 61 if (errno != 0 || end == current || (end != colon && *end != '\0' && end != next)) { in GetLevelFromSettingsString() 65 if (colon != NULL) { in GetLevelFromSettingsString() 68 ++colon; in GetLevelFromSettingsString() 69 } while (isspace(*colon)); in GetLevelFromSettingsString() 70 size_t globLen = (next == NULL ? strlen(colon) : (next - 1 - colon)); in GetLevelFromSettingsString() 71 while (globLen > 0 && isspace(colon[globLen - 1])) { in GetLevelFromSettingsString() 76 colon, globLen, name, strlen(name), true /* ignoreCase */)) { in GetLevelFromSettingsString()
|
/frameworks/base/apct-tests/perftests/core/src/android/libcore/regression/ |
D | SchemePrefixPerfTest.java | 46 int colon = spec.indexOf(':'); in JAVA() local 48 if (colon < 1) { in JAVA() 52 for (int i = 0; i < colon; i++) { in JAVA() 59 return spec.substring(0, colon).toLowerCase(Locale.US); in JAVA()
|
/frameworks/base/tools/bit/ |
D | aapt.cpp | 196 size_t colon = str.find(':'); in inspect_apk() local 197 if (colon == string::npos) { in inspect_apk() 200 element->ns = scope->namespaces[string(str, 0, colon)]; in inspect_apk() 201 element->name.assign(str, colon+1, string::npos); in inspect_apk() 221 size_t colon = str.rfind(':'); in inspect_apk() local 222 if (colon == string::npos) { in inspect_apk() 225 attr.ns.assign(str, 0, colon); in inspect_apk() 226 attr.name.assign(str, colon+1, string::npos); in inspect_apk()
|
/frameworks/opt/net/voip/src/java/android/net/sip/ |
D | SimpleSessionDescription.java | 434 int colon = encryption.indexOf(':'); in getEncryptionMethod() local 435 return (colon == -1) ? encryption : encryption.substring(0, colon); in getEncryptionMethod() 446 int colon = encryption.indexOf(':'); in getEncryptionKey() local 447 return (colon == -1) ? null : encryption.substring(0, colon + 1); in getEncryptionKey()
|
/frameworks/base/tools/hoststubgen/hoststubgen/src/com/android/hoststubgen/ |
D | HostStubGenOptions.kt | 126 val colon = fromColonTo.indexOf(':') in parsePackageRedirect() constant 127 if ((colon < 1) || (colon + 1 >= fromColonTo.length)) { in parsePackageRedirect() 131 return Pair(fromColonTo.substring(0, colon), fromColonTo.substring(colon + 1)) in parsePackageRedirect()
|
/frameworks/base/services/core/java/com/android/server/wallpaper/ |
D | WallpaperDataParser.java | 584 int colon = resName.indexOf(':'); in restoreNamedResourceLocked() local 585 if (colon > 0) { in restoreNamedResourceLocked() 586 pkg = resName.substring(0, colon); in restoreNamedResourceLocked() 596 if (colon > 0 && slash > 0 && (slash - colon) > 1) { in restoreNamedResourceLocked() 597 type = resName.substring(colon + 1, slash); in restoreNamedResourceLocked()
|
/frameworks/av/media/module/service.mediatranscoding/ |
D | .clang-format | 21 # lines indented eight spaces.". clang-format does not support having the colon
|
/frameworks/av/services/tuner/ |
D | .clang-format | 21 # lines indented eight spaces.". clang-format does not support having the colon
|
/frameworks/av/media/module/libmediatranscoding/ |
D | .clang-format | 37 # lines indented eight spaces.". clang-format does not support having the colon
|
/frameworks/compile/mclinker/include/mcld/Support/ |
D | Path.h | 37 const char colon = ':'; variable
|
/frameworks/base/core/proto/android/content/ |
D | intent.proto | 80 // without the trailing colon (for example, http, rather than http:). If the
|
/frameworks/base/tools/aapt/ |
D | Resource.cpp | 2226 ssize_t colon = symbol.find(":", 0); in getSymbolPackage() local 2227 if (colon >= 0) { in getSymbolPackage() 2228 return String8(symbol.c_str(), colon); in getSymbolPackage() 2234 ssize_t colon = symbol.find(":", 0); in getSymbolName() local 2235 if (colon >= 0) { in getSymbolName() 2236 return String8(symbol.c_str() + colon + 1); in getSymbolName()
|
/frameworks/native/opengl/libs/EGL/ |
D | GLES_layers.md | 6 …nd enumerate a specified layer list. The layer list will be specified by colon separated filename…
|