HomeSort by relevance Sort by last modified time
    Searched refs:slashPos (Results 1 - 7 of 7) sorted by null

  /packages/apps/Gallery3D/src/com/cooliris/media/
MediaItem.java 135 int slashPos = mMimeType.indexOf('/');
136 if (slashPos != -1 && slashPos + 1 < mMimeType.length()) {
137 mDisplayMimeType = mMimeType.substring(slashPos + 1).toUpperCase();
  /frameworks/base/media/libstagefright/
NuHTTPDataSource.cpp 35 const char *slashPos = strchr(&url[7], '/');
37 if (slashPos == NULL) {
41 host->setTo(&url[7], slashPos - &url[7]);
42 path->setTo(slashPos);
201 const char *slashPos = strchr(value.c_str(), '/');
202 if (slashPos != NULL
203 && ParseSingleUnsignedLong(slashPos + 1, &x)) {
  /frameworks/base/media/libstagefright/httplive/
M3UParser.cpp 99 char *slashPos = strrchr(baseURL, '/');
101 if (slashPos > &baseURL[6]) {
102 out->setTo(baseURL, slashPos - baseURL);
  /frameworks/base/media/libstagefright/rtsp/
ARTSPConnection.cpp 126 const char *slashPos = strchr(&url[7], '/');
128 if (slashPos == NULL) {
132 host->setTo(&url[7], slashPos - &url[7]);
133 path->setTo(slashPos);
APacketSource.cpp 469 ssize_t slashPos = desc.find("/");
470 if (slashPos < 0) {
474 const char *s = desc.c_str() + slashPos + 1;
MyHandler.h     [all...]
  /prebuilt/common/ant/
ant.jar 

Completed in 84 milliseconds