HomeSort by relevance Sort by last modified time
    Searched defs:slashpos (Results 1 - 25 of 26) sorted by null

1 2

  /external/swiftshader/third_party/LLVM/lib/Archive/
ArchiveWriter.cpp 120 size_t slashpos = mbrPath.rfind('/'); local
121 if (slashpos != std::string::npos) {
122 nm += slashpos + 1;
123 len -= slashpos +1;
  /external/zopfli/src/zopflipng/
zopflipng_bin.cc 31 size_t slashpos = filename.find_last_of("/\\"); local
33 if (slashpos == npos) {
37 *dir = filename.substr(0, slashpos + 1);
38 nodir = filename.substr(slashpos + 1);
  /frameworks/base/core/java/android/content/
ClipDescription.java 134 final int slashpos = desiredType.indexOf('/'); local
135 if (slashpos > 0) {
136 if (typeLength == slashpos+2 && desiredType.charAt(slashpos+1) == '*') {
137 if (desiredType.regionMatches(0, concreteType, 0, slashpos+1)) {
IntentFilter.java 775 final int slashpos = type.indexOf('/'); local
777 if (slashpos > 0 && typelen >= slashpos+2) {
779 if (typelen == slashpos+2 && type.charAt(slashpos+1) == '*') {
780 String str = type.substring(0, slashpos);
2050 final int slashpos = type.indexOf('\/'); local
    [all...]
  /external/swiftshader/third_party/LLVM/tools/llvm-ar/
llvm-ar.cpp 624 size_t slashpos = compare.rfind('/'); local
625 if (slashpos != std::string::npos) {
626 nm += slashpos + 1;
627 len -= slashpos +1;
  /frameworks/base/services/core/java/com/android/server/
IntentResolver.java 420 int slashpos = resolvedType.indexOf('/'); local
421 if (slashpos > 0) {
422 final String baseType = resolvedType.substring(0, slashpos);
424 if (resolvedType.length() != slashpos+2
425 || resolvedType.charAt(slashpos+1) != '*') {
606 final int slashpos = name.indexOf('/'); local
607 if (slashpos > 0) {
608 baseName = name.substring(0, slashpos).intern();
615 if (slashpos > 0) {
637 final int slashpos = name.indexOf('/') local
    [all...]
  /external/robolectric/v3/runtime/
shadows-core-3.1-SNAPSHOT-16.jar 
shadows-core-3.1-SNAPSHOT-17.jar 
shadows-core-3.1-SNAPSHOT-18.jar 
shadows-core-3.1-SNAPSHOT-19.jar 
shadows-core-3.1-SNAPSHOT-21.jar 
shadows-core-3.1-SNAPSHOT-22.jar 
android-all-4.1.2_r1-robolectric-0.jar 
android-all-4.2.2_r1.2-robolectric-0.jar 
android-all-4.3_r2-robolectric-0.jar 
  /prebuilts/misc/common/robolectric/3.1.1/lib/
shadows-core-v16-3.1.1.jar 
shadows-core-v17-3.1.1.jar 
shadows-core-v18-3.1.1.jar 
shadows-core-v19-3.1.1.jar 
shadows-core-v21-3.1.1.jar 
shadows-core-v22-3.1.1.jar 
shadows-core-v23-3.1.1.jar 
  /prebuilts/misc/common/robolectric/android-all/
android-all-4.1.2_r1-robolectric-0.jar 
android-all-4.2.2_r1.2-robolectric-0.jar 
android-all-4.3_r2-robolectric-0.jar 

Completed in 124 milliseconds

1 2