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

  /frameworks/base/core/java/android/content/
ClipDescription.java 99 final int slashpos = desiredType.indexOf('/'); local
100 if (slashpos > 0) {
101 if (typeLength == slashpos+2 && desiredType.charAt(slashpos+1) == '*') {
102 if (desiredType.regionMatches(0, concreteType, 0, slashpos+1)) {
IntentFilter.java 534 final int slashpos = type.indexOf('/'); local
536 if (slashpos > 0 && typelen >= slashpos+2) {
538 if (typelen == slashpos+2 && type.charAt(slashpos+1) == '*') {
539 String str = type.substring(0, slashpos);
1648 final int slashpos = type.indexOf('\/'); local
    [all...]
  /frameworks/base/services/java/com/android/server/
IntentResolver.java 244 int slashpos = resolvedType.indexOf('/'); local
245 if (slashpos > 0) {
246 final String baseType = resolvedType.substring(0, slashpos);
248 if (resolvedType.length() != slashpos+2
249 || resolvedType.charAt(slashpos+1) != '*') {
399 final int slashpos = name.indexOf('/'); local
400 if (slashpos > 0) {
401 baseName = name.substring(0, slashpos).intern();
408 if (slashpos > 0) {
430 final int slashpos = name.indexOf('/') local
    [all...]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/testing/
file.cc 106 string::size_type slashpos = path.find_last_of('/');
107 if (slashpos == string::npos) {
112 return RecursivelyCreateDir(path.substr(0, slashpos), mode) &&
  /external/protobuf/src/google/protobuf/testing/
file.cc 106 string::size_type slashpos = path.find_last_of('/');
107 if (slashpos == string::npos) {
112 return RecursivelyCreateDir(path.substr(0, slashpos), mode) &&
  /external/chromium_org/content/browser/web_contents/
navigation_entry_impl.cc 187 string16::size_type slashpos = title.rfind('/'); local
188 if (slashpos != string16::npos)
189 title = title.substr(slashpos + 1);

Completed in 1648 milliseconds