Home
last modified time | relevance | path

Searched refs:source_map_ (Results 1 – 11 of 11) sorted by relevance

/external/chromium_org/chrome/renderer/extensions/
Ddispatcher.cc458 source_map_(&ResourceBundle::GetSharedInstance()), in Dispatcher()
857 } else if (!source_map_.Contains(api_name)) { in RegisterBinding()
960 source_map_.RegisterSource("entryIdManager", IDR_ENTRY_ID_MANAGER); in PopulateSourceMap()
961 source_map_.RegisterSource(kEventBindings, IDR_EVENT_BINDINGS_JS); in PopulateSourceMap()
962 source_map_.RegisterSource("imageUtil", IDR_IMAGE_UTIL_JS); in PopulateSourceMap()
963 source_map_.RegisterSource("json_schema", IDR_JSON_SCHEMA_JS); in PopulateSourceMap()
964 source_map_.RegisterSource("lastError", IDR_LAST_ERROR_JS); in PopulateSourceMap()
965 source_map_.RegisterSource("messaging", IDR_MESSAGING_JS); in PopulateSourceMap()
966 source_map_.RegisterSource("messaging_utils", IDR_MESSAGING_UTILS_JS); in PopulateSourceMap()
967 source_map_.RegisterSource("pepper_request", IDR_PEPPER_REQUEST_JS); in PopulateSourceMap()
[all …]
Dmodule_system.cc124 source_map_(source_map), in ModuleSystem()
516 if (!source_map_->Contains(module_name)) in GetSource()
519 v8::Local<v8::Value>(source_map_->GetSource(GetIsolate(), module_name))); in GetSource()
Dmodule_system.h199 SourceMap* source_map_; variable
Ddispatcher.h296 ResourceBundleSourceMap source_map_; variable
/external/chromium_org/chrome/test/base/
Dmodule_system_test.cc104 if (source_map_.count(name) == 0) in GetSource()
106 return v8::String::NewFromUtf8(isolate, source_map_[name].c_str()); in GetSource()
110 return source_map_.count(name); in Contains()
114 CHECK_EQ(0u, source_map_.count(name)) << "Module " << name << " not found"; in RegisterModule()
115 source_map_[name] = source; in RegisterModule()
119 std::map<std::string, std::string> source_map_; member in ModuleSystemTest::StringSourceMap
133 source_map_(new StringSourceMap()), in ModuleSystemTest()
137 module_system_.reset(new ModuleSystem(context_.get(), source_map_.get())); in ModuleSystemTest()
153 source_map_->RegisterModule(name, code); in RegisterModule()
160 source_map_->RegisterModule(name, code); in RegisterModule()
[all …]
Dmodule_system_test.h65 scoped_ptr<StringSourceMap> source_map_; variable
/external/chromium_org/media/midi/
Dmidi_manager_mac.cc95 source_map_[src] = i; in Initialize()
150 SourceMap::iterator j = source_map_.find(source); in ReadMIDI()
151 if (j == source_map_.end()) in ReadMIDI()
153 uint32 port_index = source_map_[source]; in ReadMIDI()
Dmidi_manager_mac.h67 SourceMap source_map_; variable
/external/chromium_org/net/dns/
Daddress_sorter_posix.cc293 SourceAddressInfo& src_info = source_map_[src.address()]; in Sort()
320 source_map_.clear(); in OnIPAddressChanged()
331 SourceAddressInfo& info = source_map_[address]; in OnIPAddressChanged()
357 SourceAddressInfo& info = source_map_[src.address()]; in OnIPAddressChanged()
Daddress_sorter_posix.h82 mutable SourceAddressMap source_map_; variable
Daddress_sorter_posix_unittest.cc154 AddressSorterPosix::SourceAddressInfo* info = &sorter_.source_map_[address]; in GetSourceInfo()