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

  /external/srec/srec/Semproc/include/
SR_SemanticProcessorImpl.h 82 SREC_SEMPROC_API PINLINE ESR_BOOL isnum(const LCHAR* str);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_binop.py 16 def isnum(x): function
93 if isnum(other):
106 if isnum(other):
117 if isnum(other):
127 if isnum(other):
139 if isnum(other):
151 if isnum(other):
202 if isnum(other):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_binop.py 16 def isnum(x): function
93 if isnum(other):
106 if isnum(other):
117 if isnum(other):
127 if isnum(other):
139 if isnum(other):
151 if isnum(other):
202 if isnum(other):
  /external/chromium_org/third_party/skia/third_party/lua/src/
lauxlib.c 376 int isnum; local
377 lua_Number d = lua_tonumberx(L, narg, &isnum);
378 if (!isnum)
390 int isnum; local
391 lua_Integer d = lua_tointegerx(L, narg, &isnum);
392 if (!isnum)
399 int isnum; local
400 lua_Unsigned d = lua_tounsignedx(L, narg, &isnum);
401 if (!isnum)
727 int isnum; local
    [all...]
loslib.c 158 int res, isnum; local
160 res = (int)lua_tointegerx(L, -1, &isnum);
161 if (!isnum) {
lapi.c 335 LUA_API lua_Number lua_tonumberx (lua_State *L, int idx, int *isnum) {
339 if (isnum) *isnum = 1;
343 if (isnum) *isnum = 0;
349 LUA_API lua_Integer lua_tointegerx (lua_State *L, int idx, int *isnum) {
356 if (isnum) *isnum = 1;
360 if (isnum) *isnum = 0
    [all...]
lbaselib.c 50 int isnum; local
51 lua_Number n = lua_tonumberx(L, 1, &isnum);
52 if (isnum) {
lua.h 168 LUA_API lua_Number (lua_tonumberx) (lua_State *L, int idx, int *isnum);
169 LUA_API lua_Integer (lua_tointegerx) (lua_State *L, int idx, int *isnum);
170 LUA_API lua_Unsigned (lua_tounsignedx) (lua_State *L, int idx, int *isnum);
lparser.c     [all...]
  /ndk/sources/host-tools/nawk-20071023/
awk.h 193 #define isnum(n) ((n)->tval & NUM) macro
tran.c 353 if (!isnum(vp)) { /* not a number */
run.c 916 if (isnum(x)) {
1099 else if (isnum(y))
    [all...]
  /external/ipsec-tools/src/racoon/
cfparse.y     [all...]
  /external/valgrind/main/perf/
tinycc.c 6997 static inline int isnum(int c) function
    [all...]
  /external/eigen/unsupported/test/mpreal/
mpreal.h 480 friend bool isnum (const mpreal& v);
    [all...]

Completed in 329 milliseconds