Searched defs:isInt32 (Results 1 - 5 of 5) sorted by relevance

/external/chromium/webkit/glue/
H A Dcpp_variant.h82 bool isInt32() const { return (type == NPVariantType_Int32); } function in class:CppVariant
84 bool isNumber() const { return (isInt32() || isDouble()); }
/external/webkit/Tools/DumpRenderTree/chromium/
H A DCppVariant.h105 bool isInt32() const { return (type == NPVariantType_Int32); } function in class:CppVariant
107 bool isNumber() const { return (isInt32() || isDouble()); }
/external/webkit/Source/JavaScriptCore/parser/
H A DResultType.h56 bool isInt32() function in struct:JSC::ResultType
/external/webkit/Source/JavaScriptCore/runtime/
H A DJSValueInlineMethods.h35 if (isInt32())
48 return isInt32() && asInt32() >= 0;
60 return isInt32() ? asInt32() : asDouble();
75 if (isInt32()) {
284 inline bool JSValue::isInt32() const function in class:JSC::JSValue
316 ASSERT(isInt32());
345 return isInt32() || isDouble();
443 ASSERT(isInt32());
449 return isNumber() && !isInt32();
488 inline bool JSValue::isInt32() cons function in class:JSC::JSValue
[all...]
/external/webkit/Source/JavaScriptCore/jit/
H A DJITOpcodes32_64.cpp1404 Jump isInt32 = branch32(Equal, regT1, TrustedImm32(JSValue::Int32Tag)); local
1406 isInt32.link(this);

Completed in 146 milliseconds