/external/libchrome/base/trace_event/ |
memory_allocator_dump.cc | 30 attributes_(new TracedValue), 62 attributes_->BeginDictionary(name); 63 attributes_->SetString("type", kTypeScalar); 64 attributes_->SetString("units", units); 65 attributes_->SetString("value", string_conversion_buffer_); 66 attributes_->EndDictionary(); 72 attributes_->BeginDictionary(name); 73 attributes_->SetString("type", kTypeScalar); 74 attributes_->SetString("units", units); 75 attributes_->SetDouble("value", value) [all...] |
memory_allocator_dump.h | 79 TracedValue* attributes_for_testing() const { return attributes_.get(); } 84 scoped_refptr<TracedValue> attributes_; member in class:base::trace_event::MemoryAllocatorDump
|
/system/connectivity/shill/net/ |
attribute_list.cc | 42 if (ContainsKey(attributes_, id)) { 46 attributes_[id] = AttributePointer(factory.Run(id)); 80 for (i = attributes_.begin(); i != attributes_.end(); ++i) { 129 for (i = attributes_.begin(); i != attributes_.end(); ++i) { 145 if (ContainsKey(attributes_, id)) { 149 attributes_[id] = AttributePointer( 172 if (ContainsKey(attributes_, id)) { 176 attributes_[id] = AttributePointer [all...] |
attribute_list.h | 51 // and adds it to |attributes_|. 61 // using |factory|, initializes it from |value|, and adds it to |attributes_|. 150 AttributeMap attributes_; member in class:shill::AttributeList 161 : iter_(list.attributes_.begin()), 162 end_(list.attributes_.end()) {
|
generic_netlink_message.cc | 65 ByteString attribute_string = attributes_->Encode(); 102 attributes_->Print(detail_log_level, 1); 121 Bind(&NetlinkAttribute::NewControlAttributeFromId), attributes_);
|
generic_netlink_message.h | 73 attributes_(new AttributeList), 82 AttributeListConstRefPtr const_attributes() const { return attributes_; } 83 AttributeListRefPtr attributes() { return attributes_; } 95 AttributeListRefPtr attributes_; member in class:shill::GenericNetlinkMessage
|
rtnl_message.h | 199 return ContainsKey(attributes_, attr); 203 attributes_.find(attr)->second : ByteString(0); 206 attributes_[attr] = val; 251 std::unordered_map<uint16_t, ByteString> attributes_; member in class:shill::RTNLMessage
|
rtnl_message.cc | 157 attributes_.clear(); 389 for (auto attr = attributes_.begin(); attr != attributes_.end(); ++attr) { 523 attributes_.clear();
|
netlink_attribute.cc | 818 for (attribute = value_->attributes_.begin(); 819 attribute != value_->attributes_.end(); [all...] |
nl80211_message.cc | 104 Bind(&NetlinkAttribute::NewNl80211AttributeFromId, context), attributes_);
|
/external/libweave/src/notification/ |
xml_node.cc | 15 : name_{name}, attributes_{std::move(attributes)} {} 26 return attributes_; 34 auto p = attributes_.find(name); 35 if (p == attributes_.end()) 103 for (const auto& pair : attributes_) {
|
xml_node.h | 114 std::map<std::string, std::string> attributes_; member in class:weave::final
|
/external/boringssl/src/crypto/test/ |
file_test.cc | 136 attributes_[key] = value; 175 return attributes_.count(key) > 0; 180 auto iter = attributes_.find(key); 181 if (iter == attributes_.end()) { 193 return attributes_[key]; 268 attributes_.clear();
|
file_test.h | 145 // attributes_ contains all attributes in the test, including the first. 146 std::map<std::string, std::string> attributes_; member in class:FileTest
|
/external/v8/test/cctest/ |
test-field-type-tracking.cc | 89 PropertyAttributes attributes_[MAX_PROPERTIES]; member in class:Expectations 106 attributes_[index] = attributes; 140 os << ", attrs: " << attributes_[i] << ")\n"; 158 SetDataField(index, attributes_[index], representation, value); 167 SetAccessorField(index, attributes_[index]); 176 SetDataConstant(index, attributes_[index], value); 206 SetAccessorConstant(index, attributes_[index], getter, setter); 226 if (!EqualDetails(descriptors, descriptor, type, attributes_[descriptor], [all...] |
/toolchain/binutils/binutils-2.25/gold/ |
dwarf_reader.cc | 652 child_offset_(0), sibling_offset_(0), abbrev_code_(NULL), attributes_(), 691 this->attributes_.reserve(nattr); 906 this->attributes_.push_back(attr_value); 1051 for (unsigned int i = 0; i < this->attributes_.size(); ++i) 1053 if (this->attributes_[i].attr == attr) 1054 return &this->attributes_[i]; [all...] |
dwarf_reader.h | 659 Attributes attributes_; member in class:gold::Dwarf_die [all...] |
script-sections.cc | 53 attributes_(attributes), 170 unsigned int attributes_; member in class:gold::Memory_region 193 unsigned int attrs = this->attributes_; 242 unsigned int attrs = this->attributes_; [all...] |
/external/deqp/modules/gles2/performance/ |
es2pShaderOptimizationTests.cpp | 121 ProgramData (const glu::ProgramSources& sources_, const vector<gls::AttribSpec>& attributes_ = vector<gls::AttribSpec>()) : sources(sources_), attributes(attributes_) {} [all...] |
/external/deqp/modules/gles3/performance/ |
es3pShaderOptimizationTests.cpp | 121 ProgramData (const glu::ProgramSources& sources_, const vector<gls::AttribSpec>& attributes_ = vector<gls::AttribSpec>()) : sources(sources_), attributes(attributes_) {} [all...] |
/prebuilts/tools/common/m2/repository/net/sourceforge/htmlunit/htmlunit/2.14/ |
htmlunit-2.14.jar | |
/external/clang/docs/ |
Modules.rst | 361 The ``system`` attribute specifies that the module is a system module. When a system module is rebuilt, all of the module's headers will be considered system headers, which suppresses warnings. This is equivalent to placing ``#pragma GCC system_header`` in each of the module's headers. The form of attributes is described in the section Attributes_, below. [all...] |