Home
last modified time | relevance | path

Searched refs:is_nested (Results 1 – 10 of 10) sorted by relevance

/third_party/python/Lib/test/
Dtest_symtable.py83 self.assertFalse(self.top.is_nested())
84 self.assertFalse(self.Mine.is_nested())
85 self.assertFalse(self.spam.is_nested())
86 self.assertTrue(self.internal.is_nested())
/third_party/jerryscript/jerry-core/parser/js/
Djs-scanner-internal.h263 bool is_nested; /**< is nested binding declaration */ member
382 uint8_t binding_type, bool is_nested);
Djs-scanner-util.c1477 bool is_nested) /**< nested declaration */ in scanner_push_destructuring_pattern() argument
1479 JERRY_ASSERT (binding_type != SCANNER_BINDING_NONE || !is_nested); in scanner_push_destructuring_pattern()
1495 binding_list_p->is_nested = is_nested; in scanner_push_destructuring_pattern()
1510 bool is_nested = binding_list_p->is_nested; in scanner_pop_binding_list() local
1517 if (!is_nested) in scanner_pop_binding_list()
/third_party/node/deps/v8/src/objects/
Dallocation-site-inl.h234 bool is_nested = site->IsNested(); in DigestTransitionFeedback() local
237 is_nested ? "(nested)" : " ", ElementsKindToString(kind), in DigestTransitionFeedback()
/third_party/protobuf/src/google/protobuf/compiler/python/
Dpython_generator.h104 bool is_nested) const;
Dpython_generator.cc858 bool is_nested) const { in PrintMessage()
860 if (is_nested) { in PrintMessage()
/third_party/python/Lib/
Dsymtable.py103 def is_nested(self): member in SymbolTable
/third_party/python/Doc/library/
Dsymtable.rst61 .. method:: is_nested()
/third_party/ltp/tools/sparse/sparse-src/
Dparse.c1704 static int is_nested(struct token *token, struct token **p, in is_nested() function
1783 is_nested(token, &next, ctx->prefer_abstract)) { in direct_declarator()
/third_party/node/deps/v8/src/ast/
Dast.h381 explicit VariableDeclaration(int pos, bool is_nested = false)
383 bit_field_ = IsNestedField::update(bit_field_, is_nested); in Declaration()