/external/tensorflow/tensorflow/core/graph/ |
D | graph_partition_test.cc | 199 : in_(Scope::NewRootScope().ExitOnError()), in GraphPartitionTest() 206 TF_EXPECT_OK(in_.ToGraphDef(&in_graph_def_)); in ToGraphDef() 233 Scope in_; member in tensorflow::__anonc404fe730111::GraphPartitionTest 241 auto a1 = FloatInput(in_.WithOpName("A1")); in TEST_F() 242 Combine(in_.WithOpName("A2"), a1, a1); in TEST_F() 253 auto a1 = FloatInput(in_.WithOpName("A1")); in TEST_F() 254 auto b1 = FloatInput(in_.WithOpName("B1")); in TEST_F() 255 Combine(in_.WithOpName("B2"), a1, b1); in TEST_F() 274 auto a1 = FloatInput(in_.WithOpName("A1")); in TEST_F() 275 auto b1 = FloatInput(in_.WithOpName("B1")); in TEST_F() [all …]
|
/external/libchrome/mojo/public/tools/bindings/generators/cpp_templates/ |
D | union_serialization_declaration.tmpl | 39 in_{{name}} = CallWithContext(Traits::{{name}}, input, 46 in_{{name}}, buffer, &value_writer, false, context); 51 in_{{name}}, buffer, &value_writer, &{{name}}_validate_params, 55 in_{{name}}, buffer, &value_writer, context); 68 in_{{name}}, &result->data.f_{{name}}, context); 82 in_{{name}}, &result->data.f_{{name}}); 85 result->data.f_{{name}} = in_{{name}};
|
D | interface_definition.tmpl | 163 {{interface_macros.declare_request_params("in_", method, use_once_callback)}}) { 178 , std::move(in_{{param.name}}) 184 message_name, "in_%s", params_struct, params_description, "kFlags", 270 {{interface_macros.declare_params("in_", method.response_parameters)}}); 324 {{interface_macros.declare_params("in_", method.response_parameters)}}) { 329 , std::move(in_{{param.name}}) 334 message_name, "in_%s", response_params_struct,
|
D | struct_macros.tmpl | 30 {%- set input_field = "in_%s"|format(name) if input_may_be_temp 33 decltype({{original_input_field}}) in_{{name}} = {{original_input_field}};
|
/external/ply/ply/test/ |
D | testcpp.py | 15 def preprocessing(in_, out_queue): argument 20 p.parse(in_) 29 def __test_preprocessing(self, in_, expected, time_limit = 1.0): argument 35 args = (in_, out_queue)
|
/external/tensorflow/tensorflow/python/autograph/pyct/static_analysis/ |
D | liveness.py | 51 prev_live_in = self.in_[node] 66 live_out |= self.in_[n] 86 live_out |= self.in_[n] 89 self.in_[node] = live_in 128 frozenset(self.current_analyzer.in_[cfg_node])) 152 stmt_live_out.update(self.current_analyzer.in_[s]) 159 stmt_live_in = frozenset(self.current_analyzer.in_[cfg_node])
|
D | reaching_fndefs.py | 103 self.in_[node] = defs_in 135 defined_in = self.current_analyzer.in_[cfg_node].value 159 self.current_analyzer.in_[cfg_node].value) 165 self.current_analyzer.in_[cfg_node].value)
|
D | reaching_definitions.py | 163 self.in_[node] = defs_in 219 tuple(analyzer.in_[cfg_node].value.get(qn, ())))
|
/external/tensorflow/tensorflow/core/kernels/ |
D | conv_ops_gpu.h | 111 in_(CheckSpatialArraySize(in)), in batch_() 147 "(", str_util::Join(in_, ", "), "), ", in ToString() 183 return std::make_tuple(batch_, in_depths_, in_, data_format_, out_depths_, in get_data_as_tuple() 201 std::max(in_depths_, out_depths_) * in_[0] * in_[1] * in ShouldIncludeWinogradNonfusedAlgoPreCudnn7() 214 SpatialArray in_; variable
|
D | reduction_gpu_kernels.cu.h | 459 __device__ __inline__ T ComputeSum(IN_T in_, const int plane, 471 in_[plane * elems_per_plane + i * (num_out_rows * num_cols) + col]; 481 reg[0] = in_[plane * elems_per_plane + offset + 0 * num_cols + col]; 488 reg[0] = in_[plane * elems_per_plane + offset + i * num_cols + col]; 513 auto in_ = in; 514 sum = ComputeSum<value_type, IN_T, Op>(in_, plane, num_out_rows, num_rows, 517 auto in_ = t + temp_in_offset; 518 sum = ComputeSum<value_type, value_type*, Op>(in_, plane, num_out_rows, 537 auto in_ = in; 538 out[gid] = in_[gid]; [all …]
|
/external/bcc/src/cc/frontends/b/ |
D | parser.h | 34 : root_node_(NULL), scopes_(new Scopes), in_(infile), lexer(&in_), parser(lexer, *this) { in Parser() 62 std::ifstream in_;
|
/external/python/cpython2/Demo/tkinter/ttk/ |
D | ttkcalendar.py | 100 hframe.pack(in_=self, side='top', pady=4, anchor='center') 101 lbtn.grid(in_=hframe) 102 self._header.grid(in_=hframe, column=1, row=0, padx=12) 103 rbtn.grid(in_=hframe, column=2, row=0) 104 self._calendar.pack(in_=self, expand=1, fill='both', side='bottom') 157 canvas.place(in_=self._calendar, x=x, y=y)
|
D | treeview_multicolumn.py | 67 self.tree.grid(column=0, row=0, sticky='nsew', in_=container) 68 vsb.grid(column=1, row=0, sticky='ns', in_=container) 69 hsb.grid(column=0, row=1, sticky='ew', in_=container)
|
/external/python/cpython2/Lib/lib-tk/test/test_tkinter/ |
D | test_geometry_managers.py | 106 a.pack_configure(in_=pack) 108 a.pack_configure(in_=c) 113 a.pack_configure(in_=a) 115 a.pack_configure(in_='.foo') 232 b.pack_configure(side='right', in_=a, anchor='s', expand=True, fill='x', 297 f2.place_configure(in_=f2) 301 f2.place_configure(in_='spam') 302 f2.place_configure(in_=f) 307 f2.place_configure(in_=f) 320 f2.place_configure(in_=f, x='spam') [all …]
|
/external/python/cpython3/Lib/tkinter/test/test_tkinter/ |
D | test_geometry_managers.py | 106 a.pack_configure(in_=pack) 108 a.pack_configure(in_=c) 113 a.pack_configure(in_=a) 115 a.pack_configure(in_='.foo') 232 b.pack_configure(side='right', in_=a, anchor='s', expand=True, fill='x', 297 f2.place_configure(in_=f2) 301 f2.place_configure(in_='spam') 302 f2.place_configure(in_=f) 307 f2.place_configure(in_=f) 320 f2.place_configure(in_=f, x='spam') [all …]
|
/external/llvm-project/mlir/test/mlir-tblgen/ |
D | op-python-bindings.td | 114 // CHECK: def __init__(self, i32attr, optionalF32Attr, unitAttr, in_, loc=None, ip=None): 122 // CHECK: attributes["in"] = in_ 142 // CHECK: def in_(self): 152 // CHECK: def __init__(self, _gen_arg_0, in_, _gen_arg_2, is_, loc=None, ip=None): 158 // CHECK: if bool(in_): attributes["in"] = _ir.UnitAttr.get( 166 // CHECK: def in_(self): 278 // CHECK: def __init__(self, in_, loc=None, ip=None): 282 // CHECK: operands.append(in_) 288 // CHECK: def in_(self):
|
/external/libabigail/src/ |
D | abg-ini.cc | 869 istream& in_; member in abigail::ini::read_context 885 : in_(in), in read_context() 910 char c = in_.peek(); in peek() 955 result = in_.get(); in get() 979 return in_.good(); in good() 990 return in_.eof(); in eof()
|
/external/python/cpython2/Lib/idlelib/ |
D | tabbedpages.py | 253 self.mask.place(in_=self, 259 self.mskl.place(in_=self, 275 self.mskr.place(in_=self,
|
/external/python/cpython2/Demo/tkinter/guido/ |
D | dialog.py | 46 b.pack (in_=bd, side=LEFT,
|
/external/python/cpython2/Tools/webchecker/ |
D | tktools.py | 96 vbar.pack(in_=vbarframe, expand=1, fill=Y, side=TOP) 315 inner.pack(expand=1, fill=BOTH, in_=outer)
|
/external/llvm-project/lldb/examples/python/ |
D | lldbtk.py | 490 self.tree.grid(in_=frame, row=0, column=0, sticky=NSEW) 491 scroll_bar_v.grid(in_=frame, row=0, column=1, sticky=NS) 492 scroll_bar_h.grid(in_=frame, row=1, column=0, sticky=EW)
|
/external/rust/crates/ring/src/aead/ |
D | chacha.rs | 115 in_: *const u8, in encrypt()
|
/external/webrtc/rtc_base/ |
D | ssl_stream_adapter_unittest.cc | 150 : test_base_(test), side_(side), in_(in), out_(out), first_packet_(true) { in SSLDummyStreamBase() 151 in_->SignalEvent.connect(this, &SSLDummyStreamBase::OnEventIn); in SSLDummyStreamBase() 163 r = in_->Read(buffer, buffer_len, read, error); in Read() 219 rtc::StreamInterface* in_; member in SSLDummyStreamBase
|
/external/python/apitools/samples/iam_sample/iam_v1/ |
D | iam_v1_messages.py | 700 in_ = _messages.StringField(4, repeated=True) variable in Rule
|
/external/rust/crates/quiche/deps/boringssl/src/ssl/test/ |
D | bssl_shim.cc | 237 static int WriteAll(SSL *ssl, const void *in_, size_t in_len) { in WriteAll() argument 239 const uint8_t *in = reinterpret_cast<const uint8_t *>(in_); in WriteAll()
|