HomeSort by relevance Sort by last modified time
    Searched defs:char_offset (Results 1 - 3 of 3) sorted by null

  /external/libchrome/base/strings/
utf_string_conversion_utils.cc 80 size_t char_offset = output->length(); local
81 size_t original_char_offset = char_offset;
82 output->resize(char_offset + CBU8_MAX_LENGTH);
84 CBU8_APPEND_UNSAFE(&(*output)[0], char_offset, code_point);
88 output->resize(char_offset);
89 return char_offset - original_char_offset;
99 size_t char_offset = output->length(); local
100 output->resize(char_offset + CBU16_MAX_LENGTH);
101 CBU16_APPEND_UNSAFE(&(*output)[0], char_offset, code_point);
  /external/eigen/test/
rand.cpp 60 signed char char_offset = (std::min)(g_repeat,64); local
84 CALL_SUBTEST(check_all_in_range<signed char>(11,11+char_offset));
86 CALL_SUBTEST(check_all_in_range<signed char>(-11-char_offset,-11));
87 CALL_SUBTEST(check_all_in_range<signed char>(-126,-126+char_offset));
88 CALL_SUBTEST(check_all_in_range<signed char>(126-char_offset,126));
  /hardware/qcom/msm8998/json-c/
json_tokener.h 82 int max_depth, depth, is_double, st_pos, char_offset; member in struct:json_tokener
160 * Extra characters can be detected by comparing the tok->char_offset against
188 if (tok->char_offset < stringlen) // XXX shouldn't access internal fields

Completed in 57 milliseconds