Searched refs:commaPos (Results 1 – 5 of 5) sorted by relevance
/frameworks/av/media/libdatasource/ |
D | DataURISource.cpp | 30 const char *commaPos = strrchr(uri, ','); in Create() local 32 if (commaPos == NULL) { in Create() 38 AString tmp(&uri[5], commaPos - &uri[5]); in Create() 43 const char *src = commaPos+1; in Create() 73 memcpy(buffer->data(), commaPos + 1, dataLen); in Create()
|
/frameworks/av/media/libstagefright/rtsp/ |
D | APacketSource.cpp | 132 ssize_t commaPos = val.find(",", start); in MakeAVCCodecSpecificData() local 133 size_t end = (commaPos < 0) ? val.size() : commaPos; in MakeAVCCodecSpecificData() 158 if (commaPos < 0) { in MakeAVCCodecSpecificData() 162 start = commaPos + 1; in MakeAVCCodecSpecificData()
|
/frameworks/base/tools/bit/ |
D | main.cpp | 584 size_t commaPos; in parse_args() local 586 commaPos = arg.find(',', beginPos); in parse_args() 587 if (commaPos == string::npos) { in parse_args() 589 target->actions.push_back(string(arg, beginPos, commaPos)); in parse_args() 593 if (commaPos != beginPos) { in parse_args() 594 target->actions.push_back(string(arg, beginPos, commaPos-beginPos)); in parse_args() 596 beginPos = commaPos+1; in parse_args()
|
/frameworks/av/media/libstagefright/httplive/ |
D | M3UParser.cpp | 448 ssize_t commaPos = -1; in getTypeURI() local 450 while ((commaPos = codecs.find(",", offset)) >= 0) { in getTypeURI() 451 AString codec(codecs, offset, commaPos - offset); in getTypeURI() 458 offset = commaPos + 1; in getTypeURI()
|
/frameworks/base/services/core/jni/ |
D | com_android_server_input_InputManagerService.cpp | 642 size_t commaPos = layoutIdentifier.find(','); in getReaderConfiguration() local 643 std::string languageTag = layoutIdentifier.substr(0, commaPos); in getReaderConfiguration() 644 std::string layoutType = layoutIdentifier.substr(commaPos + 1); in getReaderConfiguration()
|