HomeSort by relevance Sort by last modified time
    Searched full:lastindex (Results 176 - 200 of 644) sorted by null

1 2 3 4 5 6 78 91011>>

  /prebuilts/go/linux-x86/src/strings/
strings_test.go 119 func TestLastIndex(t *testing.T) { runIndexTests(t, LastIndex, "LastIndex", lastIndexTests) }
193 LastIndex(benchmarkString, "v")
1147 LastIndex(benchInputHard, sep)
strings.go 183 // LastIndex returns the index of the last instance of sep in s, or -1 if sep is not present in s.
184 func LastIndex(s, sep string) int {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/
AdtUtils.java 699 int lastIndex = path.lastIndexOf('/');
700 if (lastIndex != -1) {
701 int lastLastIndex = path.lastIndexOf('/', lastIndex - 1);
703 return path.substring(lastLastIndex + 1, lastIndex);
    [all...]
  /frameworks/opt/datetimepicker/src/com/android/datetimepicker/time/
RadialPickerLayout.java 528 int lastIndex = getCurrentItemShowing();
531 if (animate && (index != lastIndex)) {
    [all...]
  /prebuilts/go/darwin-x86/src/bytes/
bytes.go 126 // LastIndex returns the index of the last instance of sep in s, or -1 if sep is not present in s.
127 func LastIndex(s, sep []byte) int {
  /prebuilts/go/darwin-x86/src/debug/gosym/
symtab.go 53 r := strings.LastIndex(s.Name, ".")
62 if i := strings.LastIndex(s.Name, "."); i != -1 {
  /prebuilts/go/darwin-x86/src/net/http/
client.go 103 func hasPort(s string) bool { return strings.LastIndex(s, ":") > strings.LastIndex(s, "]") }
transport.go 717 addr = addr[:strings.LastIndex(addr, ":")]
726 p = p[:strings.LastIndex(p, ":")]
792 h = h[:strings.LastIndex(h, ":")]
    [all...]
  /prebuilts/go/darwin-x86/src/strings/
strings.go 183 // LastIndex returns the index of the last instance of sep in s, or -1 if sep is not present in s.
184 func LastIndex(s, sep string) int {
  /prebuilts/go/linux-x86/src/bytes/
bytes.go 126 // LastIndex returns the index of the last instance of sep in s, or -1 if sep is not present in s.
127 func LastIndex(s, sep []byte) int {
  /prebuilts/go/linux-x86/src/debug/gosym/
symtab.go 53 r := strings.LastIndex(s.Name, ".")
62 if i := strings.LastIndex(s.Name, "."); i != -1 {
  /prebuilts/go/linux-x86/src/net/http/
client.go 103 func hasPort(s string) bool { return strings.LastIndex(s, ":") > strings.LastIndex(s, "]") }
transport.go 717 addr = addr[:strings.LastIndex(addr, ":")]
726 p = p[:strings.LastIndex(p, ":")]
792 h = h[:strings.LastIndex(h, ":")]
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
ElemNumber.java 822 int lastIndex = ancestors.size() - 1;
824 if (lastIndex >= 0)
826 list = new long[lastIndex + 1];
828 for (int i = lastIndex; i >= 0; i--)
832 list[lastIndex - i] = ctable.countNode(xctxt, this, target);
    [all...]
  /external/freetype/src/cff/
cf2hints.c 315 CF2_UInt i = hintmap->lastIndex;
317 FT_ASSERT( hintmap->lastIndex < CF2_MAX_HINT_EDGES );
328 hintmap->lastIndex = i;
788 hintmap->lastIndex = 0;
    [all...]
  /external/google-breakpad/src/common/mac/
GTMLogger.m 560 ([allowedLevels_ lastIndex] > kGTMLoggerLevelAssert)) {
  /external/pdfium/third_party/freetype/src/cff/
cf2hints.c 315 CF2_UInt i = hintmap->lastIndex;
317 FT_ASSERT( hintmap->lastIndex < CF2_MAX_HINT_EDGES );
328 hintmap->lastIndex = i;
788 hintmap->lastIndex = 0;
    [all...]
  /frameworks/native/libs/binder/
Parcel.cpp 501 int firstIndex = -1, lastIndex = -2;
527 lastIndex = i;
530 int numObjects = lastIndex - firstIndex + 1;
563 for (int i = firstIndex; i <= lastIndex; i++) {
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
re.py 317 action = self.lexicon[m.lastindex-1][1]
  /prebuilts/gdb/linux-x86/lib/python2.7/
re.py 317 action = self.lexicon[m.lastindex-1][1]
  /prebuilts/go/darwin-x86/pkg/bootstrap/src/bootstrap/compile/internal/gc/
lex.go     [all...]
  /prebuilts/go/darwin-x86/pkg/bootstrap/src/bootstrap/internal/obj/
link.go 331 Lastindex int
  /prebuilts/go/darwin-x86/pkg/bootstrap/src/bootstrap/link/internal/ld/
ldpe.go 503 if i := strings.LastIndex(name, "@"); i >= 0 {
  /prebuilts/go/darwin-x86/src/archive/tar/
writer.go 284 i := strings.LastIndex(name[:length], "/")
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
lex.go     [all...]

Completed in 508 milliseconds

1 2 3 4 5 6 78 91011>>