Searched defs:package (Results 1 - 20 of 20) sorted by relevance

/external/webkit/Source/WebCore/plugins/android/
H A DPluginDataAndroid.cpp43 PluginPackage* package = plugins[i]; local
45 info.name = package->name();
46 info.file = package->fileName();
47 info.desc = package->description();
49 const MIMEToDescriptionsMap& mimeToDescriptions = package->mimeToDescriptions();
55 mime.extensions = package->mimeToExtensions().get(mime.type);
/external/webkit/Source/WebCore/plugins/gtk/
H A DPluginDataGtk.cpp37 PluginPackage* package = plugins[i]; local
39 info.name = package->name();
40 info.file = package->fileName();
41 info.desc = package->description();
43 const MIMEToDescriptionsMap& mimeToDescriptions = package->mimeToDescriptions();
50 mime.extensions = package->mimeToExtensions().get(mime.type);
/external/webkit/Source/WebCore/plugins/wx/
H A DPluginDataWx.cpp43 PluginPackage* package = plugins[i]; local
45 info.name = package->name();
46 info.file = package->fileName();
47 info.desc = package->description();
49 const MIMEToDescriptionsMap& mimeToDescriptions = package->mimeToDescriptions();
56 mime.extensions = package->mimeToExtensions().get(mime.type);
/external/webkit/Source/WebKit2/Shared/Plugins/Netscape/x11/
H A DNetscapePluginModuleX11.cpp71 RefPtr<PluginPackage> package = PluginPackage::createPackage(pluginPath, 0 /*lastModified*/); local
72 if (!package)
76 plugin.info.desc = package->description();
77 plugin.info.file = package->fileName();
79 const MIMEToDescriptionsMap& descriptions = package->mimeToDescriptions();
80 const MIMEToExtensionsMap& extensions = package->mimeToExtensions();
94 package->unload();
/external/webkit/Source/WebKit/win/WebCoreSupport/
H A DWebPlatformStrategies.cpp76 PluginPackage* package = plugins[i]; local
79 info.name = package->name();
80 info.file = package->fileName();
81 info.desc = package->description();
83 const MIMEToDescriptionsMap& mimeToDescriptions = package->mimeToDescriptions();
93 mime.extensions = package->mimeToExtensions().get(mime.type);
/external/chromium/chrome/browser/download/
H A Dsave_item.cc17 SavePackage* package,
28 package_(package) {
29 DCHECK(package);
15 SaveItem(const GURL& url, const GURL& referrer, SavePackage* package, SaveFileCreateInfo::SaveFileSource save_source) argument
H A Dsave_item.h29 SavePackage* package,
70 SavePackage* package() const { return package_; } function in class:SaveItem
H A Dsave_file_manager.cc169 SavePackage* package) {
170 DCHECK(package);
176 package->tab_id());
177 DCHECK_EQ(old_package, package);
337 SavePackage* package = LookupPackage(save_id); local
338 if (package)
339 package->UpdateSaveProgress(save_id, bytes_so_far, write_success);
348 SavePackage* package = LookupPackage(save_id); local
349 if (package)
350 package
168 RemoveSaveFile(int save_id, const GURL& save_url, SavePackage* package) argument
[all...]
/external/webkit/Source/WebKit/gtk/webkit/
H A Dwebkitwebplugin.cpp128 WebKitWebPlugin* kitNew(WebCore::PluginPackage* package) argument
132 plugin->priv->corePlugin = package;
/external/webkit/Source/WebKit/qt/Api/
H A Dqwebplugindatabase.cpp62 QWebPluginInfo::QWebPluginInfo(PluginPackage* package) argument
63 : m_package(package)
/external/chromium/net/http/
H A Dhttp_auth_sspi_win.cc22 const SEC_WCHAR* package) {
50 const SEC_WCHAR* package,
72 const_cast<SEC_WCHAR*>(package), // pszPackage
81 return MapAcquireCredentialsStatusToError(status, package);
84 int AcquireDefaultCredentials(SSPILibrary* library, const SEC_WCHAR* package, argument
94 const_cast<SEC_WCHAR*>(package), // pszPackage
103 return MapAcquireCredentialsStatusToError(status, package);
411 const std::wstring& package,
417 const_cast<wchar_t *>(package.c_str()), &pkg_info);
21 MapAcquireCredentialsStatusToError(SECURITY_STATUS status, const SEC_WCHAR* package) argument
49 AcquireExplicitCredentials(SSPILibrary* library, const SEC_WCHAR* package, const string16& domain, const string16& user, const string16& password, CredHandle* cred) argument
410 DetermineMaxTokenLength(SSPILibrary* library, const std::wstring& package, ULONG* max_token_length) argument
/external/chromium/sdch/open-vcdiff/src/
H A Dgflags_reporting.cc78 "show help on all modules in the main package");
414 const string package = Dirname(flag->filename) + "/"; local
415 if (package != last_package) {
416 ShowUsageWithFlagsRestrict(progname, package.c_str());
421 last_package = package;
424 if (last_package.empty()) { // never found a package to print
425 fprintf(stderr, "WARNING: Unable to find a package for file=%s\n",
/external/clang/utils/TableGen/
H A DClangSACheckersEmitter.cpp25 /// \brief True if it is specified hidden or a parent package is specified
30 // Not declared as hidden, check the parent package if it is hidden.
83 static void addPackageToCheckerGroup(const Record *package, const Record *group, argument
85 llvm::DenseSet<const Record *> &checkers = recordGroupMap[package]->Checkers;
90 llvm::DenseSet<const Record *> &subGroups = recordGroupMap[package]->SubGroups;
103 // Invert the mapping of checkers to package/group into a one to many
132 Record *package = 0; local
135 package = DI->getDef();
136 if (!isCheckerNamed(R) && !package)
137 throw "Checker '" + R->getName() + "' is neither named, nor in a package!";
[all...]
/external/webkit/Source/WebCore/plugins/
H A DPluginPackage.cpp160 RefPtr<PluginPackage> package = adoptRef(new PluginPackage(path, lastModified)); local
162 if (!package->fetchInfo())
165 return package.release();
171 RefPtr<PluginPackage> package = adoptRef(new PluginPackage(path, lastModified)); local
172 package->m_name = name;
173 package->m_description = description;
174 package->determineModuleVersionFromDescription();
175 package->setMIMEDescription(mimeDescription);
176 package->m_infoIsFromCache = true;
177 return package
[all...]
H A DPluginDatabase.cpp146 RefPtr<PluginPackage> package = PluginPackage::createPackage(*it, lastModified); local
147 if (package && add(package.release()))
329 RefPtr<PluginPackage> package = prpPackage; local
331 if (!m_plugins.add(package).second)
334 m_pluginsByPath.add(package->path(), package);
338 void PluginDatabase::remove(PluginPackage* package) argument
340 MIMEToExtensionsMap::const_iterator it = package->mimeToExtensions().begin();
341 MIMEToExtensionsMap::const_iterator end = package
585 RefPtr<PluginPackage> package = PluginPackage::createPackageFromCache(path, lastModified, name, desc, mimeDesc); local
[all...]
/external/checkpolicy/test/
H A Ddismod.c717 package use the package reader, otherwise use the normal
725 sepol_module_package_t *package; local
726 if (sepol_module_package_create(&package)) {
730 package->policy = (sepol_policydb_t *) policy;
731 package->file_contexts = NULL;
733 sepol_module_package_read(package,
735 free(package->file_contexts);
/external/e2fsprogs/debian/
H A Drules5 # invoked with the package root as the current directory.
28 # find the version for the main package, from changelog file
48 package=e2fsprogs macro
85 # docdir=${maindir}/usr/share/doc/${package}
89 UDEB_NAME = $(package)-udeb_$(MAIN_VERSION)_$(DEB_HOST_ARCH).udeb
466 # debug package stuff
/external/webkit/Source/WebKit/qt/WebCoreSupport/
H A DWebPlatformStrategies.cpp124 PluginPackage* package = plugins[i]; local
126 info.name = package->name();
127 info.file = package->fileName();
128 info.desc = package->description();
130 const MIMEToDescriptionsMap& mimeToDescriptions = package->mimeToDescriptions();
137 mime.extensions = package->mimeToExtensions().get(mime.type);
/external/webkit/Source/WebKit/wince/WebCoreSupport/
H A DPlatformStrategiesWinCE.cpp89 PluginPackage* package = plugins[i]; local
92 info.name = package->name();
93 info.file = package->fileName();
94 info.desc = package->description();
96 const MIMEToDescriptionsMap& mimeToDescriptions = package->mimeToDescriptions();
106 mime.extensions = package->mimeToExtensions().get(mime.type);
/external/protobuf/src/google/protobuf/
H A Ddescriptor.pb.h310 // optional string package = 2;
314 inline const ::std::string& package() const;
2540 // optional string package = 2;
2550 inline const ::std::string& FileDescriptorProto::package() const { function in class:google::protobuf::FileDescriptorProto

Completed in 423 milliseconds