Home
last modified time | relevance | path

Searched refs:first_token (Results 1 – 9 of 9) sorted by relevance

/external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/
Drequireprovidesorter.py127 first_token = tokens[0]
130 while i != first_token:
235 first_token = token
236 previous_first_token = tokenutil.GetFirstTokenInPreviousLine(first_token)
238 first_token = previous_first_token
240 first_token)
245 all_tokens = self._GetTokenList(first_token, last_token)
249 def _GetTokenList(self, first_token, last_token): argument
264 token = first_token
Dtokenutil.py86 first_token = GetFirstTokenInSameLine(token)
90 while first_token != last_token:
91 tokens_in_line.append(first_token)
92 first_token = first_token.next
Decmametadatapass.py411 def Process(self, first_token): argument
413 self._token = first_token
Derror_fixer.py68 def HandleFile(self, filename, first_token): argument
76 self._file_token = first_token
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
Dstreams.rb800 if first_token = @tokens.find { |t| t.channel == @channel }
801 @tokens.index( first_token )
824 if first_token = @tokens.find { |t| t.channel == @channel }
825 @tokens.index( first_token )
/external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/common/
Derrorhandler.py35 def HandleFile(self, filename, first_token): argument
/external/chromium/testing/gmock/scripts/generator/cpp/
Dast.py597 first_token = None
607 parameter_type = Type(first_token.start, first_token.end,
610 p = Parameter(first_token.start, end, name,
616 if not first_token:
617 first_token = s
631 first_token = None
/external/chromium-trace/trace-viewer/third_party/web_dev_style/web_dev_style/
Djs_checker.py133 def HandleFile(self, filename, first_token): argument
/external/chromium/third_party/libevent/
Devdns.c2700 char *const first_token = strtok_r(start, delims, &strtok_state); in resolv_conf_parse_line() local
2701 if (!first_token) return; in resolv_conf_parse_line()
2703 if (!strcmp(first_token, "nameserver") && (flags & DNS_OPTION_NAMESERVERS)) { in resolv_conf_parse_line()
2711 } else if (!strcmp(first_token, "domain") && (flags & DNS_OPTION_SEARCH)) { in resolv_conf_parse_line()
2717 } else if (!strcmp(first_token, "search") && (flags & DNS_OPTION_SEARCH)) { in resolv_conf_parse_line()
2725 } else if (!strcmp(first_token, "options")) { in resolv_conf_parse_line()