/external/v8/src/ |
math.js | 47 if (!IS_NUMBER(x)) x = ToNumber(x); 53 if (!IS_NUMBER(x)) x = ToNumber(x); 59 if (!IS_NUMBER(x)) x = ToNumber(x); 65 if (!IS_NUMBER(x)) x = ToNumber(x); 73 if (!IS_NUMBER(y)) y = ToNumber(y); 74 if (!IS_NUMBER(x)) x = ToNumber(x); 80 if (!IS_NUMBER(x)) x = ToNumber(x); 86 if (!IS_NUMBER(x)) x = ToNumber(x); 92 if (!IS_NUMBER(x)) x = ToNumber(x); 98 if (!IS_NUMBER(x)) x = ToNumber(x) [all...] |
runtime.js | 62 if (IS_NUMBER(x)) { 67 if (IS_NUMBER(y)) return %NumberEquals(%ToNumber(x), y); 102 if (IS_NUMBER(this)) { 103 if (!IS_NUMBER(x)) return 1; // not equal 124 } else if (IS_NUMBER(this)) { 125 if (IS_NUMBER(x)) return %NumberCompare(this, x, ncr); 157 if (IS_NUMBER(this) && IS_NUMBER(x)) return %NumberAdd(this, x); 180 y = IS_NUMBER(y) 196 x = IS_NUMBER(x [all...] |
macros.py | 84 macro IS_NUMBER(arg) = (typeof(arg) === 'number');
|
json.js | 243 if (IS_NUMBER(space)) {
|
v8natives.js | 98 if (IS_NUMBER(string) && 800 if (!IS_NUMBER(this)) { 831 if (!IS_NUMBER(this) && !IS_NUMBER_WRAPPER(this))
|
register-allocator.h | 106 bool is_number() { function in class:v8::internal::BASE_EMBEDDED
|
date.js | 444 if (IS_NUMBER(year)) { [all...] |
mirror-debugger.js | 77 } else if (IS_NUMBER(value)) { [all...] |
/system/core/sh/ |
mystring.c | 51 * is_number(s) Return true if s is a string of digits. 114 if (! is_number(s)) 126 is_number(const char *p) function
|
mystring.h | 42 int is_number(const char *);
|
trap.c | 107 if (is_number(p)) 186 if (is_number(*ap))
|
histedit.c | 476 return (!is_number(s)); 495 if (is_number(s)) {
|
jobs.c | 705 if (is_number(name + 1)) { 748 } else if (is_number(name)) {
|
/external/openssl/crypto/conf/ |
keysets.pl | 140 #define IS_NUMBER(c,a) (KEYTYPES(c)[(a)&0xff]&CONF_NUMBER) 155 #define IS_NUMBER(c,a) (KEYTYPES(c)[os_toascii[a]&0xff]&CONF_NUMBER)
|
conf_def.h | 86 #define IS_NUMBER(c,a) (KEYTYPES(c)[(a)&0xff]&CONF_NUMBER) 101 #define IS_NUMBER(c,a) (KEYTYPES(c)[os_toascii[a]&0xff]&CONF_NUMBER)
|
conf.h | 98 int (*is_number)(const CONF *conf, char c); member in struct:conf_method_st
|
conf_api.c | 176 if (conf->meth->is_number(conf, *str))
|
conf_lib.c | 350 for (*result = 0;conf->meth->is_number(conf, *str);)
|
conf_def.c | 743 return IS_NUMBER(conf,c);
|
/external/openssl/include/openssl/ |
conf.h | 98 int (*is_number)(const CONF *conf, char c); member in struct:conf_method_st
|
/bionic/libc/kernel/tools/ |
cpp.py | 1065 def is_number(self,i): member in class:CppExpr [all...] |
/external/libpng/contrib/gregbook/ |
rpng2-x.c | 174 static int is_number (char *p); 427 if (!argv[1] || !is_number(argv[1])) 2058 static int is_number(char *p) function [all...] |
/external/webkit/JavaScriptCore/bytecode/ |
CodeBlock.cpp | 663 printUnaryOp(exec, location, it, "is_number"); [all...] |
/external/webkit/JavaScriptCore/interpreter/ |
Interpreter.cpp | [all...] |
/external/v8/src/ia32/ |
codegen-ia32.cc | 737 if (value.is_number()) { [all...] |