/external/doclava/res/assets/templates/ |
D | package.cs | 12 <?cs call:since_tags(package) ?> 13 <?cs call:federated_refs(package) ?> 18 package 19 <h1><?cs var:package.name ?></h1> 26 <?cs if:subcount(package.descr) ?> 28 <?cs call:tag_list(package.descr) ?> 41 <?cs call:class_table("Interfaces", package.interfaces) ?> 42 <?cs call:class_table("Classes", package.classes) ?> 43 <?cs call:class_table("Enums", package.enums) ?> 44 <?cs call:class_table("Exceptions", package.exceptions) ?> [all …]
|
/external/doclava/res/assets/templates/components/ |
D | left_nav.cs | 19 if:subcount(class.package) ?> 21 <?cs call:list("Interfaces", class.package.interfaces) ?> 22 <?cs call:list("Classes", class.package.classes) ?> 23 <?cs call:list("Enums", class.package.enums) ?> 24 <?cs call:list("Exceptions", class.package.exceptions) ?> 25 <?cs call:list("Errors", class.package.errors) ?> 27 elif:subcount(package) ?> 29 <?cs call:class_link_list("Interfaces", package.interfaces) ?> 30 <?cs call:class_link_list("Classes", package.classes) ?> 31 <?cs call:class_link_list("Enums", package.enums) ?> [all …]
|
/external/webkit/Source/WebKit2/Shared/Plugins/Netscape/x11/ |
D | NetscapePluginModuleX11.cpp | 71 RefPtr<PluginPackage> package = PluginPackage::createPackage(pluginPath, 0 /*lastModified*/); in getPluginInfo() local 72 if (!package) in getPluginInfo() 76 plugin.info.desc = package->description(); in getPluginInfo() 77 plugin.info.file = package->fileName(); in getPluginInfo() 79 const MIMEToDescriptionsMap& descriptions = package->mimeToDescriptions(); in getPluginInfo() 80 const MIMEToExtensionsMap& extensions = package->mimeToExtensions(); in getPluginInfo() 94 package->unload(); in getPluginInfo()
|
/external/webkit/Source/WebCore/plugins/wx/ |
D | PluginDataWx.cpp | 43 PluginPackage* package = plugins[i]; in initPlugins() local 45 info.name = package->name(); in initPlugins() 46 info.file = package->fileName(); in initPlugins() 47 info.desc = package->description(); in initPlugins() 49 const MIMEToDescriptionsMap& mimeToDescriptions = package->mimeToDescriptions(); in initPlugins() 56 mime.extensions = package->mimeToExtensions().get(mime.type); in initPlugins()
|
/external/webkit/Source/WebCore/plugins/gtk/ |
D | PluginDataGtk.cpp | 37 PluginPackage* package = plugins[i]; in initPlugins() local 39 info.name = package->name(); in initPlugins() 40 info.file = package->fileName(); in initPlugins() 41 info.desc = package->description(); in initPlugins() 43 const MIMEToDescriptionsMap& mimeToDescriptions = package->mimeToDescriptions(); in initPlugins() 50 mime.extensions = package->mimeToExtensions().get(mime.type); in initPlugins()
|
/external/webkit/Source/WebCore/plugins/android/ |
D | PluginDataAndroid.cpp | 43 PluginPackage* package = plugins[i]; in initPlugins() local 45 info.name = package->name(); in initPlugins() 46 info.file = package->fileName(); in initPlugins() 47 info.desc = package->description(); in initPlugins() 49 const MIMEToDescriptionsMap& mimeToDescriptions = package->mimeToDescriptions(); in initPlugins() 55 mime.extensions = package->mimeToExtensions().get(mime.type); in initPlugins()
|
/external/dropbear/debian/ |
D | dropbear.README.Debian | 4 This package will attempt to listen on port 22. If the OpenSSH 5 package ("ssh") is installed, the file /etc/default/dropbear 13 This package suggests you install the "ssh" package. This package 21 You will still want to have the "ssh" package installed, as it 23 package, it checks for existing OpenSSH host keys and if found, 46 The dropbear binary package is configured at compile time to read 51 re-compile the package with DROPBEAR_RANDOM_DEV set to /dev/urandom
|
D | README.Debian.diet | 4 This package optionally can be built with the diet libc instead of the 5 glibc to provide small statically linked programs. The resulting package 6 has no dependency on any other package. 9 package is installed, and set DEB_BUILD_OPTIONS=diet in the environment 10 when building the package, e.g.:
|
D | README.Debian | 4 This package will attempt to listen on port 22. If the OpenSSH 5 package ("ssh") is installed, the file /etc/default/dropbear 13 This package suggests you install the "ssh" package. This package 21 You will still want to have the "ssh" package installed, as it 23 package, it checks for existing OpenSSH host keys and if found,
|
/external/webkit/Source/WebKit/win/WebCoreSupport/ |
D | WebPlatformStrategies.cpp | 76 PluginPackage* package = plugins[i]; in getPluginInfo() local 79 info.name = package->name(); in getPluginInfo() 80 info.file = package->fileName(); in getPluginInfo() 81 info.desc = package->description(); in getPluginInfo() 83 const MIMEToDescriptionsMap& mimeToDescriptions = package->mimeToDescriptions(); in getPluginInfo() 93 mime.extensions = package->mimeToExtensions().get(mime.type); in getPluginInfo()
|
/external/webkit/Source/WebCore/plugins/ |
D | PluginDatabase.cpp | 146 RefPtr<PluginPackage> package = PluginPackage::createPackage(*it, lastModified); in refresh() local 147 if (package && add(package.release())) in refresh() 329 RefPtr<PluginPackage> package = prpPackage; in add() local 331 if (!m_plugins.add(package).second) in add() 334 m_pluginsByPath.add(package->path(), package); in add() 338 void PluginDatabase::remove(PluginPackage* package) in remove() argument 340 MIMEToExtensionsMap::const_iterator it = package->mimeToExtensions().begin(); in remove() 341 MIMEToExtensionsMap::const_iterator end = package->mimeToExtensions().end(); in remove() 344 if (packageInMap != m_preferredPlugins.end() && packageInMap->second == package) in remove() 348 m_plugins.remove(package); in remove() [all …]
|
D | PluginPackage.cpp | 160 RefPtr<PluginPackage> package = adoptRef(new PluginPackage(path, lastModified)); in createPackage() local 162 if (!package->fetchInfo()) in createPackage() 165 return package.release(); in createPackage() 171 RefPtr<PluginPackage> package = adoptRef(new PluginPackage(path, lastModified)); in createPackageFromCache() local 172 package->m_name = name; in createPackageFromCache() 173 package->m_description = description; in createPackageFromCache() 174 package->determineModuleVersionFromDescription(); in createPackageFromCache() 175 package->setMIMEDescription(mimeDescription); in createPackageFromCache() 176 package->m_infoIsFromCache = true; in createPackageFromCache() 177 return package.release(); in createPackageFromCache()
|
/external/elfutils/ |
D | INSTALL | 8 those values to create a `Makefile' in each directory of the package. 16 If you need to do unusual things to compile the package, please try 26 The simplest way to compile this package is: 28 1. `cd' to the directory containing the package's source code and type 29 `./configure' to configure the package for your system. If you're 37 2. Type `make' to compile the package. 40 the package. 47 files that `configure' created (so you can compile the package for 50 for the package's developers. If you use it, you may have to get 70 You can compile the package for more than one kind of computer at the [all …]
|
/external/strace/ |
D | INSTALL | 8 those values to create a `Makefile' in each directory of the package. 16 If you need to do unusual things to compile the package, please try 26 The simplest way to compile this package is: 28 1. `cd' to the directory containing the package's source code and type 29 `./configure' to configure the package for your system. If you're 37 2. Type `make' to compile the package. 40 the package. 47 files that `configure' created (so you can compile the package for 50 for the package's developers. If you use it, you may have to get 70 You can compile the package for more than one kind of computer at the [all …]
|
/external/libpng/ |
D | config.h.in | 52 /* Name of package */ 55 /* Define to the address where bug reports for this package should be sent. */ 58 /* Define to the full name of this package. */ 61 /* Define to the full name and version of this package. */ 64 /* Define to the one symbol short name of this package. */ 67 /* Define to the home page for this package. */ 70 /* Define to the version of this package. */ 79 /* Version number of package */
|
/external/protobuf/gtest/build-aux/ |
D | config.h.in | 40 /* Name of package */ 43 /* Define to the address where bug reports for this package should be sent. */ 46 /* Define to the full name of this package. */ 49 /* Define to the full name and version of this package. */ 52 /* Define to the one symbol short name of this package. */ 55 /* Define to the version of this package. */ 65 /* Version number of package */
|
/external/e2fsprogs/debian/ |
D | control.in | 51 This package contains the development environment for the com_err library. 59 This package includes a tool that parses a command table to generate 71 This package includes a tool that parses a command table to generate 77 This package contains the development environment for the ss library. 111 This package contains the uuidgen program and the uuidd daemon. 129 This is a minimal package for debian-installer. 141 This package contains the development environment for the uuid library. 167 This is a minimal package for debian-installer. 181 This package contains the development environment for the blkid library. 191 This package is an e2fsprogs package built for a reduced size, so that [all …]
|
/external/webp/ |
D | INSTALL | 14 configure, build, and install this package. The following 16 instructions specific to this package. 20 those values to create a `Makefile' in each directory of the package. 33 If you need to do unusual things to compile the package, please try 45 The simplest way to compile this package is: 47 1. `cd' to the directory containing the package's source code and type 48 `./configure' to configure the package for your system. 53 2. Type `make' to compile the package. 56 the package. 63 files that `configure' created (so you can compile the package for [all …]
|
/external/chromium/sdch/open-vcdiff/ |
D | INSTALL | 14 configure, build, and install this package. The following 16 instructions specific to this package. 20 those values to create a `Makefile' in each directory of the package. 33 If you need to do unusual things to compile the package, please try 45 The simplest way to compile this package is: 47 1. `cd' to the directory containing the package's source code and type 48 `./configure' to configure the package for your system. 53 2. Type `make' to compile the package. 56 the package. 63 files that `configure' created (so you can compile the package for [all …]
|
/external/bison/ |
D | PACKAGING | 1 Packaging hints for binary package distributors 4 Although the source of the bison package comes as a single package, 18 The 'bison-runtime' binary package is much smaller than the 'bison' 19 binary package. It should be included in any distribution that 34 belongs to the bison-runtime package; all other installed files belong 35 to the bison package.
|
/external/webkit/Tools/wx/build/ |
D | settings.py | 388 …conf.check_cfg(path=get_path_to_wxconfig(), args='--cxxflags --libs', package='', uselib_store='WX… 390 …(msg='Checking for libxslt', path='xslt-config', args='--cflags --libs', package='', uselib_store=… 391 …conf.check_cfg(path='xml2-config', args='--cflags --libs', package='', uselib_store='XML', mandato… 393 ….join(wklibs_dir, 'unix', 'bin', 'curl-config'), args='--cflags --libs', package='', uselib_store=… 395 …conf.check_cfg(path='curl-config', args='--cflags --libs', package='', uselib_store='CURL', mandat… 398 … conf.check_cfg(package='cairo', args='--cflags --libs', uselib_store='WX', mandatory=True) 399 … conf.check_cfg(package='pango', args='--cflags --libs', uselib_store='WX', mandatory=True) 400 … conf.check_cfg(package='gtk+-2.0', args='--cflags --libs', uselib_store='WX', mandatory=True) 401 … conf.check_cfg(package='sqlite3', args='--cflags --libs', uselib_store='SQLITE3', mandatory=True) 402 …conf.check_cfg(path='icu-config', args='--cflags --ldflags', package='', uselib_store='ICU', manda…
|
/external/elfutils/po/ |
D | Makevars | 1 # Makefile variables for PO directory in any package using GNU gettext. 3 # Usually the message domain is the same as the package name. 15 # package. (Note that the msgstr strings, extracted from the package's 16 # sources, belong to the copyright holder of the package.) Translators are
|
/external/elfutils/libelf-po/ |
D | Makevars | 1 # Makefile variables for PO directory in any package using GNU gettext. 3 # Usually the message domain is the same as the package name. 15 # package. (Note that the msgstr strings, extracted from the package's 16 # sources, belong to the copyright holder of the package.) Translators are
|
/external/protobuf/ |
D | INSTALL.txt | 22 those values to create a `Makefile' in each directory of the package. 35 If you need to do unusual things to compile the package, please try 47 The simplest way to compile this package is: 49 1. `cd' to the directory containing the package's source code and type 50 `./configure' to configure the package for your system. If you're 58 2. Type `make' to compile the package. 61 the package. 68 files that `configure' created (so you can compile the package for 71 for the package's developers. If you use it, you may have to get 93 You can compile the package for more than one kind of computer at the [all …]
|
/external/dbus/ |
D | INSTALL | 78 those values to create a `Makefile' in each directory of the package. 86 If you need to do unusual things to compile the package, please try 96 The simplest way to compile this package is: 98 1. `cd' to the directory containing the package's source code and type 99 `./configure' to configure the package for your system. If you're 107 2. Type `make' to compile the package. 110 the package. 117 files that `configure' created (so you can compile the package for 120 for the package's developers. If you use it, you may have to get 140 You can compile the package for more than one kind of computer at the [all …]
|