HomeSort by relevance Sort by last modified time
    Searched refs:token_count (Results 1 - 7 of 7) sorted by null

  /hardware/qcom/display/msm8996/sdm/libs/core/fb/
hw_info.cpp 111 uint32_t token_count = 0; local
137 if (!ParseString(line, tokens, max_count, ":, =\n", &token_count)) {
170 uint32_t token_count = 0; local
197 if (!ParseString(line, tokens, max_count, ":, =\n", &token_count)) {
201 ParseFormats(&tokens[1], (token_count - 1), kHWRotatorInput, hw_resource);
203 ParseFormats(&tokens[1], (token_count - 1), kHWRotatorOutput, hw_resource);
205 ParseFormats(&tokens[1], (token_count - 1), kHWWBIntfOutput, hw_resource);
239 for (uint32_t i = 0; i < token_count; i++) {
264 if (!ParseString(line, tokens, max_count, ": =\n", &token_count)) {
267 for (uint32_t j = 0; j < token_count; j += 2)
359 uint32_t token_count = 0; local
    [all...]
hw_info.h 63 void ParseFormats(char *tokens[], uint32_t token_count, HWSubBlockType sub_block_type,
hw_device.cpp 725 uint32_t token_count = 0; local
728 if (!ParseLine(string_buffer, "=\n", tokens, max_count, &token_count)) {
759 uint32_t token_count = 0; local
762 if (!ParseLine(line, tokens, max_count, &token_count)) {
851 uint32_t token_count = 0; local
    [all...]
  /art/cmdline/detail/
cmdline_parse_argument_detail.h 148 size_t token_count = 0; local
178 token_count++;
200 if (token_count != 0) {
202 token_count == names_.size()));
  /external/toybox/toys/pending/
init.c 125 int i, fd, line_number = 0, token_count = 0; local
142 token_count = 0;
147 token_count++;
148 switch (token_count) {
177 if (token_count != 4) {
  /external/chromium-trace/catapult/third_party/closure_linter/closure_linter/
error_fixer.py 544 def _DeleteTokens(self, token, token_count):
552 token_count: The total number of tokens to delete.
555 for unused_i in xrange(token_count):
558 tokenutil.DeleteTokens(token, token_count)
tokenutil.py 237 def DeleteTokens(token, token_count):
242 token_count: The total number of tokens to delete.
244 for i in xrange(1, token_count):

Completed in 312 milliseconds