OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:input_chars
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/simplejson/
_speedups.c
278
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
, "strict")
[
all
...]
/external/chromium_org/v8/src/
json-parser.h
131
const uint8_t*
input_chars
= seq_source_->GetChars() + position_ + 1;
local
134
uint8_t c0 =
input_chars
[i];
140
if (
input_chars
[length] == '"') {
Completed in 461 milliseconds