HomeSort by relevance Sort by last modified time
    Searched refs:Number (Results 51 - 75 of 441) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/webkit/JavaScriptCore/tests/mozilla/ecma/Math/
15.8.2.18.js 53 array[item++] = new TestCase( SECTION, "Math.tan()", Number.NaN, Math.tan() );
54 array[item++] = new TestCase( SECTION, "Math.tan(void 0)", Number.NaN, Math.tan(void 0));
58 array[item++] = new TestCase( SECTION, "Math.tan(NaN)", Number.NaN, Math.tan(Number.NaN) );
61 array[item++] = new TestCase( SECTION, "Math.tan(Infinity)", Number.NaN, Math.tan(Number.POSITIVE_INFINITY));
62 array[item++] = new TestCase( SECTION, "Math.tan(-Infinity)", Number.NaN, Math.tan(Number.NEGATIVE_INFINITY));
15.8.2.2.js 51 array[item++] = new TestCase( SECTION, "Math.acos(void 0)", Number.NaN, Math.acos(void 0) );
52 array[item++] = new TestCase( SECTION, "Math.acos()", Number.NaN, Math.acos() );
54 array[item++] = new TestCase( SECTION, "Math.acos(NaN)", Number.NaN, Math.acos(Number.NaN) );
56 array[item++] = new TestCase( SECTION, "Math.acos(a string)", Number.NaN, Math.acos("a string") );
61 array[item++] = new TestCase( SECTION, "Math.acos(1.00000001)", Number.NaN, Math.acos(1.00000001) );
62 array[item++] = new TestCase( SECTION, "Math.acos(11.00000001)", Number.NaN, Math.acos(-1.00000001) );
15.8.2.3.js 51 array[item++] = new TestCase( SECTION, "Math.asin()", Number.NaN, Math.asin() );
52 array[item++] = new TestCase( SECTION, "Math.asin(void 0)", Number.NaN, Math.asin(void 0) );
54 array[item++] = new TestCase( SECTION, "Math.asin(NaN)", Number.NaN, Math.asin(Number.NaN) );
56 array[item++] = new TestCase( SECTION, "Math.asin('string')", Number.NaN, Math.asin("string") );
63 array[item++] = new TestCase( SECTION, "Math.asin(1.000001)", Number.NaN, Math.asin(1.000001) );
64 array[item++] = new TestCase( SECTION, "Math.asin(-1.000001)", Number.NaN, Math.asin(-1.000001) );
15.8.2.4.js 55 array[item++] = new TestCase( SECTION, "Math.atan()", Number.NaN, Math.atan() );
56 array[item++] = new TestCase( SECTION, "Math.atan(void 0)", Number.NaN, Math.atan(void 0) );
58 array[item++] = new TestCase( SECTION, "Math.atan(NaN)", Number.NaN, Math.atan(Number.NaN) );
60 array[item++] = new TestCase( SECTION, "Math.atan('a string')", Number.NaN, Math.atan("a string") );
70 array[item++] = new TestCase( SECTION, "Math.atan(Infinity)", Math.PI/2, Math.atan(Number.POSITIVE_INFINITY) );
71 array[item++] = new TestCase( SECTION, "Math.atan(-Infinity)", -Math.PI/2, Math.atan(Number.NEGATIVE_INFINITY) );
15.8.2.17.js 52 array[item++] = new TestCase( SECTION, "Math.sqrt()", Number.NaN, Math.sqrt() );
53 array[item++] = new TestCase( SECTION, "Math.sqrt(void 0)", Number.NaN, Math.sqrt(void 0) );
59 array[item++] = new TestCase( SECTION, "Math.sqrt(NaN)", Number.NaN, Math.sqrt(Number.NaN) );
60 array[item++] = new TestCase( SECTION, "Math.sqrt(-Infinity)", Number.NaN, Math.sqrt(Number.NEGATIVE_INFINITY));
61 array[item++] = new TestCase( SECTION, "Math.sqrt(-1)", Number.NaN, Math.sqrt(-1));
62 array[item++] = new TestCase( SECTION, "Math.sqrt(-0.5)", Number.NaN, Math.sqrt(-0.5));
66 array[item++] = new TestCase( SECTION, "Math.sqrt(Infinity)", Number.POSITIVE_INFINITY, Math.sqrt(Number.POSITIVE_INFINITY))
    [all...]
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/String/
15.5.4.5-5.js 25 Description: Returns a number (a nonnegative integer less than 2^16)
28 at that position, the number is NaN.
35 3. Compute the number of characters in result(1).
38 5. Return a value of Number type, of positive sign, whose
77 array[item++] = new TestCase( SECTION, "x = new Boolean(true); x.charCodeAt=String.prototype.charCodeAt;x.charCodeAt(4)", Number.NaN, eval("x = new Boolean(true); x.charCodeAt=String.prototype.charCodeAt;x.charCodeAt(4)") );
78 array[item++] = new TestCase( SECTION, "x = new Boolean(true); x.charCodeAt=String.prototype.charCodeAt;x.charCodeAt(-1)", Number.NaN, eval("x = new Boolean(true); x.charCodeAt=String.prototype.charCodeAt;x.charCodeAt(-1)") );
83 array[item++] = new TestCase( SECTION, "x = new String(); x.charCodeAt(0)", Number.NaN, eval("x=new String();x.charCodeAt(0)") );
84 array[item++] = new TestCase( SECTION, "x = new String(); x.charCodeAt(1)", Number.NaN, eval("x=new String();x.charCodeAt(1)") );
85 array[item++] = new TestCase( SECTION, "x = new String(); x.charCodeAt(-1)", Number.NaN, eval("x=new String();x.charCodeAt(-1)") );
87 array[item++] = new TestCase( SECTION, "x = new String(); x.charCodeAt(NaN)", Number.NaN, eval("x=new String();x.charCodeAt(Number.NaN)") )
    [all...]
15.5.4.5-2.js 25 Description: Returns a number (a nonnegative integer less than 2^16)
28 at that position, the number is NaN.
35 3. Compute the number of characters in result(1).
38 5. Return a value of Number type, of positive sign, whose
75 array[item++] = new TestCase( SECTION, "x = new Boolean(true); x.charCodeAt=String.prototype.charCodeAt;x.charCodeAt(4)", Number.NaN, eval("x = new Boolean(true); x.charCodeAt=String.prototype.charCodeAt;x.charCodeAt(4)") );
76 array[item++] = new TestCase( SECTION, "x = new Boolean(true); x.charCodeAt=String.prototype.charCodeAt;x.charCodeAt(-1)", Number.NaN, eval("x = new Boolean(true); x.charCodeAt=String.prototype.charCodeAt;x.charCodeAt(-1)") );
81 array[item++] = new TestCase( SECTION, "x = new String(); x.charCodeAt(0)", Number.NaN, eval("x=new String();x.charCodeAt(0)") );
82 array[item++] = new TestCase( SECTION, "x = new String(); x.charCodeAt(1)", Number.NaN, eval("x=new String();x.charCodeAt(1)") );
83 array[item++] = new TestCase( SECTION, "x = new String(); x.charCodeAt(-1)", Number.NaN, eval("x=new String();x.charCodeAt(-1)") );
85 array[item++] = new TestCase( SECTION, "x = new String(); x.charCodeAt(NaN)", Number.NaN, eval("x=new String();x.charCodeAt(Number.NaN)") )
    [all...]
  /frameworks/base/media/libstagefright/codecs/mp3dec/src/
pvmp3_stereo_proc.h 100 int32 Number);
105 int32 Number);
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/Expressions/
11.4.3.js 29 Number "number"
58 testcases[testcases.length] = new TestCase( SECTION, "typeof(NaN)", "number", typeof(Number.NaN) );
59 testcases[testcases.length] = new TestCase( SECTION, "typeof(Infinity)", "number", typeof(Number.POSITIVE_INFINITY) );
60 testcases[testcases.length] = new TestCase( SECTION, "typeof(-Infinity)", "number", typeof(Number.NEGATIVE_INFINITY) );
61 testcases[testcases.length] = new TestCase( SECTION, "typeof(Math.PI)", "number", typeof(Math.PI) );
62 testcases[testcases.length] = new TestCase( SECTION, "typeof(0)", "number", typeof(0) )
    [all...]
11.4.2.js 47 array[item++] = new TestCase( SECTION, "void(Number.NaN)", void 0, void(Number.NaN) );
48 array[item++] = new TestCase( SECTION, "void(Number.POSITIVE_INFINITY)", void 0, void(Number.POSITIVE_INFINITY) );
52 array[item++] = new TestCase( SECTION, "void(Number.NEGATIVE_INFINITY)", void 0, void(Number.NEGATIVE_INFINITY) );
59 array[item++] = new TestCase( SECTION, "void Number.NaN", void 0, void Number.NaN );
60 array[item++] = new TestCase( SECTION, "void Number.POSITIVE_INFINITY", void 0, void Number.POSITIVE_INFINITY )
    [all...]
11.2.1-5.js 80 PROPERTY[p++] = new Property( new Number(NaN), NaN, "NaN", NaN );
81 PROPERTY[p++] = new Property( new Number(3), 3, "3", 3 );
116 this.numberValue = Number(value);
119 function Property( object, value, string, number ) {
122 this.number = Number(value);
  /cts/tools/dasm/src/dasm/tokens/
variant_token.java 26 public variant_token(int term_num, Number v) {
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/Statements/
12.10-1.js 86 "with( new Number() ) { this +'' }",
88 eval("with( new Number() ) { this +'' }") );
108 Number.NaN,
114 Number.POSITIVE_INFINITY,
121 Number.POSITIVE_INFINITY,
129 Number.POSITIVE_INFINITY,
  /frameworks/base/core/java/android/database/
AbstractWindowedCursor.java 73 Number value = (Number)getUpdatedField(columnIndex);
88 Number value = (Number)getUpdatedField(columnIndex);
103 Number value = (Number)getUpdatedField(columnIndex);
118 Number value = (Number)getUpdatedField(columnIndex);
133 Number value = (Number)getUpdatedField(columnIndex)
    [all...]
MatrixCursor.java 238 if (value instanceof Number) return ((Number) value).shortValue();
246 if (value instanceof Number) return ((Number) value).intValue();
254 if (value instanceof Number) return ((Number) value).longValue();
262 if (value instanceof Number) return ((Number) value).floatValue();
270 if (value instanceof Number) return ((Number) value).doubleValue()
    [all...]
  /frameworks/ex/common/java/com/android/common/
ArrayListCursor.java 135 Number num = (Number) mRows[mPos].get(columnIndex);
141 Number num = (Number) mRows[mPos].get(columnIndex);
147 Number num = (Number) mRows[mPos].get(columnIndex);
153 Number num = (Number) mRows[mPos].get(columnIndex);
159 Number num = (Number) mRows[mPos].get(columnIndex)
    [all...]
  /external/v8/test/mjsunit/
number-limits.js 28 // Ensure that Number.MAX_VALUE and Number.MIN_VALUE are extreme.
32 var mulAboveMax = Number.MAX_VALUE * (1 + eps);
33 var addAboveMax = Number.MAX_VALUE + 1/eps;
34 var mulBelowMin = Number.MIN_VALUE * (1 - eps);
35 var addBelowMin = Number.MIN_VALUE - eps;
36 assertTrue(mulAboveMax == Number.MAX_VALUE ||
38 assertTrue(addAboveMax == Number.MAX_VALUE ||
40 assertTrue(mulBelowMin == Number.MIN_VALUE ||
42 assertTrue(addBelowMin == Number.MIN_VALUE |
    [all...]
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/ObjectObjects/
15.2.1.1.js 39 number Create a new Number object whose default
40 value is the value of the number.
85 array[item++] = new TestCase( SECTION, "var MYOB = Object(0); MYOB.toString = Object.prototype.toString; MYOB.toString()", "[object Number]", eval("var MYOB = Object(0); MYOB.toString = Object.prototype.toString; MYOB.toString()") );
89 array[item++] = new TestCase( SECTION, "var MYOB = Object(-0); MYOB.toString = Object.prototype.toString; MYOB.toString()", "[object Number]", eval("var MYOB = Object(-0); MYOB.toString = Object.prototype.toString; MYOB.toString()") );
93 array[item++] = new TestCase( SECTION, "var MYOB = Object(1); MYOB.toString = Object.prototype.toString; MYOB.toString()", "[object Number]", eval("var MYOB = Object(1); MYOB.toString = Object.prototype.toString; MYOB.toString()") );
97 array[item++] = new TestCase( SECTION, "var MYOB = Object(-1); MYOB.toString = Object.prototype.toString; MYOB.toString()", "[object Number]", eval("var MYOB = Object(-1); MYOB.toString = Object.prototype.toString; MYOB.toString()") );
99 array[item++] = new TestCase( SECTION, "Object(Number.MAX_VALUE).valueOf()", 1.7976931348623157e308, (Object(Number.MAX_VALUE)).valueOf() );
100 array[item++] = new TestCase( SECTION, "typeof Object(Number.MAX_VALUE)", "object", typeof Object(Number.MAX_VALUE) )
    [all...]
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/GlobalObject/
15.1.1.1.js 47 array[array.length] = new TestCase( SECTION, "NaN", Number.NaN, NaN );
48 array[array.length] = new TestCase( SECTION, "this.NaN", Number.NaN, this.NaN );
49 array[array.length] = new TestCase( SECTION, "typeof NaN", "number", typeof NaN );
15.1.1.2.js 47 array[item++] = new TestCase( SECTION, "Infinity", Number.POSITIVE_INFINITY, Infinity );
48 array[item++] = new TestCase( SECTION, "this.Infinity", Number.POSITIVE_INFINITY, this.Infinity );
49 array[item++] = new TestCase( SECTION, "typeof Infinity", "number", typeof Infinity );
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/Number/
15.7.3.js 24 15.7.3 Properties of the Number Constructor
27 of the Number constructor is the Function prototype
28 object. The Number constructor also has the internal
41 var TITLE = "Properties of the Number Constructor";
51 array[item++] = new TestCase(SECTION, "Number.__proto__", Function.prototype, Number.__proto__ );
52 array[item++] = new TestCase(SECTION, "Number.length", 1, Number.length );
15.7.4.1.js 24 ECMA Section: 15.7.4.1.1 Number.prototype.constructor
26 Number.prototype.constructor is the built-in Number constructor.
35 var TITLE = "Number.prototype.constructor";
47 "Number.prototype.constructor",
48 Number,
49 Number.prototype.constructor );
15.7.4.js 28 The Number prototype object is itself a Number object (its [[Class]] is
29 "Number") whose value is +0.
31 The value of the internal [[Prototype]] property of the Number prototype
34 In following descriptions of functions that are properties of the Number
35 prototype object, the phrase "this Number object" refers to the object
38 [[Class]] property is "Number". Also, the phrase "this number value" refers
39 to the number value represented by this Number object, that is, the valu
    [all...]
  /external/webkit/JavaScriptCore/tests/mozilla/ecma_3/Expressions/
11.6.1-1.js 87 actual = sumThese(new Number(1), new Number(1), 'a');
92 actual = sumThese('a', new Number(1), new Number(1));
  /external/webkit/WebCore/bindings/v8/custom/
V8CoordinatesCustom.cpp 42 return v8::Number::New(imp->altitude());
52 return v8::Number::New(imp->altitudeAccuracy());
62 return v8::Number::New(imp->heading());
72 return v8::Number::New(imp->speed());

Completed in 624 milliseconds

1 23 4 5 6 7 8 91011>>