Home | History | Annotate | Download | only in src

Lines Matching full:value

38 // integer value is outside the range of type int.
72 // Returns the value (0 .. 15) of a hexadecimal character c.
73 // If c is not a legal hexadecimal character, returns a value < 0.
92 // Converts a string into a double value according to ECMA-262 9.3.1
97 int StringToInt(String* str, int index, int radix, double* value);
98 int StringToInt(const char* str, int index, int radix, double* value);
100 // Converts a double to a string value according to ECMA-262 9.8.1.
103 const char* DoubleToCString(double value, Vector<char> buffer);
111 char* DoubleToFixedCString(double value, int f);
112 char* DoubleToExponentialCString(double value, int f);
113 char* DoubleToPrecisionCString(double value, int f);
114 char* DoubleToRadixCString(double value, int radix);