/external/libchrome/base/threading/ |
D | thread_id_name_manager_unittest.cc | 27 EXPECT_STREQ(kAThread, manager->GetName(thread_a.GetThreadId())); in TEST_F() 28 EXPECT_STREQ(kBThread, manager->GetName(thread_b.GetThreadId())); in TEST_F() 44 EXPECT_STREQ(kAThread, manager->GetName(thread_a.GetThreadId())); in TEST_F() 47 EXPECT_STREQ("", manager->GetName(thread_a.GetThreadId())); in TEST_F() 56 EXPECT_STREQ(kAThread, manager->GetName(a_id)); in TEST_F() 60 EXPECT_STREQ("", manager->GetName(a_id)); in TEST_F() 61 EXPECT_STREQ(kAThread, manager->GetName(thread_a.GetThreadId())); in TEST_F() 70 std::string version = manager->GetName(a_id); in TEST_F() 73 EXPECT_NE(version, manager->GetName(a_id)); in TEST_F() 82 std::string version = manager->GetName(a_id); in TEST_F() [all …]
|
D | platform_thread_posix.cc | 179 const char* PlatformThread::GetName() { in GetName() function in base::PlatformThread 180 return ThreadIdNameManager::GetInstance()->GetName(CurrentId()); in GetName()
|
/external/webrtc/webrtc/sound/ |
D | automaticallychosensoundsystem.h | 37 virtual const char *GetName() const; 65 LOG(LS_INFO) << "Selected " << wrapped_->GetName() << " sound system"; in Init() 82 kNumSoundSystems>::GetName() const { in GetName() function 83 return wrapped_ ? wrapped_->GetName() : "automatic"; in GetName()
|
D | nullsoundsystem.h | 48 const char *GetName() const override;
|
/external/libweave/examples/daemon/sample/ |
D | sample.cc | 85 LOG(INFO) << "received command: " << cmd->GetName(); in OnHelloCommand() 100 LOG(INFO) << cmd->GetName() << " command finished: " << result; in OnHelloCommand() 107 LOG(INFO) << "received command: " << cmd->GetName(); in OnPingCommand() 115 LOG(INFO) << cmd->GetName() << " command finished"; in OnPingCommand() 122 LOG(INFO) << "received command: " << cmd->GetName(); in OnCountdownCommand() 153 LOG(INFO) << cmd->GetName() << " command finished"; in DoTick()
|
/external/libweave/examples/daemon/speaker/ |
D | speaker.cc | 93 LOG(INFO) << "received command: " << cmd->GetName(); in OnVolumeSetConfig() 100 LOG(INFO) << cmd->GetName() << " volume: " << volume_value; in OnVolumeSetConfig() 114 LOG(INFO) << cmd->GetName() << " is " in OnVolumeSetConfig() 133 LOG(INFO) << "received command: " << cmd->GetName(); in OnOnOffSetConfig() 137 LOG(INFO) << cmd->GetName() << " state: " << requested_state; in OnOnOffSetConfig()
|
/external/libweave/examples/daemon/ledflasher/ |
D | ledflasher.cc | 83 LOG(INFO) << "received command: " << cmd->GetName(); in OnFlasherSetCommand() 90 LOG(INFO) << cmd->GetName() << " _led: " << led_index in OnFlasherSetCommand() 114 LOG(INFO) << "received command: " << cmd->GetName(); in OnFlasherToggleCommand() 118 LOG(INFO) << cmd->GetName() << " _led: " << led_index; in OnFlasherToggleCommand()
|
/external/webrtc/webrtc/modules/desktop_capture/win/ |
D | desktop.cc | 31 bool Desktop::GetName(std::wstring* desktop_name_out) const { in GetName() function in webrtc::Desktop 54 if (!GetName(&name)) in IsSame() 58 if (!other.GetName(&other_name)) in IsSame()
|
D | desktop.h | 28 bool GetName(std::wstring* desktop_name_out) const;
|
/external/libweave/examples/daemon/light/ |
D | light.cc | 203 LOG(INFO) << "received command: " << cmd->GetName(); in OnBrightnessSetConfig() 208 LOG(INFO) << cmd->GetName() << " brightness: " << brightness_value; in OnBrightnessSetConfig() 227 LOG(INFO) << "received command: " << cmd->GetName(); in OnOnOffSetConfig() 231 LOG(INFO) << cmd->GetName() << " state: " << requested_state; in OnOnOffSetConfig() 253 LOG(INFO) << "received command: " << cmd->GetName(); in OnColorXYSetConfig()
|
/external/v8/src/profiler/ |
D | cpu-profiler.cc | 209 profiles_->GetName(name)); in CallbackEvent() 253 CodeEntry::kEmptyNamePrefix, profiles_->GetName(script_name), in CodeCreateEvent() 290 CodeEntry::kEmptyNamePrefix, profiles_->GetName(script_name), line, in CodeCreateEvent() 308 tag, profiles_->GetName(args_count), "args_count: ", in CodeCreateEvent() 357 profiles_->GetName(name), in GetterCallbackEvent() 369 Logger::REG_EXP_TAG, profiles_->GetName(source), "RegExp: ", in RegExpCodeCreateEvent() 383 profiles_->GetName(name), in SetterCallbackEvent() 441 StartProfiling(profiles_->GetName(title), record_samples); in StartProfiling() 489 const char* profile_title = profiles_->GetName(title); in StopProfiling()
|
D | strings-storage.h | 24 const char* GetName(Name* name); 25 const char* GetName(int index);
|
D | strings-storage.cc | 78 const char* StringsStorage::GetName(Name* name) { in GetName() function in v8::internal::StringsStorage 93 const char* StringsStorage::GetName(int index) { in GetName() function in v8::internal::StringsStorage 99 return GetName(name); in GetFunctionName()
|
D | profile-generator.h | 311 const char* GetName(Name* name) { in GetName() function 312 return function_and_resource_names_.GetName(name); in GetName() 314 const char* GetName(int args_count) { in GetName() function 315 return function_and_resource_names_.GetName(args_count); in GetName()
|
/external/libweave/src/notification/ |
D | pull_channel.cc | 21 std::string PullChannel::GetName() const { in GetName() function in weave::PullChannel 63 delegate_->OnCommandCreated(empty_dict, GetName()); in OnTimer()
|
D | notification_channel.h | 22 virtual std::string GetName() const = 0;
|
/external/libweave/src/commands/ |
D | command_instance_unittest.cc | 26 EXPECT_EQ("robot.speak", instance.GetName()); in TEST() 58 EXPECT_EQ("robot.jump", instance->GetName()); in TEST() 68 EXPECT_EQ("base.reboot", instance->GetName()); in TEST()
|
D | command_queue.cc | 46 command.second->GetName() == command_name && in AddCommandHandler() 61 command.second->GetName()); in AddCommandHandler() 84 pair.first->second->GetName()); in Add()
|
/external/libweave/examples/daemon/oven/ |
D | oven.cc | 169 LOG(INFO) << "received command: " << cmd->GetName(); in OnSetTempCommand() 183 LOG(INFO) << cmd->GetName() << " updated oven, matching temp"; in OnSetTempCommand() 203 LOG(INFO) << "received command: " << cmd->GetName(); in OnSetBrightnessCommand()
|
/external/v8/include/ |
D | v8-profiler.h | 249 Local<Value> GetName() const; 290 Local<String> GetName() const; 477 virtual const char* GetName(Local<Object> object) = 0;
|
/external/chromium-trace/catapult/catapult_build/ |
D | dev_server.py | 187 default_tests = dict((pd.GetName(), pd.GetRunUnitTestsUrl()) 198 Route('/%s/notify_test_result' % pd.GetName(), 200 Route('/%s/notify_tests_completed' % pd.GetName(), 295 g = parser.add_argument_group(pd.GetName())
|
/external/pdfium/xfa/src/fxfa/src/parser/ |
D | xfa_locale.h | 13 virtual CFX_WideString GetName(); 53 virtual CFX_WideString GetName();
|
/external/libweave/examples/daemon/lock/ |
D | lock.cc | 90 LOG(INFO) << "received command: " << cmd->GetName(); in OnLockSetConfig() 94 LOG(INFO) << cmd->GetName() << " state: " << requested_state; in OnLockSetConfig()
|
/external/clang/utils/ |
D | ClangDataFormat.py | 122 return ty.GetPointeeType().GetName() 123 return ty.GetName()
|
/external/pdfium/xfa/src/fxbarcode/qrcode/ |
D | BC_QRCoderErrorCorrectionLevel.h | 27 CFX_ByteString GetName();
|