HomeSort by relevance Sort by last modified time
    Searched defs:package (Results 1 - 25 of 29) sorted by null

1 2

  /build/tools/signapk/test/
run 3 package := NotePad.apk macro
5 all: out/signed-$(package)
26 out/signed-$(package): $(package) $(cert)
  /external/webkit/Source/WebCore/plugins/android/
PluginDataAndroid.cpp 43 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/
PluginDataGtk.cpp 37 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/
PluginDataWx.cpp 43 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/WebKit/win/WebCoreSupport/
WebPlatformStrategies.cpp 76 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/webkit/Source/WebKit2/Shared/Plugins/Netscape/x11/
NetscapePluginModuleX11.cpp 71 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();
  /frameworks/base/tools/aidl/
aidl_language_y.y 16 %token PACKAGE
34 package { }
36 | package imports { }
39 package: label
40 PACKAGE { }
86 b->package = g_currentPackage ? strdup(g_currentPackage) : NULL;
127 c->package = g_currentPackage ? strdup(g_currentPackage) : NULL;
Type.h 28 Type(const string& package, const string& name,
33 inline string Package() const { return m_package; }
313 ParcelableType(const string& package, const string& name,
338 InterfaceType(const string& package, const string& name,
357 GenericType(const string& package, const string& name,
381 GenericListType(const string& package, const string& name,
412 void AddGenericType(const string& package, const string& name, int args);
416 Type* Find(const char* package, const char* name) const;
425 string package; member in struct:Namespace::Generic
aidl_language.h 78 char* package; member in struct:parcelable_type
88 char* package; member in struct:interface_type
144 // the package name for our current file
AST.h 338 string package; member in struct:Document
  /libcore/support/src/test/java/tests/resources/Package/
hyts_package.jar 
  /build/core/
definitions.mk 663 ## Package filtering
672 define _get-package-overrides
693 define get-package-overrides
694 $(strip $(sort $(call _get-package-overrides,$(1))))
    [all...]
  /external/chromium/chrome/browser/download/
save_item.h 29 SavePackage* package,
70 SavePackage* package() const { return package_; } function in class:SaveItem
save_file_manager.cc 169 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->SaveFinished(save_id, bytes_so_far, is_success)
    [all...]
  /external/chromium/sdch/open-vcdiff/src/
gflags_reporting.cc 78 "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/
ClangSACheckersEmitter.cpp 25 /// \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,
85 llvm::DenseSet<const Record *> &checkers = recordGroupMap[package]->Checkers;
90 llvm::DenseSet<const Record *> &subGroups = recordGroupMap[package]->SubGroups;
102 // Invert the mapping of checkers to package/group into a one to many
107 std::vector<Record*> packages = Records.getAllDerivedDefinitions("Package");
131 Record *package = 0; local
134 package = DI->getDef();
135 if (!isCheckerNamed(R) && !package)
    [all...]
  /external/webkit/Source/WebCore/plugins/
PluginPackage.cpp 160 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.release()
    [all...]
PluginDatabase.cpp 146 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)
340 MIMEToExtensionsMap::const_iterator it = package->mimeToExtensions().begin();
341 MIMEToExtensionsMap::const_iterator end = package->mimeToExtensions().end()
585 RefPtr<PluginPackage> package = PluginPackage::createPackageFromCache(path, lastModified, name, desc, mimeDesc); local
    [all...]
  /external/e2fsprogs/debian/
rules 5 # 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
90 UDEB_PRIORITY = $(shell grep '^Package: e2fsprogs-udeb' debian/control.in -A 10 | grep ^Priority: | cut -d ' ' -f 2)
94 BLKID_UDEB_PRIORITY = $(shell grep '^Package: libblkid1-udeb' debian/control.in -A 10 | grep ^Priority: | cut -d ' ' -f 2)
97 UUID_UDEB_PRIORITY = $(shell grep '^Package: libuuid1-udeb' debian/control.in -A 10 | grep ^Priority: | cut -d ' ' -f 2)
468 # debug package stuff
  /libcore/support/src/test/java/tests/resources/
junit4-4.3.1.jar 
  /dalvik/dexdump/
DexDump.cpp 24 * - classes in same package are not all grouped together; generally speaking
224 return "\"package\"";
1734 char* package = NULL; local
    [all...]
  /external/webkit/Source/WebKit/qt/WebCoreSupport/
WebPlatformStrategies.cpp 124 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/
PlatformStrategiesWinCE.cpp 89 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);
  /frameworks/base/tools/aapt/
ResourceTable.cpp 132 "a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\n"
133 "or to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\"."},
235 "\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\n"
237 "\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\n"
1862 String16 package, type, name; local
1997 String16 package, type, name; local
    [all...]
  /frameworks/base/include/utils/
ResourceTypes.h 208 #define Res_MAKEID(package, type, entry) \
209 (((package+1)<<24) | (((type+1)&0xFF)<<16) | (entry&0xFFFF))
338 * where pp is the package index, tt is the type index in that
339 * package, and eeee is the entry index in that type. The package
764 * A collection of resource data types within a package. Followed by
772 // If this is a base package, its ID. Package IDs start
773 // at 1 (corresponding to the value of the package bits in a
774 // resource identifier). 0 means this is not a base package
1827 const char16_t* package; member in struct:android::ResTable::resource_name
    [all...]

Completed in 682 milliseconds

1 2