HomeSort by relevance Sort by last modified time
    Searched refs:types_ (Results 1 - 18 of 18) sorted by null

  /external/chromium_org/content/browser/appcache/
appcache_entry.h 31 : types_(0), response_id_(kAppCacheNoResponseId), response_size_(0) {}
34 : types_(type), response_id_(kAppCacheNoResponseId), response_size_(0) {}
37 : types_(type), response_id_(response_id), response_size_(0) {}
40 : types_(type), response_id_(response_id), response_size_(response_size) {}
42 int types() const { return types_; }
43 void add_types(int added_types) { types_ |= added_types; }
44 bool IsMaster() const { return (types_ & MASTER) != 0; }
45 bool IsManifest() const { return (types_ & MANIFEST) != 0; }
46 bool IsExplicit() const { return (types_ & EXPLICIT) != 0; }
47 bool IsForeign() const { return (types_ & FOREIGN) != 0;
60 int types_; member in class:content::AppCacheEntry
    [all...]
  /external/chromium_org/tools/ipc_fuzzer/message_lib/
message_file_writer.cc 48 TypesSet types_; member in class:ipc_fuzzer::__anon206::Writer
85 types_.insert(type);
97 header.name_count = types_.size();
116 for (TypesSet::iterator it = types_.begin(); it != types_.end(); ++it) {
130 for (TypesSet::iterator it = types_.begin(); it != types_.end(); ++it) {
  /external/chromium_org/third_party/brotli/src/brotli/enc/
block_splitter.h 32 std::vector<uint8_t> types_; member in struct:brotli::BlockSplit
48 type_ = split_.types_[idx_];
block_splitter.cc 282 split->types_.push_back(cur_id);
290 split->types_.push_back(cur_id);
308 split->types_.push_back(0);
encode.cc 640 for (int i = 0; i < split->types_.size(); ++i) {
641 int type = split->types_[i];
688 it->type_ = it->split_.types_[it->idx_];
    [all...]
  /art/compiler/sea_ir/debug/
dot_gen.h 42 art::SafeMap<int, const Type*>* types): graph_(), types_(types), options_(options) { }
93 art::SafeMap<int, const Type*>* types_; member in class:sea_ir::DotGenerationVisitor
dot_gen.cc 54 art::SafeMap<int, const Type*>::const_iterator type_it = types_->find(def_it->second->Id());
55 if (type_it != types_->end()) {
86 art::SafeMap<int, const Type*>::const_iterator type_it = types_->find((*def_it)->Id());
87 if (type_it != types_->end()) {
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/
assert.hpp 334 # define BOOST_MPL_ASSERT_MSG_IMPL( counter, c, msg, types_ ) \
339 static boost::mpl::failed ************ (msg::************ assert_arg()) types_ \
350 # define BOOST_MPL_ASSERT_MSG_IMPL( counter, c, msg, types_ ) \
354 static boost::mpl::failed ************ (msg::************ assert_arg()) types_ \
366 #define BOOST_MPL_ASSERT_MSG( c, msg, types_ ) \
367 BOOST_MPL_ASSERT_MSG_IMPL( BOOST_MPL_AUX_PP_COUNTER(), c, msg, types_ ) \
  /external/chromium_org/sync/internal_api/
sync_rollback_manager_unittest.cc 108 types_ = types;
154 types_,
177 ModelTypeSet types_; member in class:syncer::__anon15418::SyncRollbackManagerTest
  /external/chromium_org/third_party/tcmalloc/chromium/src/tests/
tcmalloc_unittest.cc 210 : types_(new vector<Type>), total_weight_(0), num_tests_(0) {
214 delete types_;
248 vector<Type>* types_; // Registered types member in class:testing::TestHarness
258 types_->push_back(t);
270 for (i = 0; i < types_->size(); i++) {
271 v -= (*types_)[i].weight;
277 assert(i < types_->size());
280 num_tests_, FLAGS_numtests, (*types_)[i].name.c_str());
282 return (*types_)[i].type;
    [all...]
  /external/chromium_org/third_party/tcmalloc/vendor/src/tests/
tcmalloc_unittest.cc 210 : types_(new vector<Type>), total_weight_(0), num_tests_(0) {
214 delete types_;
248 vector<Type>* types_; // Registered types member in class:testing::TestHarness
258 types_->push_back(t);
270 for (i = 0; i < types_->size(); i++) {
271 v -= (*types_)[i].weight;
277 assert(i < types_->size());
280 num_tests_, FLAGS_numtests, (*types_)[i].name.c_str());
282 return (*types_)[i].type;
    [all...]
  /external/chromium_org/components/json_schema/
json_schema_validator.cc 434 CHECK(types_.find(id) == types_.end());
435 types_[id] = type;
453 TypeMap::iterator iter = types_.find(id);
454 if (iter == types_.end())
455 types_[id] = schema;
461 // that schema. It must be present in types_ to be referenced.
464 TypeMap::iterator type = types_.find(ref);
465 if (type == types_.end()) {
json_schema_validator.h 241 TypeMap types_; member in class:JSONSchemaValidator
  /external/chromium_org/chrome/browser/ui/webui/options/
preferences_browsertest.cc 450 types_.push_back("Boolean");
456 types_.push_back("Integer");
463 types_.push_back("List");
526 VerifySetPref(pref_names_[i], types_[i], non_default_values_[i], true);
554 VerifySetPref(pref_names_[i], types_[i], non_default_values_[i], false);
568 VerifySetPref(pref_names_[i], types_[i], non_default_values_[i], false);
577 VerifySetPref(pref_names_[i], types_[i], non_default_values_[i], false);
    [all...]
preferences_browsertest.h 186 std::vector<std::string> types_; member in class:PreferencesBrowserTest
  /external/chromium_org/extensions/browser/api/declarative_webrequest/
webrequest_condition_attribute.h 111 const std::vector<content::ResourceType> types_; member in class:extensions::WebRequestConditionAttributeResourceType
webrequest_condition_attribute.cc 129 : types_(types) {}
183 return std::find(types_.begin(), types_.end(), info->GetResourceType()) !=
184 types_.end();
202 return types_ == casted_other->types_;
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
CodeGeneratorInspector.py     [all...]

Completed in 723 milliseconds