#include "dsodefs.h"
#include "CharacterProxy.h"
#include <limits>
#include <string>
#include <boost/variant.hpp>
#include <iosfwd>
#include <boost/type_traits/is_floating_point.hpp>
#include <boost/utility/enable_if.hpp>
#include <boost/cstdint.hpp>
#include "utility.h"
Go to the source code of this file.
Namespaces |
namespace | gnash |
| Anonymous namespace for callbacks, local functions, event handlers etc.
|
namespace | gnash::amf |
| Functions and classes for handling AMF.
|
Functions |
template<typename T > |
bool | gnash::isNaN (const T &num, typename boost::enable_if< boost::is_floating_point< T > >::type *dummy=0) |
template<typename T > |
bool | gnash::isInf (const T &num) |
std::ostream & | gnash::operator<< (std::ostream &os, const as_value &v) |
| Stream operator.
|
std::string | gnash::doubleToString (double val, int radix=10) |
| Convert numeric value to string value, following ECMA-262 specification.
|
bool | gnash::parseNonDecimalInt (const std::string &s, double &d, bool whole) |
void | gnash::setNaN (as_value &v) |
| Set a value to NaN.
|