HomeSort by relevance Sort by last modified time
    Searched full:source_map_ (Results 1 - 13 of 13) sorted by null

  /external/chromium_org/extensions/renderer/
module_system_test.cc 106 if (source_map_.count(name) == 0)
108 return v8::String::NewFromUtf8(isolate, source_map_[name].c_str());
112 return source_map_.count(name);
116 CHECK_EQ(0u, source_map_.count(name)) << "Module " << name << " not found";
117 source_map_[name] = source;
121 std::map<std::string, std::string> source_map_; member in class:extensions::ModuleSystemTestEnvironment::StringSourceMap
128 source_map_(new StringSourceMap()) {
142 new ModuleSystem(context_.get(), source_map_.get()));
165 source_map_->RegisterModule(name, code);
173 source_map_->RegisterModule(name, code)
    [all...]
module_system.h 106 // Causes requireNative(|name|) to look for its module in |source_map_|
176 // |args[0]| - the name of a source file in source_map_.
213 SourceMap* source_map_; member in class:extensions::ModuleSystem
module_system_test.h 62 scoped_ptr<StringSourceMap> source_map_; member in class:extensions::ModuleSystemTestEnvironment
dispatcher.h 231 // Inserts static source code into |source_map_|.
293 ResourceBundleSourceMap source_map_; member in class:extensions::Dispatcher
module_system.cc 123 source_map_(source_map),
480 if (!source_map_->Contains(module_name))
483 v8::Local<v8::Value>(source_map_->GetSource(GetIsolate(), module_name)));
644 if (!source_map_->Contains(id))
dispatcher.cc 185 source_map_(&ResourceBundle::GetSharedInstance()),
300 new ModuleSystem(context, &source_map_));
    [all...]
  /external/chromium_org/media/midi/
midi_manager_alsa.h 51 SourceMap source_map_; member in class:media::MidiManagerAlsa
midi_manager_mac.cc 90 source_map_[src] = i;
144 SourceMap::iterator j = source_map_.find(source);
145 if (j == source_map_.end())
147 uint32 port_index = source_map_[source];
midi_manager_mac.h 67 SourceMap source_map_; member in class:media::MidiManagerMac
midi_manager_alsa.cc 254 source_map_[AddrToInt(sender)] = current_input++;
418 source_map_.find(AddrToInt(&event->source));
419 if (source_it != source_map_.end()) {
  /external/chromium_org/net/dns/
address_sorter_posix.h 82 mutable SourceAddressMap source_map_; member in class:net::AddressSorterPosix
address_sorter_posix.cc 293 SourceAddressInfo& src_info = source_map_[src.address()];
320 source_map_.clear();
331 SourceAddressInfo& info = source_map_[address];
357 SourceAddressInfo& info = source_map_[src.address()];
address_sorter_posix_unittest.cc 154 AddressSorterPosix::SourceAddressInfo* info = &sorter_.source_map_[address];

Completed in 665 milliseconds