Home
last modified time | relevance | path

Searched refs:new_command (Results 1 – 8 of 8) sorted by relevance

/external/tensorflow/tensorflow/examples/speech_commands/
Drecognize_commands_test.cc45 string new_command; in TEST() local
56 new_command = found_command; in TEST()
60 EXPECT_EQ("a", new_command); in TEST()
64 new_command = ""; in TEST()
75 new_command = found_command; in TEST()
79 EXPECT_EQ("b", new_command); in TEST()
/external/llvm-project/lldb/source/Commands/
DCommandObjectRegexCommand.cpp34 std::string new_command(pos->command); in DoExecute() local
42 for (idx = 0; (percent_var_idx = new_command.find( in DoExecute()
44 new_command.erase(percent_var_idx, percent_var_len); in DoExecute()
45 new_command.insert(percent_var_idx, match_str); in DoExecute()
52 result.GetOutputStream().Printf("%s\n", new_command.c_str()); in DoExecute()
57 new_command.c_str(), eLazyBoolCalculate, result, nullptr, true, true); in DoExecute()
/external/autotest/client/common_lib/cros/fake_device_server/client_lib/
Dclient_lib_test.py102 new_command = c_client.create_command(device['id'], command_dict)
103 if not c_client.get_command(new_command['id']):
109 if not new_command['id'] in command_ids:
113 new_command = c_client.update_command(new_command['id'],
/external/autotest/client/common_lib/cros/fake_device_server/
Dcommands_unittest.py52 new_command = self.commands.create_command(GOOD_COMMAND)
53 self.assertTrue('id' in new_command)
54 command_id = new_command['id']
55 self.assertEqual(new_command['state'], 'queued')
58 new_command)
/external/tensorflow/tensorflow/lite/micro/examples/micro_speech/
Drecognize_commands_test.cc103 const char* new_command; in TF_LITE_MICRO_TEST() local
116 new_command = found_command; in TF_LITE_MICRO_TEST()
121 TF_LITE_MICRO_EXPECT_EQ(0, tflite::testing::TestStrcmp("yes", new_command)); in TF_LITE_MICRO_TEST()
129 new_command = ""; in TF_LITE_MICRO_TEST()
142 new_command = found_command; in TF_LITE_MICRO_TEST()
148 TF_LITE_MICRO_EXPECT_EQ(0, tflite::testing::TestStrcmp("no", new_command)); in TF_LITE_MICRO_TEST()
/external/llvm-project/lldb/source/API/
DSBCommandInterpreter.cpp589 CommandObjectMultiword *new_command = in AddMultiwordCommand() local
591 new_command->SetRemovable(true); in AddMultiwordCommand()
592 lldb::CommandObjectSP new_command_sp(new_command); in AddMultiwordCommand()
698 CommandObjectMultiword *new_command = new CommandObjectMultiword( in AddMultiwordCommand() local
700 new_command->SetRemovable(true); in AddMultiwordCommand()
701 lldb::CommandObjectSP new_command_sp(new_command); in AddMultiwordCommand()
/external/pthreadpool/src/
Dwindows.c246 …const uint32_t new_command = ~(old_command | THREADPOOL_COMMAND_MASK) | threadpool_command_paralle… in pthreadpool_parallelize() local
266 pthreadpool_store_release_uint32_t(&threadpool->command, new_command); in pthreadpool_parallelize()
Dpthreads.c358 …const uint32_t new_command = ~(old_command | THREADPOOL_COMMAND_MASK) | threadpool_command_paralle… in pthreadpool_parallelize() local
367 pthreadpool_store_release_uint32_t(&threadpool->command, new_command); in pthreadpool_parallelize()