/external/cronet/base/mac/ |
D | scoped_aedesc.h | 23 AECreateDesc(typeNull, NULL, 0, &desc_); in ScopedAEDesc() 30 AEDisposeDesc(&desc_); in ~ScopedAEDesc() 35 return &desc_; 40 return &desc_; in OutPointer() 44 AEDescType desc_;
|
/external/webrtc/pc/ |
D | webrtc_sdp_unittest.cc | 974 desc_.AddContent(kAudioContentName, MediaProtocolType::kRtp, in WebRtcSdpTest() 990 desc_.AddContent(kVideoContentName, MediaProtocolType::kRtp, in WebRtcSdpTest() 994 desc_.AddTransportInfo(TransportInfo( in WebRtcSdpTest() 996 desc_.AddTransportInfo(TransportInfo( in WebRtcSdpTest() 1091 jdesc_.Initialize(desc_.Clone(), kSessionId, kSessionVersion); in WebRtcSdpTest() 1125 desc_.transport_infos()[1].description.ice_ufrag.clear(); in MakeBundleOnlyDescription() 1126 desc_.transport_infos()[1].description.ice_pwd.clear(); in MakeBundleOnlyDescription() 1127 desc_.transport_infos()[1].description.connection_role = in MakeBundleOnlyDescription() 1131 desc_.contents()[1].bundle_only = true; in MakeBundleOnlyDescription() 1137 desc_.AddGroup(group); in MakeBundleOnlyDescription() [all …]
|
D | sdp_offer_answer.cc | 788 desc_(std::move(desc)), in RemoteDescriptionOperation() 792 if (!desc_) { in RemoteDescriptionOperation() 796 type_ = desc_->GetType(); in RemoteDescriptionOperation() 864 handler_->pc_->ReportSdpBundleUsage(*desc_.get()); in ReportOfferAnswerUma() 877 desc_.get(), cricket::CS_REMOTE, bundle_groups_by_mid_); in IsDescriptionValid() 885 RTC_DCHECK(desc_); in ReplaceRemoteDescriptionAndCheckEror() 891 error_ = handler_->ReplaceRemoteDescription(std::move(desc_), type_, in ReplaceRemoteDescriptionAndCheckEror() 910 RTC_DCHECK(!desc_) << "ReplaceRemoteDescription hasn't been called"; in UpdateChannels() 960 cricket::SessionDescription* description() { return desc_->description(); } in description() 963 RTC_DCHECK(!desc_) << "Called before replacing the remote description"; in old_remote_description() [all …]
|
/external/tensorflow/tensorflow/compiler/xla/stream_executor/ |
D | lazy_op_runner.h | 83 desc_, std::move(config), stream)); in GetOrCreateRunner() 98 return desc_ == other.desc_; 101 std::string ToString() const { return desc_.ToString(); } in ToString() 103 const AlgorithmDesc& ToAlgorithmDesc() const { return desc_; } in ToAlgorithmDesc() 108 : desc_(std::move(desc)), runner_(std::move(runner)) {} in LazyOpRunner() 110 AlgorithmDesc desc_; variable
|
/external/webrtc/modules/desktop_capture/win/ |
D | dxgi_output_duplicator.cc | 89 if (desc_.DesktopImageInSystemMemory) { in Initialize() 112 memset(&desc_, 0, sizeof(desc_)); in DuplicateOutput() 113 duplication_->GetDesc(&desc_); in DuplicateOutput() 114 if (desc_.ModeDesc.Format != DXGI_FORMAT_B8G8R8A8_UNORM) { in DuplicateOutput() 117 << "format is " << desc_.ModeDesc.Format; in DuplicateOutput() 121 if (static_cast<int>(desc_.ModeDesc.Width) != desktop_rect_.width() || in DuplicateOutput() 122 static_cast<int>(desc_.ModeDesc.Height) != desktop_rect_.height()) { in DuplicateOutput() 126 << desc_.ModeDesc.Width << " x " << desc_.ModeDesc.Height in DuplicateOutput() 132 rotation_ = DxgiRotationToRotation(desc_.Rotation); in DuplicateOutput()
|
D | dxgi_output_duplicator.h | 126 DXGI_OUTDUPL_DESC desc_; variable
|
/external/grpc-grpc/src/core/lib/profiling/ |
D | timers.h | 75 : desc_(desc) { in ProfileScope() 76 gpr_timer_begin(desc_, important ? 1 : 0, file, line); in ProfileScope() 78 ~ProfileScope() { gpr_timer_end(desc_, 0, "n/a", 0); } in ~ProfileScope() 81 const char* const desc_;
|
/external/rust/crates/grpcio-sys/grpc/src/core/lib/profiling/ |
D | timers.h | 75 : desc_(desc) { in ProfileScope() 76 gpr_timer_begin(desc_, important ? 1 : 0, file, line); in ProfileScope() 78 ~ProfileScope() { gpr_timer_end(desc_, 0, "n/a", 0); } in ~ProfileScope() 81 const char* const desc_;
|
/external/deqp/modules/gles2/stress/ |
D | es2sLongRunningTests.cpp | 80 … char* const name_, const char* const desc_, int bufFact, const Probs& probs_ = Probs()) : name(na… in init() 152 …har* const name_, const char* const desc_, int numTextures_, const Probs& probs_ = Probs()) : name… in init() 209 …Case (const char* const name_, const char* const desc_, const int calls, const int tris, const Pro… in init() 210 …: name(name_), desc(desc_), drawCallsPerIteration(calls), numTrisPerDrawCall(tris), probs(probs_) … in init() 258 … (const char* const name_, const char* const desc_, const Probs& probs_ = Probs()) : name(name_), … in init()
|
/external/deqp/modules/gles3/stress/ |
D | es3sLongRunningTests.cpp | 80 … char* const name_, const char* const desc_, int bufFact, const Probs& probs_ = Probs()) : name(na… in init() 152 …har* const name_, const char* const desc_, int numTextures_, const Probs& probs_ = Probs()) : name… in init() 209 …Case (const char* const name_, const char* const desc_, const int calls, const int tris, const Pro… in init() 210 …: name(name_), desc(desc_), drawCallsPerIteration(calls), numTrisPerDrawCall(tris), probs(probs_) … in init() 258 … (const char* const name_, const char* const desc_, const Probs& probs_ = Probs()) : name(name_), … in init()
|
/external/tensorflow/tensorflow/c/ |
D | c_api_test.cc | 1248 desc_ = TF_NewOperation(graph_, "AddN", "add"); in SetUp() 1250 TF_AddInputList(desc_, inputs, TF_ARRAYSIZE(inputs)); in SetUp() 1309 TF_Operation* op = TF_FinishOperation(desc_, s_); in FinishAndVerify() 1319 TF_OperationDescription* desc_; member in tensorflow::__anondb1bf27b0111::CApiColocationTest 1323 TF_ColocateWith(desc_, feed1_); in TEST_F() 1324 FinishAndVerify(desc_, {"loc:@feed1"}); in TEST_F() 1328 SetViaStringList(desc_, {"loc:@feed1"}); in TEST_F() 1329 FinishAndVerify(desc_, {"loc:@feed1"}); in TEST_F() 1333 SetViaProto(desc_, {"loc:@feed1"}); in TEST_F() 1334 FinishAndVerify(desc_, {"loc:@feed1"}); in TEST_F() [all …]
|
/external/tensorflow/tensorflow/core/kernels/ |
D | xsmm_conv2d.cc | 122 libxsmm_dnn_registry_key(const libxsmm_dnn_conv_desc& desc_) in libxsmm_dnn_registry_key() 123 : descriptor(desc_) {} in libxsmm_dnn_registry_key()
|
/external/cronet/components/nacl/loader/ |
D | nacl_ipc_adapter.cc | 231 explicit NaClDescWrapper(NaClDesc* desc): desc_(desc) {} in NaClDescWrapper() 237 NaClDescUnref(desc_); in ~NaClDescWrapper() 240 NaClDesc* desc() { return desc_; } in desc() 243 raw_ptr<NaClDesc> desc_; member in __anon19c46ce50111::NaClDescWrapper
|
/external/webrtc/pc/test/ |
D | mock_peer_connection_observers.h | 267 desc_.reset(desc); in OnSuccess() 288 return std::move(desc_); in MoveDescription() 295 std::unique_ptr<SessionDescriptionInterface> desc_ RTC_GUARDED_BY(mutex_);
|
/external/armnn/third-party/fmt/ |
D | core.h | 1801 unsigned long long desc_; 1812 bool is_packed() const { return (desc_ & detail::is_unpacked_bit) == 0; } 1814 return (desc_ & detail::has_named_args_bit) != 0; 1820 return static_cast<detail::type>((desc_ >> shift) & mask); 1825 : desc_(desc), values_(values) {} 1827 : desc_(desc), args_(args) {} 1830 basic_format_args() : desc_(0) {} 1891 : desc_ & ~detail::is_unpacked_bit);
|
/external/fmtlib/include/fmt/ |
D | core.h | 1838 unsigned long long desc_; 1849 bool is_packed() const { return (desc_ & detail::is_unpacked_bit) == 0; } 1851 return (desc_ & detail::has_named_args_bit) != 0; 1857 return static_cast<detail::type>((desc_ >> shift) & mask); 1862 : desc_(desc), values_(values) {} 1864 : desc_(desc), args_(args) {} 1867 basic_format_args() : desc_(0) {} 1928 : desc_ & ~detail::is_unpacked_bit);
|
/external/armnn/third-party/cxxopts/ |
D | cxxopts.hpp | 1315 , desc_(std::move(desc)) in Option() 1322 std::string desc_; member 1693 option_adder(option.opts_, option.desc_, option.value_, option.arg_help_); in add_options()
|