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

/external/python/cpython2/Lib/test/crashers/
H A Ddecref_before_assignment.py24 parse_float = None variable in class:Ctx1
/external/mesa3d/src/gallium/tools/trace/
H A Dparse.py287 def parse_float(self): member in class:TraceParser
/external/pcre/pcrecpp/
H A Dpcrecpp.cc693 bool Arg::parse_float(const char* str, int n, void* dest) { function in class:pcrecpp::Arg
/external/harfbuzz_ng/src/
H A Dhb-common.cc752 parse_float (const char **pp, const char *end, float *pv) function
987 return parse_float (pp, end, &variation->value);
/external/mesa3d/src/gallium/auxiliary/tgsi/
H A Dtgsi_text.c231 static boolean parse_float( const char **pcur, float *val ) function
1279 ret = parse_float(&ctx->cur, &values[i].Float);
/external/python/cpython3/Modules/
H A D_json.c24 PyObject *parse_float; member in struct:_PyScannerObject
34 {"parse_float", T_OBJECT, offsetof(PyScannerObject, parse_float), READONLY, "parse_float"},
676 Py_VISIT(s->parse_float);
691 Py_CLEAR(s->parse_float);
945 May return other types if parse_int or parse_float are set
1014 if (is_float && s->parse_float != (PyObject *)&PyFloat_Type)
1015 custom_func = s->parse_float;
1211 s->parse_float
[all...]
/external/python/cpython2/Modules/
H A D_json.c39 PyObject *parse_float; member in struct:_PyScannerObject
49 {"parse_float", T_OBJECT, offsetof(PyScannerObject, parse_float), READONLY, "parse_float"},
862 Py_VISIT(s->parse_float);
878 Py_CLEAR(s->parse_float);
1307 May return other types if parse_int or parse_float are set
1375 if (s->parse_float != (PyObject *)&PyFloat_Type) {
1376 rval = PyObject_CallFunctionObjArgs(s->parse_float, numstr, NULL);
1409 May return other types if parse_int or parse_float ar
[all...]

Completed in 361 milliseconds