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

  /prebuilts/misc/common/swig/include/2.0.11/lua/
wchar.i 33 $1 = str2wstr(lua_tostring( L, $input ),lua_rawlen( L, $input ));
std_string.i 46 $1.assign(lua_tostring(L,$input),lua_rawlen(L,$input));
52 %{$1.assign(lua_tostring(L,$input),lua_rawlen(L,$input));%}
58 %{temp.assign(lua_tostring(L,$input),lua_rawlen(L,$input)); $1=&temp;%}
luatypemaps.swg 301 $1 = SWIG_lua_isnilstring(L,$input) && (lua_rawlen(L,$input)==1);
luarun.swg 54 this function was again renamed, to "lua_rawlen" (to emphasize that
57 to "lua_rawlen", and we add our own defines of that here for older
60 # define lua_rawlen lua_strlen
62 # define lua_rawlen lua_objlen
    [all...]
  /external/chromium_org/third_party/skia/third_party/lua/src/
luaconf.h 293 #define lua_strlen(L,i) lua_rawlen(L, (i))
295 #define lua_objlen(L,i) lua_rawlen(L, (i))
lbaselib.c 137 lua_pushinteger(L, lua_rawlen(L, 1));
lua.c 71 if (lua_rawlen(L,idx) > 0) /* non-empty line? */ \
lua.h 173 LUA_API size_t (lua_rawlen) (lua_State *L, int idx);
liolib.c 378 return (lua_rawlen(L, -1) > 0); /* check whether read something */
lauxlib.c 537 ref = (int)lua_rawlen(L, t) + 1; /* get a new reference */
lapi.c 407 LUA_API size_t lua_rawlen (lua_State *L, int idx) { function

Completed in 587 milliseconds