/external/python/cpython2/Lib/test/ |
D | test_symtable.py | 75 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/ |
D | test_symtable.py | 66 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/ |
D | ragged_factory_ops.py | 274 is_nested = isinstance(item, (list, tuple)) 275 if is_nested != bool(shape): 277 if is_nested:
|
/external/tensorflow/tensorflow/compiler/xla/service/gpu/ |
D | hlo_to_ir_bindings.h | 41 bool is_nested) in HloToIrBindings() argument 43 is_nested_(is_nested), in HloToIrBindings()
|
D | ir_emitter.h | 114 IrEmitterContext* ir_emitter_context, bool is_nested);
|
D | ir_emitter.cc | 58 IrEmitterContext* ir_emitter_context, bool is_nested) in IrEmitter() argument 64 is_nested), in IrEmitter()
|
/external/tensorflow/tensorflow/python/util/ |
D | nest_test.py | 235 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))))
|
D | nest.py | 188 def is_nested(seq): function
|
/external/libchrome/base/ |
D | run_loop.cc | 277 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/ |
D | tensorflow.nest.pbtxt | 12 name: "is_nested"
|
/external/tensorflow/tensorflow/tools/api/golden/v2/ |
D | tensorflow.nest.pbtxt | 12 name: "is_nested"
|
/external/python/cpython2/Lib/ |
D | symtable.py | 80 def is_nested(self): member in SymbolTable
|
/external/python/cpython3/Lib/ |
D | symtable.py | 79 def is_nested(self): member in SymbolTable
|
/external/python/cpython3/Doc/library/ |
D | symtable.rst | 61 .. method:: is_nested()
|
/external/python/cpython2/Doc/library/ |
D | symtable.rst | 61 .. method:: is_nested()
|
/external/v8/src/ast/ |
D | ast.h | 413 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/ |
D | sequence_manager_impl_unittest.cc | 1458 void CheckIsNested(bool* is_nested) { in CheckIsNested() argument 1459 *is_nested = RunLoop::IsNestedOnCurrentThread(); in CheckIsNested()
|
/external/v8/src/ |
D | objects.cc | 15860 bool is_nested = site->IsNested(); in DigestTransitionFeedback() local 15862 reinterpret_cast<void*>(*site), is_nested ? "(nested)" : " ", in DigestTransitionFeedback()
|