HomeSort by relevance Sort by last modified time
    Searched defs:package (Results 1 - 25 of 43) 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
37 package { }
39 | package imports { }
42 package: label
43 PACKAGE { }
89 b->package = g_currentPackage ? strdup(g_currentPackage) : NULL;
110 b->package = g_currentPackage ? strdup(g_currentPackage) : NULL;
170 c->package = g_currentPackage ? strdup(g_currentPackage) : NULL;
AST.h 360 string package; member in struct:Document
Type.h 28 Type(const string& package, const string& name,
33 inline string Package() const { return m_package; }
357 UserDataType(const string& package, const string& name,
389 InterfaceType(const string& package, const string& name,
408 GenericType(const string& package, const string& name,
449 GenericListType(const string& package, const string& name,
479 void AddGenericType(const string& package, const string& name, int args);
483 Type* Find(const char* package, const char* name) const;
492 string package; member in struct:Namespace::Generic
aidl_language.h 90 char* package; member in struct:user_data_type
101 char* package; member in struct:interface_type
157 // the package name for our current file
  /libcore/support/src/test/java/tests/resources/Package/
hyts_package.jar 
  /device/ti/panda/audio/test/
music-monkey.py 10 # sets a variable with the package's internal name
11 package = 'com.android.music' variable
13 # sets a variable with the name of an Activity in the package
17 runComponent = package + '/' + activity
  /build/tools/
java-layers.py 14 sys.stderr.write("Prints a warning when an unknown package is encountered\n")
20 sys.stderr.write(" - Lines consisting of two java package names: The\n")
21 sys.stderr.write(" first package listed must not contain any references\n")
22 sys.stderr.write(" to any classes present in the second package, or any\n")
24 sys.stderr.write(" - Lines consisting of one java package name: The\n")
25 sys.stderr.write(" packge is assumed to be a high level package and\n")
28 sys.stderr.write(" package name: The package is considered a low level\n")
29 sys.stderr.write(" package and may not import any of the other packages\n")
32 sys.stderr.write(" package name: The package is considered \'legacy\'\n"
231 sys.stderr.write("%s: Illegal import in package '%s' of '%s'\\n" namespace
    [all...]
  /cts/
CtsBuild.mk 47 define cts-get-package-paths
  /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 26 /// \brief True if it is specified hidden or a parent package is specified
31 // 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;
103 // Invert the mapping of checkers to package/group into a one to many
108 std::vector<Record*> packages = Records.getAllDerivedDefinitions("Package");
132 Record *package = 0; local
135 package = DI->getDef();
136 if (!isCheckerNamed(R) && !package)
    [all...]
  /external/open-vcdiff/gflags/src/
gflags_reporting.cc 77 "show help on all modules in the main package");
416 const string package = Dirname(flag->filename) + "/"; local
417 if (package != last_package) {
418 ShowUsageWithFlagsRestrict(progname, package.c_str());
423 last_package = package;
426 if (last_package.empty()) { // never found a package to print
427 fprintf(stderr, "WARNING: Unable to find a package for file=%s\n",
  /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...]
  /build/core/
definitions.mk 671 ## Package filtering
680 define _get-package-overrides
701 define get-package-overrides
702 $(sort $(strip $(call _get-package-overrides,$(1))))
    [all...]
  /external/checkpolicy/test/
dismod.c 717 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/
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)
466 # debug package stuff
  /libcore/support/src/test/java/tests/resources/
junit4-4.3.1.jar 

Completed in 645 milliseconds

1 2