Searched defs:Decimal (Results 1 - 7 of 7) sorted by relevance

/external/chromium_org/third_party/simplejson/
H A D__init__.py71 >>> from decimal import Decimal
72 >>> json.loads('1.1', parse_float=Decimal) == Decimal('1.1')
109 from decimal import Decimal namespace
189 If *use_decimal* is true (default: ``True``) then decimal.Decimal
286 If *use_decimal* is true (default: ``True``) then decimal.Decimal
372 for JSON floats (e.g. :class:`decimal.Decimal`).
385 parse_float=decimal.Decimal for parity with ``dump``.
428 for JSON floats (e.g. :class:`decimal.Decimal`).
441 parse_float=decimal.Decimal fo
[all...]
H A Dencoder.py4 from decimal import Decimal namespace
155 If use_decimal is true (not the default), ``decimal.Decimal`` will
157 with ``parse_float=decimal.Decimal``.
301 Decimal)
309 Decimal=Decimal)
352 Decimal=Decimal,
405 elif _use_decimal and isinstance(value, Decimal):
498 elif _use_decimal and isinstance(value, Decimal)
[all...]
H A D_speedups.c85 PyObject *Decimal; member in struct:_PyEncoderObject
2061 s->Decimal = NULL;
2070 static char *kwlist[] = {"markers", "default", "encoder", "indent", "key_separator", "item_separator", "sort_keys", "skipkeys", "allow_nan", "key_memo", "use_decimal", "namedtuple_as_object", "tuple_as_array", "bigint_as_string", "item_sort_key", "Decimal", NULL};
2076 PyObject *bigint_as_string, *item_sort_key, *Decimal; local
2085 &item_sort_key, &Decimal))
2104 s->Decimal = Decimal;
2116 Py_INCREF(s->Decimal);
2269 else if (s->use_decimal && PyObject_TypeCheck(obj, s->Decimal)) {
2663 Py_CLEAR(s->Decimal);
[all...]
/external/chromium_org/third_party/WebKit/Source/core/html/parser/
H A DHTMLEntityParser.cpp169 Decimal, enumerator in enum:blink::EntityState
204 entityState = Decimal;
242 case Decimal: {
/external/chromium_org/third_party/WebKit/Source/platform/
H A DDecimal.h50 class PLATFORM_EXPORT Decimal { class in namespace:blink
61 friend class Decimal;
97 Decimal(int32_t = 0);
98 Decimal(Sign, int exponent, uint64_t coefficient);
99 Decimal(const Decimal&);
101 Decimal& operator=(const Decimal&);
102 Decimal& operator+=(const Decimal
[all...]
/external/chromium_org/third_party/WebKit/Source/core/html/forms/
H A DInputType.cpp201 void InputType::setValueAsDecimal(const Decimal& newValue, TextFieldEventBehavior eventBehavior, ExceptionState&) const
252 const Decimal numericValue = parseToNumberOrNaN(value);
264 const Decimal numericValue = parseToNumberOrNaN(value);
271 Decimal InputType::defaultValueForStepUp() const
291 const Decimal numericValue = parseToNumberOrNaN(value);
304 const Decimal numericValue = parseToNumberOrNaN(value);
317 const Decimal numericValue = parseToNumberOrNaN(value);
330 String InputType::rangeOverflowText(const Decimal&) const
336 String InputType::rangeUnderflowText(const Decimal&) const
376 const Decimal numericValu
668 findClosestTickMarkValue(const Decimal&) argument
[all...]
/external/lldb/tools/debugserver/source/
H A DDNBDefs.h184 Decimal, enumerator in enum:DNBRegisterFormat

Completed in 3947 milliseconds