/external/adhd/cras/tools/ |
D | create_volume_curve.py | 27 level = int(raw_input(">")) 30 level = int(raw_input(">")) 49 jack_name = raw_input(">"); 51 curve_type = raw_input(">"); 54 max_volume = int(raw_input(">")) 56 step_size = int(raw_input(">")) 62 max_volume = int(raw_input(">")) 64 pivot_point = int(raw_input(">")) 66 step_1 = int(raw_input(">")) 68 step_2 = int(raw_input(">"))
|
/external/python/cpython2/Lib/distutils/tests/ |
D | test_register.py | 113 register_module.raw_input = inputs.__call__ 118 del register_module.raw_input 136 register_module.raw_input = _no_way 165 register_module.raw_input = inputs.__call__ 170 del register_module.raw_input 183 register_module.raw_input = inputs.__call__ 188 del register_module.raw_input 227 register_module.raw_input = inputs.__call__ 232 del register_module.raw_input 238 register_module.raw_input = inputs.__call__ [all …]
|
/external/protobuf/examples/ |
D | add_person.py | 10 person.id = int(raw_input("Enter person ID number: ")) 11 person.name = raw_input("Enter name: ") 13 email = raw_input("Enter email address (blank for none): ") 18 number = raw_input("Enter a phone number (or leave blank to finish): ") 25 type = raw_input("Is this a mobile, home, or work phone? ")
|
/external/autotest/client/tests/cgroup/ |
D | cgroup_client.py | 20 raw_input() 38 raw_input() 60 raw_input() 82 raw_input() 98 raw_input()
|
/external/protobuf/src/google/protobuf/ |
D | wire_format_unittest.cc | 91 io::ArrayInputStream raw_input(data.data(), data.size()); in TEST() local 92 io::CodedInputStream input(&raw_input); in TEST() 108 io::ArrayInputStream raw_input(data.data(), data.size()); in TEST() local 109 io::CodedInputStream input(&raw_input); in TEST() 125 io::ArrayInputStream raw_input(data.data(), data.size()); in TEST() local 126 io::CodedInputStream input(&raw_input); in TEST() 141 io::ArrayInputStream raw_input(data.data(), data.size()); in TEST() local 142 io::CodedInputStream input(&raw_input); in TEST() 157 io::ArrayInputStream raw_input(data.data(), data.size()); in TEST() local 158 io::CodedInputStream input(&raw_input); in TEST() [all …]
|
D | unknown_field_set_unittest.cc | 229 io::ArrayInputStream raw_input(all_fields_data_.data(), in TEST_F() local 231 io::CodedInputStream input(&raw_input); in TEST_F() 362 io::ArrayInputStream raw_input(bizarro_data.data(), bizarro_data.size()); in TEST_F() local 363 io::CodedInputStream input(&raw_input); in TEST_F() 384 io::ArrayInputStream raw_input(all_fields_data_.data(), in TEST_F() local 386 io::CodedInputStream input(&raw_input); in TEST_F()
|
/external/tensorflow/tensorflow/lite/experimental/kernels/ |
D | ctc_beam_search.h | 245 const Vector& raw_input) { in Step() argument 249 (label_selection_size_ > 0 && label_selection_size_ < raw_input.size()); in Step() 255 max_coeff = GetTopK(label_selection_size_, raw_input, &top_k_logits, in Step() 258 max_coeff = raw_input.maxCoeff(); in Step() 263 for (int j = 0; j < raw_input.size(); ++j) { in Step() 264 logsumexp += Eigen::numext::exp(raw_input(j) - max_coeff); in Step() 275 TFLITE_DCHECK_EQ(num_classes_, raw_input.size()); in Step() 301 b->newp.label += raw_input(b->label) - norm_offset; in Step() 304 b->newp.blank = b->oldp.total + raw_input(blank_index_) - norm_offset; in Step() 336 const float logit = top_k ? top_k_logits[ind] : raw_input(ind); in Step()
|
/external/tensorflow/tensorflow/core/util/ctc/ |
D | ctc_beam_search.h | 248 const Vector& raw_input) { in Step() argument 252 (label_selection_size_ > 0 && label_selection_size_ < raw_input.size()); in Step() 258 max_coeff = GetTopK(label_selection_size_, raw_input, &top_k_logits, in Step() 261 max_coeff = raw_input.maxCoeff(); in Step() 266 for (int j = 0; j < raw_input.size(); ++j) { in Step() 267 logsumexp += Eigen::numext::exp(raw_input(j) - max_coeff); in Step() 278 CHECK_EQ(num_classes_, raw_input.size()); in Step() 304 b->newp.label += raw_input(b->label) - norm_offset; in Step() 307 b->newp.blank = b->oldp.total + raw_input(blank_index_) - norm_offset; in Step() 339 const float logit = top_k ? top_k_logits[ind] : raw_input(ind); in Step()
|
/external/python/cpython2/Lib/distutils/command/ |
D | register.py | 149 choice = raw_input() 158 username = raw_input('Username: ') 185 choice = raw_input('Save your login (y/N)?') 196 data['name'] = raw_input('Username: ') 207 data['email'] = raw_input(' EMail: ') 219 data['email'] = raw_input('Your email address: ')
|
/external/python/cpython2/Demo/pdist/ |
D | cmptree.py | 11 s = raw_input("chdir [%s] " % pwd) 26 s = raw_input("mode [%s] " % mode) 39 raw_input("[Return to exit] ") 42 s = raw_input("%s [%s] " % (prompt, default)) 46 s = raw_input("%s [%s] " % (prompt, str(default)))
|
/external/ply/ply/example/calceof/ |
D | calc.py | 12 raw_input = input variable 39 more = raw_input('... ') 127 s = raw_input('calc > ')
|
/external/python/cpython2/Lib/ |
D | code.py | 234 line = self.raw_input(prompt) 270 def raw_input(self, prompt=""): member in InteractiveConsole 281 return raw_input(prompt) 300 console.raw_input = readfunc
|
/external/python/cpython2/Demo/scripts/ |
D | unbirthday.py | 16 year = int(raw_input('In which year were you born? ')) 28 month = int(raw_input('And in which month? (1-12) ')) 36 day = int(raw_input('And on what day of that month? (1-31) '))
|
/external/yapf/yapf/yapflib/ |
D | py3compat.py | 38 def raw_input(): function 65 raw_input = raw_input variable
|
/external/yapf/yapftests/ |
D | main_test.py | 79 orig_raw_import = yapf.py3compat.raw_input 80 yapf.py3compat.raw_input = patch_raw_input 83 yapf.py3compat.raw_input = orig_raw_import
|
/external/ply/ply/example/BASIC/ |
D | basic.py | 8 raw_input = input variable 40 line = raw_input("[BASIC] ")
|
D | basiclog.py | 8 raw_input = input variable 48 line = raw_input("[BASIC] ")
|
/external/python/cpython3/Lib/ |
D | code.py | 227 line = self.raw_input(prompt) 263 def raw_input(self, prompt=""): member in InteractiveConsole 295 console.raw_input = readfunc
|
/external/ply/ply/example/calc/ |
D | calc.py | 12 raw_input = input variable 118 s = raw_input('calc > ')
|
/external/webrtc/tools/cpu/ |
D | cpu_mon.py | 42 label = raw_input().strip() 54 sample_count = raw_input().strip()
|
/external/ply/ply/example/calcdebug/ |
D | calc.py | 12 raw_input = input variable 124 s = raw_input('calc > ')
|
/external/ply/ply/example/closurecalc/ |
D | calc.py | 13 raw_input = input variable 127 s = raw_input("calc > ")
|
/external/ply/ply/example/optcalc/ |
D | calc.py | 12 raw_input = input variable 131 s = raw_input('calc > ')
|
/external/ply/ply/example/classcalc/ |
D | calc.py | 16 raw_input = input variable 52 s = raw_input('calc > ')
|
/external/ply/ply/example/newclasscalc/ |
D | calc.py | 18 raw_input = input variable 54 s = raw_input('calc > ')
|