Home | History | Annotate | Download | only in src

Lines Matching refs:current_

327   Token::Value current_token() { return current_.token; }
330 Location location() const { return current_.location; }
338 ASSERT_NOT_NULL(current_.literal_chars);
339 return current_.literal_chars->ascii_literal();
342 ASSERT_NOT_NULL(current_.literal_chars);
343 return current_.literal_chars->utf16_literal();
346 ASSERT_NOT_NULL(current_.literal_chars);
347 return current_.literal_chars->is_ascii();
350 ASSERT_NOT_NULL(current_.literal_chars);
351 return current_.literal_chars->length();
355 Location location = current_.location;
357 if (current_.token == Token::STRING) {
361 return current_.literal_chars->length() != source_length;
452 // Initialize current_ to not refer to a literal.
453 current_.literal_chars = NULL;
458 LiteralBuffer* free_buffer = (current_.literal_chars == &literal_buffer1_) ?
545 TokenDesc current_; // desc for current token (as returned by Next())