Searched refs:isNaN (Results 1 - 25 of 89) sorted by relevance

1234

/macosx-10.10.1/JavaScriptCore-7600.1.17/tests/mozilla/ecma/GlobalObject/
H A D15.1.2.6.js24 ECMA Section: 15.1.2.6 isNaN( x )
27 the result isNaN and otherwise returns false.
36 var TITLE = "isNaN( x )";
51 array[item++] = new TestCase( SECTION, "isNaN.length", 1, isNaN.length );
52 array[item++] = new TestCase( SECTION, "var MYPROPS=''; for ( var p in isNaN ) { MYPROPS+= p }; MYPROPS", "", eval("var MYPROPS=''; for ( var p in isNaN ) { MYPROPS+= p }; MYPROPS") );
53 array[item++] = new TestCase( SECTION, "isNaN.length = null; isNaN.length", 1, eval("isNaN
[all...]
/macosx-10.10.1/JavaScriptCore-7600.1.17/tests/mozilla/js1_5/Expressions/
H A Dregress-192288.js61 actual = isNaN(f());
66 actual = isNaN(f.apply(this));
71 actual = isNaN(eval("f.apply(this)"));
76 actual = isNaN(Function('return 0/0;')());
81 actual = isNaN(eval("Function('return 0/0;')()"));
/macosx-10.10.1/WebInspectorUI-7600.1.17/UserInterface/Models/
H A DTextRange.js105 console.assert(!isNaN(this._startOffset));
106 console.assert(!isNaN(this._endOffset));
107 if (isNaN(this._startOffset) || isNaN(this._endOffset))
141 console.assert(!isNaN(this._startLine));
142 console.assert(!isNaN(this._startColumn));
143 console.assert(!isNaN(this._endLine));
144 console.assert(!isNaN(this._endColumn));
145 if (isNaN(this._startLine) || isNaN(thi
[all...]
H A DCSSProperty.js149 if (isNaN(this._index)) {
172 if (isNaN(this._index))
185 if (isNaN(this._index)) {
208 if (isNaN(this._index))
221 if (isNaN(this._index)) {
242 if (isNaN(this._index))
255 if (isNaN(this._index)) {
266 return this._enabled && this._ownerStyle && (!isNaN(this._index) || this._ownerStyle.type === WebInspector.CSSStyleDeclaration.Type.Computed);
400 if (!this._ownerStyle || !this._ownerStyle.editable || !isNaN(this._index))
410 if (!this._ownerStyle || !this._ownerStyle.editable || isNaN(thi
[all...]
H A DTimeline.js90 if (isNaN(this._startTime) || record.startTime < this._startTime) {
95 if (isNaN(this._endTime) || this._endTime < record.endTime) {
H A DLayoutTimelineRecord.js110 if (!isNaN(this._x) && !isNaN(this._y))
H A DSourceCodeLocation.js32 console.assert(typeof lineNumber === "number" && !isNaN(lineNumber) && lineNumber >= 0);
33 console.assert(typeof columnNumber === "number" && !isNaN(columnNumber) && columnNumber >= 0);
139 return isNaN(this._mappedLineNumber) ? this._formattedLineNumber : this._mappedLineNumber;
145 return isNaN(this._mappedColumnNumber) ? this._formattedColumnNumber : this._mappedColumnNumber;
199 console.assert(typeof lineNumber === "number" && !isNaN(lineNumber) && lineNumber >= 0);
200 console.assert(typeof columnNumber === "number" && !isNaN(columnNumber) && columnNumber >= 0);
303 console.assert(isNaN(this._mappedLineNumber));
304 console.assert(isNaN(this._mappedColumnNumber));
/macosx-10.10.1/WebInspectorUI-7600.1.17/UserInterface/Views/
H A DLayoutTimelineDataGridNode.js71 return isNaN(value) ? emptyValuePlaceholderString : WebInspector.UIString("%fpx").format(value);
74 return isNaN(value) ? emptyValuePlaceholderString : WebInspector.UIString("%fpx��").format(value);
77 return isNaN(value) ? emptyValuePlaceholderString : Number.secondsToString(value - this._baseStartTime, true);
80 return isNaN(value) ? emptyValuePlaceholderString : Number.secondsToString(value, true);
H A DTimelineRecordBar.js69 if (isNaN(record.startTime))
118 if (!isNaN(inactiveStartTime) && inactiveStartTime + Math.max(inactiveEndTime - inactiveStartTime, minimumDuration) + minimumMargin <= record.startTime) {
126 if (isNaN(inactiveStartTime))
136 if (!isNaN(inactiveStartTime))
152 if (!isNaN(activeStartTime) && (activeStartTime + Math.max(activeEndTime - activeStartTime, minimumDuration) + minimumMargin <= record[startTimeProperty]
153 || (isNaN(record[startTimeProperty]) && !isNaN(activeEndTime)))) {
160 if (isNaN(record[startTimeProperty]))
164 if (isNaN(activeStartTime))
168 if (!isNaN(recor
[all...]
H A DProfileNodeDataGridNode.js119 return isNaN(value) ? emptyValuePlaceholderString : Number.secondsToString(value - this._baseStartTime, true);
124 return isNaN(value) ? emptyValuePlaceholderString : Number.secondsToString(value, true);
H A DScriptTimelineDataGridNode.js118 return isNaN(value) ? emptyValuePlaceholderString : Number.secondsToString(value - this._baseStartTime, true);
123 return isNaN(value) ? emptyValuePlaceholderString : Number.secondsToString(value, true);
/macosx-10.10.1/JavaScriptCore-7600.1.17/tests/mozilla/ecma/Date/
H A D15.9.4.3.js58 if ( isNaN(d.year) && 0 <= ToInteger(d.year) && d.year <= 99 ) {
62 if (isNaN(month) || isNaN(year) || isNaN(date) || isNaN(hours) ||
63 isNaN(minutes) || isNaN(seconds) || isNaN(ms) ) {
/macosx-10.10.1/JavaScriptCore-7600.1.17/tests/mozilla/ecma_2/Statements/
H A Dwhile-002.js75 ( isNaN(object.whileExpression) && isNaN(expression) )
H A Dwhile-003.js76 ( isNaN(object.whileExpression) && isNaN(expression) )
H A Dtry-008.js39 if ( Math.floor(value) != value || isNaN(value) ) {
H A Dtry-001.js45 if ( Math.floor(value) != value || isNaN(value) ) {
/macosx-10.10.1/JavaScriptCore-7600.1.17/API/tests/
H A Dminidom.js35 if (evalA == b || isNaN(evalA) && typeof evalA == 'number' && isNaN(b) && typeof b == 'number')
/macosx-10.10.1/JavaScriptCore-7600.1.17/tests/mozilla/ecma/String/
H A D15.5.4.7-3.js121 if ( isNaN( position ) ) {
156 if ( isNaN(n) ) {
/macosx-10.10.1/WebInspectorUI-7600.1.17/UserInterface/Controllers/
H A DTimelineManager.js142 console.assert(isNaN(endTime));
161 console.assert(isNaN(endTime));
178 console.assert(isNaN(endTime));
189 console.assert(isNaN(endTime));
299 console.assert(isNaN(endTime));
306 console.assert(isNaN(endTime));
313 console.assert(isNaN(endTime));
320 console.assert(isNaN(endTime));
351 if (isNaN(WebInspector.frameResourceManager.mainFrame.loadEventTimestamp))
393 if (!isNaN(WebInspecto
[all...]
/macosx-10.10.1/JavaScriptCore-7600.1.17/tests/mozilla/ecma/
H A Dshell.js584 if ( isNaN( hour ) || isNaN( min ) || isNaN( sec ) || isNaN( ms ) ) {
597 if ( isNaN(year) || isNaN(month) || isNaN(date) ) {
671 if ( isNaN( t ) ) {
683 if ( isNaN( t ) ){
H A Djsref.js541 if ( isNaN( hour ) || isNaN( min ) || isNaN( sec ) || isNaN( ms ) ) {
554 if ( isNaN(year) || isNaN(month) || isNaN(date) ) {
628 if ( isNaN( t ) ) {
640 if ( isNaN( t ) ){
/macosx-10.10.1/JavaScriptCore-7600.1.17/tests/mozilla/ecma_3/Date/
H A Dshell.js533 if ( isNaN(hour) || isNaN(min) || isNaN(sec) || isNaN(ms) ){return Number.NaN;}
546 if ( isNaN(year) || isNaN(month) || isNaN(date)) {return Number.NaN;}
627 if ( isNaN( t )) {return ( Number.NaN);}
638 if ( isNaN( t )) {return ( Number.NaN);}
/macosx-10.10.1/JavaScriptCore-7600.1.17/tests/mozilla/js1_5/Regress/
H A Dregress-216320.js100 if(month>12||day>31||month<=0||day<=0||(isNaN(month)==true)||(isNaN(day)==true)||(isNaN(year)==true)){
137 if(month>12||day>31||month<=0||day<=0||(isNaN(month)==true)||(isNaN(day)==true)||(isNaN(year)==true)){
215 if(smon>12||sdy>31||smon<=0||sdy<=0||(isNaN(smon)==true)||(isNaN(sdy)==true)||(isNaN(syr)==true)){
220 if(emon>12||edy>31||emon<=0||edy<=0||(isNaN(emo
[all...]
/macosx-10.10.1/JavaScriptCore-7600.1.17/tests/mozilla/ecma/Array/
H A D15.4.1.1.js50 if( isNaN(n) || n == 0 || n == Number.POSITIVE_INFINITY ||
/macosx-10.10.1/JavaScriptCore-7600.1.17/tests/mozilla/ecma/Statements/
H A D12.10-1.js149 this.isNaN = new Function( "return this.value" );

Completed in 675 milliseconds

1234