Home
last modified time | relevance | path

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

/external/python/cpython2/Lib/test/
Dtest_symtable.py75 self.assertFalse(self.top.is_nested())
76 self.assertFalse(self.Mine.is_nested())
77 self.assertFalse(self.spam.is_nested())
78 self.assertTrue(self.internal.is_nested())
/external/python/cpython3/Lib/test/
Dtest_symtable.py66 self.assertFalse(self.top.is_nested())
67 self.assertFalse(self.Mine.is_nested())
68 self.assertFalse(self.spam.is_nested())
69 self.assertTrue(self.internal.is_nested())
/external/tensorflow/tensorflow/python/ops/ragged/
Dragged_factory_ops.py274 is_nested = isinstance(item, (list, tuple))
275 if is_nested != bool(shape):
277 if is_nested:
/external/tensorflow/tensorflow/compiler/xla/service/gpu/
Dhlo_to_ir_bindings.h41 bool is_nested) in HloToIrBindings() argument
43 is_nested_(is_nested), in HloToIrBindings()
Dir_emitter.h114 IrEmitterContext* ir_emitter_context, bool is_nested);
Dir_emitter.cc58 IrEmitterContext* ir_emitter_context, bool is_nested) in IrEmitter() argument
64 is_nested), in IrEmitter()
/external/tensorflow/tensorflow/python/util/
Dnest_test.py235 self.assertFalse(nest.is_nested("1234"))
236 self.assertTrue(nest.is_nested([1, 3, [4, 5]]))
237 self.assertTrue(nest.is_nested(((7, 8), (5, 6))))
238 self.assertTrue(nest.is_nested([]))
239 self.assertTrue(nest.is_nested({"a": 1, "b": 2}))
240 self.assertFalse(nest.is_nested(set([1, 2])))
242 self.assertFalse(nest.is_nested(ones))
243 self.assertFalse(nest.is_nested(math_ops.tanh(ones)))
244 self.assertFalse(nest.is_nested(np.ones((4, 5))))
Dnest.py188 def is_nested(seq): function
/external/libchrome/base/
Drun_loop.cc277 const bool is_nested = active_run_loops_.size() > 1; in BeforeRun() local
279 if (is_nested) { in BeforeRun()
/external/tensorflow/tensorflow/tools/api/golden/v1/
Dtensorflow.nest.pbtxt12 name: "is_nested"
/external/tensorflow/tensorflow/tools/api/golden/v2/
Dtensorflow.nest.pbtxt12 name: "is_nested"
/external/python/cpython2/Lib/
Dsymtable.py80 def is_nested(self): member in SymbolTable
/external/python/cpython3/Lib/
Dsymtable.py79 def is_nested(self): member in SymbolTable
/external/python/cpython3/Doc/library/
Dsymtable.rst61 .. method:: is_nested()
/external/python/cpython2/Doc/library/
Dsymtable.rst61 .. method:: is_nested()
/external/v8/src/ast/
Dast.h413 VariableDeclaration(VariableProxy* proxy, int pos, bool is_nested = false)
415 bit_field_ = IsNestedField::update(bit_field_, is_nested); in Declaration()
/external/libchrome/base/task/sequence_manager/
Dsequence_manager_impl_unittest.cc1458 void CheckIsNested(bool* is_nested) { in CheckIsNested() argument
1459 *is_nested = RunLoop::IsNestedOnCurrentThread(); in CheckIsNested()
/external/v8/src/
Dobjects.cc15860 bool is_nested = site->IsNested(); in DigestTransitionFeedback() local
15862 reinterpret_cast<void*>(*site), is_nested ? "(nested)" : " ", in DigestTransitionFeedback()