/external/chromium_org/content/browser/appcache/ |
D | appcache_entry.h | 31 : types_(0), response_id_(kAppCacheNoResponseId), response_size_(0) {} in AppCacheEntry() 34 : types_(type), response_id_(kAppCacheNoResponseId), response_size_(0) {} in AppCacheEntry() 37 : types_(type), response_id_(response_id), response_size_(0) {} in AppCacheEntry() 40 : types_(type), response_id_(response_id), response_size_(response_size) {} in AppCacheEntry() 42 int types() const { return types_; } in types() 43 void add_types(int added_types) { types_ |= added_types; } in add_types() 44 bool IsMaster() const { return (types_ & MASTER) != 0; } in IsMaster() 45 bool IsManifest() const { return (types_ & MANIFEST) != 0; } in IsManifest() 46 bool IsExplicit() const { return (types_ & EXPLICIT) != 0; } in IsExplicit() 47 bool IsForeign() const { return (types_ & FOREIGN) != 0; } in IsForeign() [all …]
|
/external/chromium_org/tools/ipc_fuzzer/message_lib/ |
D | message_file_writer.cc | 48 TypesSet types_; member in ipc_fuzzer::__anonce46a4300111::Writer 85 types_.insert(type); in CollectMessageTypes() 97 header.name_count = types_.size(); in WriteHeader() 116 for (TypesSet::iterator it = types_.begin(); it != types_.end(); ++it) { in WriteNameTable() 130 for (TypesSet::iterator it = types_.begin(); it != types_.end(); ++it) { in WriteStringTable()
|
/external/chromium_org/third_party/brotli/src/brotli/enc/ |
D | block_splitter.h | 32 std::vector<uint8_t> types_; member 48 type_ = split_.types_[idx_]; in Next()
|
D | block_splitter.cc | 282 split->types_.push_back(cur_id); in BuildBlockSplit() 290 split->types_.push_back(cur_id); in BuildBlockSplit() 308 split->types_.push_back(0); in SplitByteVector()
|
D | encode.cc | 640 for (int i = 0; i < split->types_.size(); ++i) { in ComputeBlockTypeShortCodes() 641 int type = split->types_[i]; in ComputeBlockTypeShortCodes() 688 it->type_ = it->split_.types_[it->idx_]; in MoveAndEncode()
|
/external/chromium_org/third_party/tcmalloc/vendor/src/tests/ |
D | tcmalloc_unittest.cc | 210 : types_(new vector<Type>), total_weight_(0), num_tests_(0) { in TestHarness() 214 delete types_; in ~TestHarness() 248 vector<Type>* types_; // Registered types member in testing::TestHarness 258 types_->push_back(t); in AddType() 270 for (i = 0; i < types_->size(); i++) { in PickType() 271 v -= (*types_)[i].weight; in PickType() 277 assert(i < types_->size()); in PickType() 280 num_tests_, FLAGS_numtests, (*types_)[i].name.c_str()); in PickType() 282 return (*types_)[i].type; in PickType()
|
/external/chromium_org/third_party/tcmalloc/chromium/src/tests/ |
D | tcmalloc_unittest.cc | 210 : types_(new vector<Type>), total_weight_(0), num_tests_(0) { in TestHarness() 214 delete types_; in ~TestHarness() 248 vector<Type>* types_; // Registered types member in testing::TestHarness 258 types_->push_back(t); in AddType() 270 for (i = 0; i < types_->size(); i++) { in PickType() 271 v -= (*types_)[i].weight; in PickType() 277 assert(i < types_->size()); in PickType() 280 num_tests_, FLAGS_numtests, (*types_)[i].name.c_str()); in PickType() 282 return (*types_)[i].type; in PickType()
|
/external/chromium_org/components/json_schema/ |
D | json_schema_validator.cc | 434 CHECK(types_.find(id) == types_.end()); in JSONSchemaValidator() 435 types_[id] = type; in JSONSchemaValidator() 453 TypeMap::iterator iter = types_.find(id); in Validate() 454 if (iter == types_.end()) in Validate() 455 types_[id] = schema; in Validate() 464 TypeMap::iterator type = types_.find(ref); in Validate() 465 if (type == types_.end()) { in Validate()
|
D | json_schema_validator.h | 241 TypeMap types_; variable
|
/external/chromium_org/sync/internal_api/ |
D | sync_rollback_manager_unittest.cc | 108 types_ = types; in InitManager() 154 types_, in ConfigureSyncer() 177 ModelTypeSet types_; member in syncer::__anone0d90f660111::SyncRollbackManagerTest
|
/external/chromium_org/extensions/browser/api/declarative_webrequest/ |
D | webrequest_condition_attribute.cc | 129 : types_(types) {} in WebRequestConditionAttributeResourceType() 183 return std::find(types_.begin(), types_.end(), info->GetResourceType()) != in IsFulfilled() 184 types_.end(); in IsFulfilled() 202 return types_ == casted_other->types_; in Equals()
|
D | webrequest_condition_attribute.h | 111 const std::vector<content::ResourceType> types_; variable
|
/external/chromium_org/chrome/browser/ui/webui/options/ |
D | preferences_browsertest.cc | 450 types_.push_back("Boolean"); in UseDefaultTestPrefs() 456 types_.push_back("Integer"); in UseDefaultTestPrefs() 463 types_.push_back("List"); in UseDefaultTestPrefs() 526 VerifySetPref(pref_names_[i], types_[i], non_default_values_[i], true); in IN_PROC_BROWSER_TEST_F() 554 VerifySetPref(pref_names_[i], types_[i], non_default_values_[i], false); in IN_PROC_BROWSER_TEST_F() 568 VerifySetPref(pref_names_[i], types_[i], non_default_values_[i], false); in IN_PROC_BROWSER_TEST_F() 577 VerifySetPref(pref_names_[i], types_[i], non_default_values_[i], false); in IN_PROC_BROWSER_TEST_F()
|
D | preferences_browsertest.h | 186 std::vector<std::string> types_; variable
|
/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
D | CodeGeneratorInspector.py | 1407 self.types_ = [] 1410 self.types_.append(type_data) 1416 return self.types_
|