HomeSort by relevance Sort by last modified time
    Searched defs:package (Results 1 - 25 of 32) 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
36 package { }
38 | package imports { }
41 package: label
42 PACKAGE { }
88 b->package = g_currentPackage ? strdup(g_currentPackage) : NULL;
109 b->package = g_currentPackage ? strdup(g_currentPackage) : NULL;
169 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 86 char* package; member in struct:user_data_type
97 char* package; member in struct:interface_type
153 // 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
  /cts/
CtsBuild.mk 43 define cts-get-package-paths
  /build/core/
definitions.mk 670 ## Package filtering
679 define _get-package-overrides
700 define get-package-overrides
701 $(sort $(strip $(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/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)
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\"";
1722 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);

Completed in 877 milliseconds

1 2