/external/rust/crates/grpcio-sys/grpc/src/core/ext/filters/client_channel/ |
D | server_address.cc | 41 : address_(address), args_(args), attributes_(std::move(attributes)) {} in ServerAddress() 46 : args_(args), attributes_(std::move(attributes)) { in ServerAddress() 53 for (const auto& p : other.attributes_) { in ServerAddress() 54 attributes_[p.first] = p.second->Copy(); in ServerAddress() 61 attributes_.clear(); in operator =() 62 for (const auto& p : other.attributes_) { in operator =() 63 attributes_[p.first] = p.second->Copy(); in operator =() 71 attributes_(std::move(other.attributes_)) { in ServerAddress() 79 attributes_ = std::move(other.attributes_); in operator =() 119 return CompareAttributes(attributes_, other.attributes_); in Cmp() [all …]
|
D | server_address.h | 102 std::map<const char*, std::unique_ptr<AttributeInterface>> attributes_; variable
|
/external/tensorflow/tensorflow/lite/delegates/gpu/common/tasks/ |
D | strided_slice.cc | 79 : GPUOperation(definition), attributes_(attr) { in StridedSlice() 81 code_ = GetStridedSliceCode(definition_, Is4Aligned(attributes_)); in StridedSlice() 85 : GPUOperation(std::move(operation)), attributes_(operation.attributes_) {} in StridedSlice() 89 attributes_ = operation.attributes_; in operator =() 156 int4 offset = GetOffset(attributes_, src_[0]->Width(), src_[0]->Height(), in BindArguments() 162 RETURN_IF_ERROR(args->SetInt("stride_x", attributes_.strides.w)); in BindArguments() 163 RETURN_IF_ERROR(args->SetInt("stride_y", attributes_.strides.h)); in BindArguments() 164 RETURN_IF_ERROR(args->SetInt("stride_z", attributes_.strides.c)); in BindArguments() 165 RETURN_IF_ERROR(args->SetInt("stride_b", attributes_.strides.b)); in BindArguments()
|
D | strided_slice.h | 41 SliceAttributes attributes_; variable
|
/external/libbrillo/install_attributes/ |
D | libinstallattributes.cc | 45 const auto entry = attributes_.find(key); in GetAttribute() 46 if (entry == attributes_.end()) { in GetAttribute() 80 attributes_[attribute.name()] = std::string(attribute.value().c_str()); in TryToLoad()
|
D | mock_install_attributes_reader.cc | 13 attributes_[attribute.name()] = std::string(attribute.value().c_str()); in MockInstallAttributesReader() 20 attributes_[kAttrMode] = device_mode; in MockInstallAttributesReader()
|
D | libinstallattributes.h | 46 std::map<std::string, std::string> attributes_;
|
/external/rust/crates/quiche/deps/boringssl/src/crypto/test/ |
D | file_test.cc | 208 for (unsigned i = 2; attributes_.count(mapped_key) != 0; i++) { in ReadNext() 216 attributes_[mapped_key] = value; in ReadNext() 253 return attributes_.count(key) > 0; in HasAttribute() 258 auto iter = attributes_.find(key); in GetAttribute() 259 if (iter == attributes_.end()) { in GetAttribute() 271 return attributes_[key]; in GetAttributeOrDie() 320 attributes_.clear(); in ClearTest()
|
D | file_test.h | 225 std::map<std::string, std::string> attributes_; variable
|
/external/boringssl/src/crypto/test/ |
D | file_test.cc | 215 attributes_[mapped_key] = value; in ReadNext() 252 return attributes_.count(key) > 0; in HasAttribute() 257 auto iter = attributes_.find(key); in GetAttribute() 258 if (iter == attributes_.end()) { in GetAttribute() 270 return attributes_[key]; in GetAttributeOrDie() 320 attributes_.clear(); in ClearTest()
|
D | file_test.h | 228 std::map<std::string, std::string> attributes_; variable
|
/external/avb/test/ |
D | avb_atx_validate_unittest.cc | 97 ops_.set_permanent_attributes(attributes_); in SetUp() 303 AvbAtxPermanentAttributes attributes_; member in avb::AvbAtxValidateTest 323 memcpy(&attributes_, tmp.data(), tmp.size()); in ReadDefaultData() 389 attributes_.version = 25; in TEST_F() 390 ops_.set_permanent_attributes(attributes_); in TEST_F() 652 SHA256(attributes_.product_id, AVB_ATX_PRODUCT_ID_SIZE, expected_pid_hash); in TEST_F() 707 attributes_.version = 25; in TEST_F() 708 ops_.set_permanent_attributes(attributes_); in TEST_F() 977 ops_.set_permanent_attributes(attributes_); in SetUp() 1005 AvbAtxPermanentAttributes attributes_; member in avb::AvbAtxSlotVerifyTest [all …]
|
D | avb_atx_slot_verify_unittest.cc | 62 ops_.set_permanent_attributes(attributes_); in SetUp() 174 AvbAtxPermanentAttributes attributes_; member in avb::AvbAtxSlotVerifyExampleTest 192 memcpy(&attributes_, tmp.data(), tmp.size()); in ReadAtxDefaultData()
|
/external/tensorflow/tensorflow/python/framework/ |
D | python_api_info.cc | 141 attributes_.reserve(op_def.attr_size()); in Initialize() 175 for (const auto& attr : attributes_) { in CheckParamNames() 242 attributes_.push_back({param_index, dtype, name, inferred_index}); in InitializeAttribute() 243 Attribute& attr = attributes_.back(); in InitializeAttribute() 403 if (!attributes_.empty()) { in DebugInfo() 405 for (const auto& attrib : attributes_) { in DebugInfo()
|
D | python_api_info.h | 187 const std::vector<Attribute>& attributes() const { return attributes_; } in attributes() 281 std::vector<Attribute> attributes_; variable
|
/external/tensorflow/tensorflow/java/src/gen/cc/ |
D | op_specs.h | 149 const std::vector<AttributeSpec>& attributes() const { return attributes_; } in attributes() 172 std::vector<AttributeSpec> attributes_; variable
|
D | java_defs.h | 177 const string& attributes() const { return attributes_; } in attributes() 179 attributes_ = attributes; in attributes() 184 string attributes_;
|
D | op_specs.cc | 377 op.attributes_.push_back(attr); in Create()
|
/external/libbrillo/install_attributes/tests/ |
D | libinstallattributes_test.cc | 18 size_t GetAttributesCount() const { return attributes_.size(); } in GetAttributesCount()
|
/external/tensorflow/tensorflow/c/eager/parallel_device/ |
D | parallel_device_lib.cc | 129 const TFE_OpAttrs* attributes_ TF_GUARDED_BY(execution_mutex_); 166 Execute(context_, operation_name_, std::move(op_inputs_), attributes_, in Run() 191 attributes_ = attributes; in StartExecute()
|
/external/deqp/modules/gles2/performance/ |
D | es2pShaderOptimizationTests.cpp | 121 …_, const vector<gls::AttribSpec>& attributes_ = vector<gls::AttribSpec>()) : sources(sources_), at… in ProgramData()
|
/external/deqp/modules/gles3/performance/ |
D | es3pShaderOptimizationTests.cpp | 121 …_, const vector<gls::AttribSpec>& attributes_ = vector<gls::AttribSpec>()) : sources(sources_), at… in ProgramData()
|