OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:PreParser
(Results
1 - 3
of
3
) sorted by null
/external/v8/src/
preparser.h
41
namespace
preparser
{
namespace in namespace:v8
49
// The
PreParser
checks that the syntax follows the grammar for JavaScript,
107
class
PreParser
{
115
PreParser
(i::Scanner* scanner,
134
~
PreParser
() {}
147
return
PreParser
(scanner, log, stack_limit, allow_lazy,
204
// are either being counted in the
preparser
data, or is important
308
PreParser
::Identifier AsIdentifier() {
309
return
PreParser
::Identifier(
310
static_cast<
PreParser
::Identifier::Type>(code_ >> kIdentifierShift))
[
all
...]
/external/chromium_org/v8/src/
preparser.h
213
// The
PreParser
checks that the syntax follows the grammar for JavaScript,
221
class
PreParser
: public ParserBase {
228
PreParser
(Scanner* scanner,
238
~
PreParser
() {}
273
// are either being counted in the
preparser
data, or is important
382
PreParser
::Identifier AsIdentifier() {
383
return
PreParser
::Identifier(
384
static_cast<
PreParser
::Identifier::Type>(code_ >> kIdentifierShift));
649
// Logs the currently parsed literal as a symbol in the
preparser
data.
/external/skia/tests/
PathOpsSkpClipTest.cpp
450
class
PreParser
{
452
PreParser
(int dirNo)
537
PreParser
preParser
(dirNo);
546
if (
preParser
.match(filename, &statusStream, &state->fResult)) {
Completed in 76 milliseconds