Searched defs:input_chars (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/v8/src/
H A Djson-parser.h108 const uint8_t* input_chars = seq_source_->GetChars() + position_ + 1; local
111 uint8_t c0 = input_chars[i];
117 if (input_chars[length] == '"') {
/external/chromium_org/third_party/simplejson/
H A D_speedups.c278 Py_ssize_t input_chars; local
286 input_chars = PyUnicode_GET_SIZE(pystr);
290 output_size = 2 + (MIN_EXPANSION * 4) + input_chars;
291 max_output_size = 2 + (input_chars * MAX_EXPANSION);
299 for (i = 0; i < input_chars; i++) {
336 Py_ssize_t input_chars; local
343 input_chars = PyString_GET_SIZE(pystr);
347 for (i = 0; i < input_chars; i++) {
352 for (j = i; j < input_chars; j++) {
357 uni = PyUnicode_DecodeUTF8(input_str, input_chars, "stric
[all...]

Completed in 89 milliseconds