Searched refs:current_key (Results 1 – 9 of 9) sorted by relevance
/external/autotest/client/site_tests/network_EthernetStressPlug/ |
D | network_EthernetStressPlug.py | 422 current_key = '' 426 current_key = current_line[0] 431 if current_key == 'Speed': 433 parameters[current_key] = '' 435 parameters[current_key] = speed.groups()[0] 436 elif (current_key == 'Supported link modes' or 437 current_key == 'Advertised link modes'): 438 parameters[current_key] = [] 439 parameters[current_key] += \ 442 parameters[current_key] = current_line[2].strip() [all …]
|
/external/tensorflow/tensorflow/contrib/slim/python/slim/data/ |
D | parallel_reader_test.py | 65 current_key, _ = sess.run([key, value]) 66 if '0-of-3' in str(current_key): 68 if '1-of-3' in str(current_key): 70 if '2-of-3' in str(current_key): 109 for current_key in current_keys: 110 if '0-of-3' in str(current_key): 112 if '1-of-3' in str(current_key): 114 if '2-of-3' in str(current_key): 178 current_key, _ = sess.run([key, value]) 179 if 'flowers' in str(current_key): [all …]
|
/external/fonttools/Lib/fontTools/misc/ |
D | plistlib.py | 163 self.current_key = None 191 if self.current_key is not None: 194 self.stack[-1][self.current_key] = value 195 self.current_key = None 220 if self.current_key: 221 raise ValueError("missing value for key '%s'" % self.current_key) 226 if self.current_key or not isinstance(self.stack[-1], type({})): 228 self.current_key = self.get_data()
|
/external/v8/tools/release/ |
D | search_related_commits.py | 174 for current_key in high_level_commits: 177 current_key, 182 yield "+" + current_key 184 found_commits = all_related_commits[current_key]
|
/external/python/cpython3/Lib/ |
D | plistlib.py | 250 self.current_key = None 278 if self.current_key is not None: 282 self.stack[-1][self.current_key] = value 283 self.current_key = None 306 if self.current_key: 308 (self.current_key,self.parser.CurrentLineNumber)) 312 if self.current_key or not isinstance(self.stack[-1], type({})): 315 self.current_key = self.get_data()
|
/external/tensorflow/tensorflow/contrib/timeseries/python/timeseries/ |
D | input_pipeline.py | 391 current_key, current_value, current_index, collected_records): argument 393 return math_ops.not_equal(array_ops.squeeze(current_key, axis=0), 397 current_key, current_value, current_index, collected_records): argument 398 del current_key # unused
|
/external/v8/src/ast/ |
D | modules.cc | 251 auto current_key = it->first; in AssignCellIndices() local 262 } while (it != regular_exports_.end() && it->first == current_key); in AssignCellIndices()
|
/external/v8/src/ |
D | objects-debug.cc | 2031 Name* current_key = nullptr; in IsSortedNoDuplicates() local 2035 if (key == current_key) { in IsSortedNoDuplicates() 2039 current_key = key; in IsSortedNoDuplicates()
|
D | objects.cc | 16842 Object* current_key = KeyAt(current); in Rehash() local 16843 if (!Shape::IsLive(roots, current_key)) continue; in Rehash() 16844 uint32_t target = EntryForProbe(isolate, current_key, probe, current); in Rehash()
|