HomeSort by relevance Sort by last modified time
    Searched defs:Number (Results 1 - 25 of 33) sorted by null

1 2

  /external/v8/test/mjsunit/regress/
regress-877615.js 28 Number.prototype.toLocaleString = function() { return 'invalid'};
31 Number.prototype.toLocaleString = 'invalid';
34 Number.prototype.toString = function() { return 'invalid' };
regress-1062422.js 29 Number.prototype.__proto__ = String.prototype;
regress-900966.js 33 Number.prototype[11] = 'y';
  /external/v8/test/mjsunit/
fun-as-prototype.js 30 Number.prototype.__proto__ = Funky;
35 Number.prototype.__proto__ = [1, 2, 3];
value-wrapper.js 96 assertEquals('[object Number]', (42).ObjectToString());
97 assertEquals('[object Number]', (3.14).ObjectToString());
106 Number.prototype.TypeOfThis = TypeOfThis;
108 Number.prototype[7] = TypeOfThis;
112 Number.prototype.ObjectValueOf = Object.prototype.valueOf;
116 Number.prototype.ObjectToString = Object.prototype.toString;
123 Number.prototype.TypeOfThis = 'x';
125 Number.prototype[7] = 'x';
129 Number.prototype.TypeOfThis = TypeOfThis;
131 Number.prototype[7] = TypeOfThis
    [all...]
value-callic-prototype-change.js 54 Number.prototype.toString = function() { return 0; };
65 Number.prototype.toString = function() { return 42; };
stack-traces.js 67 Number.prototype.causeError = function () { FAIL; };
193 testTrace("testValue", testValue, ["at Number.causeError"]);
  /external/webkit/JavaScriptCore/tests/mozilla/ecma_2/String/
match-004.js 49 Number.prototype.match = String.prototype.match;
split-002.js 58 Number.prototype.split = String.prototype.split;
60 CompareSplit( new Number(100111122133144155), 1 );
61 CompareSplitWithLimit(new Number(100111122133144155), 1, 1 );
63 CompareSplitWithLimit(new Number(100111122133144155), 1, 2 );
64 CompareSplitWithLimit(new Number(100111122133144155), 1, 0 );
65 CompareSplitWithLimit(new Number(100111122133144155), 1, 100 );
66 CompareSplitWithLimit(new Number(100111122133144155), 1, void 0 );
67 CompareSplitWithLimit(new Number(100111122133144155), 1, Math.pow(2,32)-1 );
68 CompareSplitWithLimit(new Number(100111122133144155), 1, "boo" );
69 CompareSplitWithLimit(new Number(100111122133144155), 1, -(Math.pow(2,32)-1) )
    [all...]
  /external/webkit/JavaScriptCore/tests/mozilla/js1_5/Expressions/
regress-96526-argsub.js 58 Number.prototype.magic=42;
regress-96526-delelem.js 58 Number.prototype.magic=42;
regress-96526-noargsub.js 58 Number.prototype.magic=42;
  /external/v8/src/arm/
constants-arm.cc 90 int Registers::Number(const char* name) {
  /libcore/luni/src/main/java/java/lang/
Number.java 26 public abstract class Number implements java.io.Serializable {
33 public Number() {
  /libcore/luni/src/main/java/org/apache/xpath/operations/
Number.java 19 * $Id: Number.java 468655 2006-10-28 07:12:06Z minchau $
28 * The 'number()' operation expression executer.
30 public class Number extends UnaryOperation
  /external/webkit/SunSpider/tests/sunspider-0.9/
string-tagcloud.js 59 case 'number':
93 Number.prototype.toJSONString = function () {
124 case 'number':
151 case 'number':
    [all...]
  /external/webkit/SunSpider/tests/sunspider-0.9.1/
string-tagcloud.js 59 case 'number':
93 Number.prototype.toJSONString = function () {
124 case 'number':
151 case 'number':
    [all...]
  /external/v8/src/mips/
constants-mips.cc 80 int Registers::Number(const char* name) {
124 int FPURegister::Number(const char* name) {
  /external/webkit/WebCore/xml/
XPathPredicate.cpp 44 Number::Number(double value)
49 Value Number::evaluate() const
124 // If one object to be compared is a node-set and the other is a number, then the comparison will be true
125 // if and only if there is a node in the node-set such that the result of performing the comparison on the number
126 // to be compared and on the result of converting the string-value of that node to a number using the number function is true.
274 return EqTestOp(EqTestOp::OP_EQ, createFunction("position"), new Number(result.toNumber())).evaluate().toBoolean();
XPathPredicate.h 39 class Number : public Expression {
41 Number(double);
  /external/webkit/JavaScriptCore/wtf/
TCPageMap.h 41 // The BITS parameter should be the number of bits required to hold
42 // a page number. E.g., with 32 bit pointers and 4K pages (i.e.,
66 typedef uintptr_t Number;
75 bool Ensure(Number x, size_t n) {
87 void* get(Number k) const {
95 void set(Number k, void* v) {
120 typedef uintptr_t Number;
127 void* get(Number k) const {
129 const Number i1 = k >> LEAF_BITS;
130 const Number i2 = k & (LEAF_LENGTH-1)
    [all...]
  /external/webkit/WebKit/chromium/public/
WebInputElement.h 73 Number,
  /cts/tools/signature-tools/test/signature/comparator/
ClassCompareTest.java 205 static class A0<E extends Number> extends B<E> implements I<E>{}
206 static class A1<S extends Number> extends B<S>{}
238 CompilationUnit Number = new CompilationUnit("a.Number",
240 "public class Number implements java.io.Serializable{}");
243 "public interface I<T extends Number & java.io.Serializable>{}");
246 "public interface I<T extends Number>{}");
247 IApi fromApi = convert(I0,Number);
248 IApi toApi = convert(I1,Number);
255 CompilationUnit Number = new CompilationUnit("a.Number",
    [all...]
  /external/v8/src/
unicode.h 161 // The number of characters left in the current buffer
226 struct Number {
objects-inl.h 666 double Object::Number() {
1197 // Make sure to adjust for the number of in-object properties. These
    [all...]

Completed in 303 milliseconds

1 2