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

  /cts/tools/dasm/src/dasm/
Utils.java 88 int mpos = 0, sigpos = 0; local
103 mpos = i;
108 result[0] = signature.substring(0, mpos);
109 result[1] = signature.substring(mpos + 1, sigpos);
  /external/webkit/Source/JavaScriptCore/runtime/
StringPrototype.cpp 725 int mpos = reg->match(s, pos, &ovector); local
726 if (mpos < 0)
729 pos = mpos + (mlen == 0 ? 1 : mlen);
730 if (static_cast<unsigned>(mpos) != p0 || mlen) {
731 result->put(exec, i++, jsSubstring(exec, s, p0, mpos - p0));
732 p0 = mpos + mlen;
    [all...]

Completed in 59 milliseconds