OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:infinity
(Results
151 - 175
of
681
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/llvm/test/Transforms/InstCombine/
fcmp-special.ll
3
;
Infinity
19
; Negative
infinity
/external/protobuf/src/google/protobuf/compiler/cpp/
cpp_helpers.cc
255
if (value == numeric_limits<double>::
infinity
()) {
256
return "::google::protobuf::internal::
Infinity
()";
257
} else if (value == -numeric_limits<double>::
infinity
()) {
258
return "-::google::protobuf::internal::
Infinity
()";
268
if (value == numeric_limits<float>::
infinity
()) {
269
return "static_cast<float>(::google::protobuf::internal::
Infinity
())";
270
} else if (value == -numeric_limits<float>::
infinity
()) {
271
return "static_cast<float>(-::google::protobuf::internal::
Infinity
())";
/external/webkit/LayoutTests/fast/js/resources/
standalone-pre.js
43
// -
Infinity
instead of
Infinity
select-options-remove.js
48
debug("1.7 Remove (negative
infinity
) from empty Options");
62
debug("1.9 Remove (positive
infinity
) from empty Options");
166
debug("2.8 Remove (negative
infinity
) from non-empty Options");
182
debug("2.10 Remove (positive
infinity
) from non-empty Options");
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Array/
15.4.4.2.js
53
array[item++] = new TestCase( SECTION, "(new Array( Number.NaN, Number.POSITIVE_INFINITY, Number.NEGATIVE_INFINITY)).toString()", "NaN,
Infinity
,-
Infinity
", (new Array( Number.NaN, Number.POSITIVE_INFINITY, Number.NEGATIVE_INFINITY)).toString() );
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/ExecutionContexts/
10.1.5-1.js
79
if (
Infinity
== null ) {
80
testcases[0].reason += "
Infinity
== null";
10.1.5-2.js
68
if (
Infinity
== null ) {
69
testcases[0].reason += "
Infinity
== null";
10.1.5-3.js
81
if (
Infinity
== null ) {
82
testcases[0].reason += "
Infinity
== null";
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Math/
15.8.2.16.js
56
array[item++] = new TestCase( SECTION, "Math.sin(
Infinity
)", Number.NaN, Math.sin(Number.POSITIVE_INFINITY));
57
array[item++] = new TestCase( SECTION, "Math.sin(-
Infinity
)", Number.NaN, Math.sin(Number.NEGATIVE_INFINITY));
15.8.2.7.js
54
array[item++] = new TestCase( SECTION, "Math.cos('
Infinity
')", Number.NaN, Math.cos("
Infinity
") );
60
array[item++] = new TestCase( SECTION, "Math.cos(
Infinity
)", Number.NaN, Math.cos(Number.POSITIVE_INFINITY) );
61
array[item++] = new TestCase( SECTION, "Math.cos(-
Infinity
)", Number.NaN, Math.cos(Number.NEGATIVE_INFINITY) );
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Number/
15.7.1.js
68
array[item++] = new TestCase(SECTION, "Number(
Infinity
)", Number.POSITIVE_INFINITY, Number("
Infinity
") );
15.7.4.3-3-n.js
49
array[item++] = new TestCase("15.7.4.1", "v = Number.prototype.valueOf; o = new String('
Infinity
'); o.valueOf = v; o.valueOf()", "error", "v = Number.prototype.valueOf; o = new String('
Infinity
'); o.valueOf = v; o.valueOf()" );
15.7.3.5-1.js
46
array[item++] = new TestCase(SECTION, "Number.NEGATIVE_INFINITY", -
Infinity
, Number.NEGATIVE_INFINITY );
15.7.3.5-3.js
51
-
Infinity
,
15.7.3.6-1.js
46
array[item++] = new TestCase( SECTION, "Number.POSITIVE_INFINITY",
Infinity
, Number.POSITIVE_INFINITY );
/external/webkit/Source/WebCore/xml/
XPathValue.cpp
133
return signbit(m_number) ? "-
Infinity
" : "
Infinity
";
/external/webkit/Tools/Scripts/webkitpy/thirdparty/simplejson/
encoder.py
26
# assume this produces an
infinity
on all machines (probably not guaranteed)
27
INFINITY
= float('1e66666')
35
elif o ==
INFINITY
:
36
text = '
Infinity
'
37
elif o == -
INFINITY
:
38
text = '-
Infinity
'
131
If allow_nan is True, then NaN,
Infinity
, and -
Infinity
will be
/frameworks/compile/libbcc/runtime/lib/
muldc3.c
69
__real__ z =
INFINITY
* (__a * __c - __b * __d);
70
__imag__ z =
INFINITY
* (__a * __d + __b * __c);
mulsc3.c
69
__real__ z =
INFINITY
* (__a * __c - __b * __d);
70
__imag__ z =
INFINITY
* (__a * __d + __b * __c);
mulxc3.c
71
__real__ z =
INFINITY
* (__a * __c - __b * __d);
72
__imag__ z =
INFINITY
* (__a * __d + __b * __c);
/external/icu4c/test/intltest/
tsdcfmsy.cpp
99
UnicodeString
infinity
(en.getSymbol(DecimalFormatSymbols::kInfinitySymbol));
100
fr.setSymbol(DecimalFormatSymbols::kInfinitySymbol,
infinity
);
102
if(
infinity
!= infinity2) {
103
errln("ERROR: get/set
Infinity
failed");
/external/v8/src/
double.h
58
// It must not be special (
infinity
, or NaN).
87
// Returns the next greater double. Returns +
infinity
on input +
infinity
.
127
// Hence only
Infinity
and NaN are special.
/external/v8/test/mjsunit/compiler/
regress-1085.js
35
assertEquals(-
Infinity
, f(-0));
regress-max.js
36
assertEquals(-
Infinity
, 1 / r);
/external/v8/test/mjsunit/regress/
regress-1117.js
35
assertEquals(1/foo(-42), -
Infinity
);
Completed in 211 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>