HomeSort by relevance Sort by last modified time
    Searched full:end_token (Results 1 - 25 of 27) sorted by null

1 2

  /external/chromium_org/chrome/browser/drive/
drive_api_util.cc 184 size_t end_token = query.find('"', begin_token); local
185 if (end_token == base::string16::npos) {
190 end_token = query.length();
194 token = query.substr(begin_token, end_token - begin_token);
195 index = end_token + 1; // Consume last '"', too.
197 size_t end_token = query.find_first_of(kDelimiter, begin_token); local
198 if (end_token == base::string16::npos) {
199 end_token = query.length();
202 token = query.substr(begin_token, end_token - begin_token);
203 index = end_token;
    [all...]
  /external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/
ecmalintrules.py 517 end_token = flag.description_end_token
518 end_string = htmlutil.StripTags(end_token.string).strip()
520 end_token.type in Type.FLAG_ENDING_TYPES):
521 end_token = end_token.previous
522 if end_token.type in Type.FLAG_DESCRIPTION_TYPES:
523 end_string = htmlutil.StripTags(end_token.string).rstrip()
529 desc_str = end_token.string.rstrip()
541 end_token, end_position)
    [all...]
statetracker.py 164 end_token, contents = _GetMatchingEndBraceAndContents(brace)
167 self.type_end_token = end_token
222 end_token: The token that ends the doc comment.
235 self.end_token = None
272 end_token, contents = _GetMatchingEndBraceAndContents(brace)
520 end_token = last_token
527 return end_token, contents
779 return self._doc_comment and self._doc_comment.end_token is None
872 self._doc_comment.end_token = token
error_fixer.py 242 end_token = token.attached_object.type_end_token
243 if end_token.type != Type.DOC_END_BRACE:
247 last_type = end_token
249 last_type = end_token.previous
ecmametadatapass.py 52 end_token: The token where this context ends.
128 self.end_token = None
225 top_context.end_token = self._token
javascriptlintrules.py 272 function.doc.end_token, Position.AtBeginning())
302 function.doc.end_token, Position.AtBeginning())
indentation.py 500 close_block = token_info.token.metadata.context.end_token
  /external/chromium_org/third_party/closure_linter/closure_linter/
ecmalintrules.py 517 end_token = flag.description_end_token
518 end_string = htmlutil.StripTags(end_token.string).strip()
520 end_token.type in Type.FLAG_ENDING_TYPES):
521 end_token = end_token.previous
522 if end_token.type in Type.FLAG_DESCRIPTION_TYPES:
523 end_string = htmlutil.StripTags(end_token.string).rstrip()
529 desc_str = end_token.string.rstrip()
541 end_token, end_position)
    [all...]
statetracker.py 164 end_token, contents = _GetMatchingEndBraceAndContents(brace)
167 self.type_end_token = end_token
222 end_token: The token that ends the doc comment.
235 self.end_token = None
272 end_token, contents = _GetMatchingEndBraceAndContents(brace)
520 end_token = last_token
527 return end_token, contents
779 return self._doc_comment and self._doc_comment.end_token is None
872 self._doc_comment.end_token = token
error_fixer.py 242 end_token = token.attached_object.type_end_token
243 if end_token.type != Type.DOC_END_BRACE:
247 last_type = end_token
249 last_type = end_token.previous
ecmametadatapass.py 52 end_token: The token where this context ends.
128 self.end_token = None
225 top_context.end_token = self._token
javascriptlintrules.py 272 function.doc.end_token, Position.AtBeginning())
302 function.doc.end_token, Position.AtBeginning())
indentation.py 500 close_block = token_info.token.metadata.context.end_token
  /external/chromium_org/third_party/protobuf/python/google/protobuf/
text_format.py 216 end_token = '>'
219 end_token = '}'
233 while not tokenizer.TryConsume(end_token):
235 raise tokenizer.ParseErrorPreviousToken('Expected "%s".' % (end_token))
  /external/protobuf/python/google/protobuf/
text_format.py 196 end_token = '>'
199 end_token = '}'
213 while not tokenizer.TryConsume(end_token):
215 raise tokenizer.ParseErrorPreviousToken('Expected "%s".' % (end_token))
  /external/chromium_org/v8/src/
preparser.cc 163 PreParser::SourceElements PreParser::ParseSourceElements(int end_token,
166 // (Statement)* <end_token>
169 while (peek() != end_token) {
    [all...]
preparser.h 598 SourceElements ParseSourceElements(int end_token, bool* ok);
parser.h 575 void* ParseSourceElements(ZoneList<Statement*>* processor, int end_token,
parser.cc 854 int end_token,
859 // (ModuleElement)* <end_token>
870 while (peek() != end_token) {
    [all...]
  /external/v8/src/
preparser.cc 170 PreParser::SourceElements PreParser::ParseSourceElements(int end_token,
173 // (Statement)* <end_token>
176 while (peek() != end_token) {
    [all...]
parser.h 583 int end_token, bool is_eval, bool* ok);
preparser.h 523 SourceElements ParseSourceElements(int end_token, bool* ok);
parser.cc     [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/compose/
ComposeActivity.java 210 private static final String END_TOKEN = ", ";
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/
rbt_pars.cpp 118 static const UChar END_TOKEN[] = { 0x45, 0x4e, 0x44 }; // 'END'
    [all...]

Completed in 887 milliseconds

1 2