OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:BlockState
(Results
1 - 4
of
4
) sorted by null
/external/chromium/chrome/browser/
external_protocol_handler.h
17
enum
BlockState
{
24
static
BlockState
GetBlockState(const std::string& scheme);
27
static void SetBlockState(const std::string& scheme,
BlockState
state);
/external/chromium_org/chrome/browser/external_protocol/
external_protocol_handler.h
21
enum
BlockState
{
33
virtual
BlockState
GetBlockState(const std::string& scheme) = 0;
44
static
BlockState
GetBlockState(const std::string& scheme);
47
static void SetBlockState(const std::string& scheme,
BlockState
state);
/external/chromium_org/v8/src/
parser.cc
466
// FunctionState and
BlockState
together implement the parser's scope stack.
467
// The parser's current scope is in top_scope_. The
BlockState
and
472
class Parser::
BlockState
BASE_EMBEDDED {
474
BlockState
(Parser* parser, Scope* scope)
480
~
BlockState
() { parser_->top_scope_ = outer_scope_; }
[
all
...]
/external/v8/src/
parser.cc
462
// FunctionState and
BlockState
together implement the parser's scope stack.
463
// The parser's current scope is in top_scope_. The
BlockState
and
468
class Parser::
BlockState
BASE_EMBEDDED {
470
BlockState
(Parser* parser, Scope* scope)
476
~
BlockState
() { parser_->top_scope_ = outer_scope_; }
[
all
...]
Completed in 239 milliseconds