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

  /bionic/libc/tools/zoneinfo/
ZoneCompactor.java 52 byte[] nret = new byte[ret.length + nbytes];
53 System.arraycopy(ret, 0, nret, 0, ret.length);
54 System.arraycopy(buf, 0, nret, ret.length, nbytes);
55 ret = nret;
  /frameworks/base/core/java/android/text/
SpannableStringInternal.java 282 Object[] nret = (Object[]) Array.newInstance(kind, count); local
283 System.arraycopy(ret, 0, nret, 0, count);
284 return (T[]) nret;
SpannableStringBuilder.java 862 T[] nret = (T[]) Array.newInstance(kind, count); local
863 System.arraycopy(ret, 0, nret, 0, count);
864 return nret;
    [all...]
  /external/chromium_org/third_party/skia/third_party/lua/src/
lcode.h 70 LUAI_FUNC void luaK_ret (FuncState *fs, int first, int nret);
lparser.c 1500 int first, nret; \/* registers with returned values *\/ local
    [all...]
lcode.c 69 void luaK_ret (FuncState *fs, int first, int nret) {
70 luaK_codeABC(fs, OP_RETURN, first, nret+1, 0);

Completed in 320 milliseconds