HomeSort by relevance Sort by last modified time
    Searched full:manifest (Results 626 - 650 of 4304) sorted by null

<<21222324252627282930>>

  /build/tools/signapk/
SignApk.java 73 import java.util.jar.Manifest;
112 // bitmasks for which hash algorithms we need the manifest to include.
225 * Add the hash(es) of every file to the manifest, creating it if
228 private static Manifest addDigestsToManifest(JarFile jar, int hashes)
230 Manifest input = jar.getManifest();
231 Manifest output = new Manifest();
236 main.putValue("Manifest-Version", "1.0");
253 // output manifest in sorted order. We expect that the output
301 Manifest manifest
568 Manifest manifest = addDigestsToManifest(inputJar, hash); local
781 Manifest manifest = addDigestsToManifest(inputJar, hashes); local
    [all...]
  /external/chromium_org/chrome/browser/component_updater/pnacl/
pnacl_component_installer.cc 38 // Name of the Pnacl component specified in the manifest.
122 // Read a manifest file in.
135 // Read the PNaCl specific manifest.
144 // Read the component's manifest.json.
148 FILE_PATH_LITERAL("manifest.json"));
154 // Check that the component's manifest is for PNaCl, and check the
155 // PNaCl manifest indicates this is the correct arch-specific package.
156 bool CheckPnaclComponentManifest(const base::DictionaryValue& manifest,
159 // Make sure we have the right |manifest| file.
161 if (!manifest.GetStringASCII("name", &name))
    [all...]
  /frameworks/base/docs/html/guide/topics/manifest/
manifest-element.jd 1 page.title=&lt;manifest&gt;
3 parent.link=manifest-intro.html
8 <dd><pre class="stx">&lt;manifest xmlns:<a href="#nspace">android</a>="http://schemas.android.com/apk/res/android"
16 &lt;/manifest&gt;</pre></dd>
25 <dd><code><a href="{@docRoot}guide/topics/manifest/application-element.html">&lt;application&gt;</a></code></dd>
28 <dd><code><a href="{@docRoot}guide/topics/manifest/instrumentation-element.html">&lt;instrumentation&gt;</a></code>
29 <br/><code><a href="{@docRoot}guide/topics/manifest/permission-element.html">&lt;permission&gt;</a></code>
30 <br/><code><a href="{@docRoot}guide/topics/manifest/permission-group-element.html">&lt;permission-group&gt;</a></code>
31 <br/><code><a href="{@docRoot}guide/topics/manifest/permission-tree-element.html">&lt;permission-tree&gt;</a></code>
32 <br/><code><a href="{@docRoot}guide/topics/manifest/uses-configuration-element.html">&lt;uses-configuration&gt;</a></code> <!-- ##api level 3## --
    [all...]
  /frameworks/base/docs/html/sdk/api_diff/4/changes/
android.Manifest.permission.html 10 android.Manifest.permission
74 Class android.<A HREF="../../../../reference/android/Manifest.permission.html" target="_top"><font size="+2"><code>Manifest.permission</code></font></A>
87 <A NAME="android.Manifest.permission.ADD_SYSTEM_SERVICE"></A>
94 <A NAME="android.Manifest.permission.FOTA_UPDATE"></A>
101 <A NAME="android.Manifest.permission.SET_PROCESS_FOREGROUND"></A>
116 <A NAME="android.Manifest.permission.CHANGE_WIFI_MULTICAST_STATE"></A>
117 <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/Manifest.permission.html#CHANGE_WIFI_MULTICAST_STATE" target="_top"><code>CHANGE_WIFI_MULTICAST_STATE</code></A></nobr>
123 <A NAME="android.Manifest.permission.GLOBAL_SEARCH"></A>
124 <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/Manifest.permission.html#GLOBAL_SEARCH" target="_top"><code>GLOBAL_SEARCH</code></A></nobr
    [all...]
  /external/chromium/chrome/common/extensions/docs/static/
apps.html 69 <h2 id="manifest"> The manifest </h2>
72 A packaged app's manifest can have any field
75 In addition, a packaged app's manifest <b>must</b>
77 Here is a typical manifest for a packaged app:
151 See the manifest documentation for the
152 <a href="manifest.html#icons">"icons" field</a>
157 For further details on what a packaged app's manifest can contain, see the
158 <a href="manifest.html">manifest documentation</a>
    [all...]
browserAction.html 38 <h2 id="manifest">Manifest</h2>
42 <a href="manifest.html">extension manifest</a>
87 in the <a href="#manifest">manifest</a>,
96 in the <a href="#manifest">manifest</a>,
135 in the <a href="#manifest">manifest</a>, or call th
    [all...]
  /external/chromium_org/chrome/browser/profile_resetter/
profile_resetter_unittest.cc 79 using extensions::Manifest;
237 Manifest::Location location,
238 extensions::Manifest::Type type,
240 DictionaryValue manifest; local
241 manifest.SetString(extensions::manifest_keys::kVersion, "1.0.0.0");
242 manifest.SetString(extensions::manifest_keys::kName, name);
244 case extensions::Manifest::TYPE_THEME:
245 manifest.Set(extensions::manifest_keys::kTheme, new DictionaryValue);
247 case extensions::Manifest::TYPE_HOSTED_APP:
248 manifest.SetString(extensions::manifest_keys::kLaunchWebURL
    [all...]
  /external/chromium_org/chrome/common/extensions/api/
webstore_private.json 45 "manifest": {
47 "description": "A string with the contents of the extension's manifest.json file. During the install process, the browser will check that the downloaded extension's manifest matches what was passed in here.",
52 "description": "A string to use instead of the raw value of the 'name' key from manifest.json."
80 "manifest": {
82 "description": "A string with the contents of the extension's manifest.json file. During the install process, the browser will check that the downloaded extension's manifest matches what was passed in here.",
98 "description": "A string to use instead of the raw value of the 'name' key from manifest.json."
103 "description": "The name of the locale used for generating localizedName. This should be the name of one of the directories in the _locales folder of the extension, or the default_locale setting from the manifest."
121 "description": "Called when the user has either accepted/rejected the dialog, or some error occurred (such as invalid manifest or icon image data)."
    [all...]
  /external/chromium_org/native_client_sdk/src/build_tools/tests/
sdktools_commands_test.py 27 def _AddDummyBundle(self, manifest, bundle_name):
37 manifest.SetBundle(bundle)
39 # Need to get the bundle from the manifest -- it doesn't use the one we
41 return manifest.GetBundle(bundle_name)
75 bundle = self.manifest.GetBundle('sdk_tools')
94 self._AddDummyBundle(self.manifest, 'pepper_23')
95 self._AddDummyBundle(self.manifest, 'pepper_24')
104 bundle = self._AddDummyBundle(self.manifest, 'pepper_26')
126 self._AddDummyBundle(self.manifest, 'pepper_23')
129 # Added pepper_23 to the remote manifest not the local manifest, so i
    [all...]
update_nacl_manifest_test.py 176 # add .json manifest snippet, it should look like a normal Bundle, but
186 def __init__(self, manifest, history, files, version_mapping):
187 self.manifest = manifest
196 return self.manifest
268 self.manifest = None
273 self.delegate = TestDelegate(self.manifest, self.history.history,
295 # Bundles that we create in the test (and in the manifest snippets) have
312 self.manifest = MakeManifest(B18_0_1025_163_MLW)
318 self.manifest.AddBundle(B19_0_1084_41_MLW
    [all...]
  /frameworks/base/docs/html/training/basics/actionbar/
setting-up.jd 46 href="{@docRoot}guide/topics/manifest/uses-sdk-element.html#target">{@code targetSdkVersion}</a> or
47 <a href="{@docRoot}guide/topics/manifest/uses-sdk-element.html#min">{@code minSdkVersion}</a>
54 &lt;manifest ... &gt;
57 &lt;/manifest&gt;
89 <li>In your manifest file, update either the <a
90 href="{@docRoot}guide/topics/manifest/application-element.html">{@code
92 <a href="{@docRoot}guide/topics/manifest/application-element.html">{@code &lt;activity>}</a>
106 <p>Remember to properly set your app's API level support in the manifest:</p>
108 &lt;manifest ... &gt;
111 &lt;/manifest&gt
    [all...]
  /external/chromium_org/chrome/common/extensions/
extension_messages.cc 10 #include "extensions/common/manifest.h"
19 using extensions::Manifest;
27 : location(Manifest::INVALID_LOCATION),
34 : manifest(extension->manifest()->value()->DeepCopy()),
49 Extension::Create(path, location, *manifest, creation_flags, error);
62 struct ParamTraits<Manifest::Location> {
63 typedef Manifest::Location param_type;
71 val < Manifest::INVALID_LOCATION ||
72 val >= Manifest::NUM_LOCATIONS
    [all...]
extension_file_util_unittest.cc 16 #include "extensions/common/manifest.h"
24 using extensions::Manifest;
116 install_dir, Manifest::UNPACKED, Extension::NO_FLAGS, &error));
132 install_dir, Manifest::UNPACKED, Extension::NO_FLAGS, &error));
196 install_dir, Manifest::UNPACKED, Extension::NO_FLAGS, &error));
199 ASSERT_STREQ("Manifest file is missing or unreadable.", error.c_str());
213 install_dir, Manifest::UNPACKED, Extension::NO_FLAGS, &error));
216 ASSERT_STREQ("Manifest is not valid JSON. "
229 install_dir, Manifest::UNPACKED, Extension::NO_FLAGS, &error));
237 base::DictionaryValue* manifest,
388 const char manifest[] = local
    [all...]
  /frameworks/base/docs/html/sdk/api_diff/14/changes/
android.Manifest.permission.html 10 android.Manifest.permission
74 Class android.<A HREF="../../../../reference/android/Manifest.permission.html" target="_top"><font size="+2"><code>Manifest.permission</code></font></A>
87 <A NAME="android.Manifest.permission.ADD_VOICEMAIL"></A>
88 <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/Manifest.permission.html#ADD_VOICEMAIL" target="_top"><code>ADD_VOICEMAIL</code></A></nobr>
94 <A NAME="android.Manifest.permission.BIND_TEXT_SERVICE"></A>
95 <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/Manifest.permission.html#BIND_TEXT_SERVICE" target="_top"><code>BIND_TEXT_SERVICE</code></A></nobr>
101 <A NAME="android.Manifest.permission.BIND_VPN_SERVICE"></A>
102 <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/Manifest.permission.html#BIND_VPN_SERVICE" target="_top"><code>BIND_VPN_SERVICE</code></A></nobr>
108 <A NAME="android.Manifest.permission.READ_PROFILE"></A
    [all...]
  /frameworks/base/docs/html/sdk/api_diff/3/changes/
android.Manifest.permission.html 10 android.Manifest.permission
74 Class android.<A HREF="../../../../reference/android/Manifest.permission.html" target="_top"><font size="+2"><code>Manifest.permission</code></font></A>
87 <A NAME="android.Manifest.permission.BIND_APPWIDGET"></A>
88 <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/Manifest.permission.html#BIND_APPWIDGET" target="_top"><code>BIND_APPWIDGET</code></A></nobr>
94 <A NAME="android.Manifest.permission.BIND_INPUT_METHOD"></A>
95 <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/Manifest.permission.html#BIND_INPUT_METHOD" target="_top"><code>BIND_INPUT_METHOD</code></A></nobr>
101 <A NAME="android.Manifest.permission.MOUNT_FORMAT_FILESYSTEMS"></A>
102 <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/Manifest.permission.html#MOUNT_FORMAT_FILESYSTEMS" target="_top"><code>MOUNT_FORMAT_FILESYSTEMS</code></A></nobr>
108 <A NAME="android.Manifest.permission.UPDATE_DEVICE_STATS"></A
    [all...]
  /frameworks/base/docs/html/sdk/api_diff/8/changes/
android.Manifest.permission.html 10 android.Manifest.permission
74 Class android.<A HREF="../../../../reference/android/Manifest.permission.html" target="_top"><font size="+2"><code>Manifest.permission</code></font></A>
87 <A NAME="android.Manifest.permission.BIND_DEVICE_ADMIN"></A>
88 <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/Manifest.permission.html#BIND_DEVICE_ADMIN" target="_top"><code>BIND_DEVICE_ADMIN</code></A></nobr>
94 <A NAME="android.Manifest.permission.BIND_WALLPAPER"></A>
95 <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/Manifest.permission.html#BIND_WALLPAPER" target="_top"><code>BIND_WALLPAPER</code></A></nobr>
101 <A NAME="android.Manifest.permission.KILL_BACKGROUND_PROCESSES"></A>
102 <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/Manifest.permission.html#KILL_BACKGROUND_PROCESSES" target="_top"><code>KILL_BACKGROUND_PROCESSES</code></A></nobr>
108 <A NAME="android.Manifest.permission.SET_TIME"></A
    [all...]
  /frameworks/base/docs/html/sdk/api_diff/9/changes/
android.Manifest.permission.html 10 android.Manifest.permission
74 Class android.<A HREF="../../../../reference/android/Manifest.permission.html" target="_top"><font size="+2"><code>Manifest.permission</code></font></A>
87 <A NAME="android.Manifest.permission.READ_OWNER_DATA"></A>
94 <A NAME="android.Manifest.permission.WRITE_OWNER_DATA"></A>
109 <A NAME="android.Manifest.permission.NFC"></A>
110 <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/Manifest.permission.html#NFC" target="_top"><code>NFC</code></A></nobr>
116 <A NAME="android.Manifest.permission.SET_ALARM"></A>
117 <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/Manifest.permission.html#SET_ALARM" target="_top"><code>SET_ALARM</code></A></nobr>
123 <A NAME="android.Manifest.permission.USE_SIP"></A
    [all...]
  /external/chromium_org/webkit/browser/appcache/
manifest_parser.cc 73 Manifest::Manifest() : online_whitelist_all(false) {}
75 Manifest::~Manifest() {}
78 Manifest& manifest) {
86 const wchar_t kSignature[] = L"CACHE MANIFEST";
88 const wchar_t kChromiumSignature[] = L"CHROMIUM CACHE MANIFEST";
91 DCHECK(manifest.explicit_urls.empty());
92 DCHECK(manifest.fallback_namespaces.empty())
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/builders/
PreCompilerDeltaVisitor.java 50 * <ul><li>R.java/Manifest.java generated by compiling the resources</li>
66 * files is Manifest.java, or R.java. All other file changes
71 /** Manifest check/parsing flag. */
74 /** Application Package, gathered from the parsing of the manifest */
76 /** minSDKVersion attribute value, gathered from the parsing of the manifest */
117 * Get whether Manifest.java, Manifest.xml, or R.java have changed
118 * @return true if any of Manifest.xml, Manifest.java, or R.java have been modified
129 * Returns whether the manifest file was parsed/checked for error during the resource delt
    [all...]
  /frameworks/base/docs/html/sdk/api_diff/16/changes/
android.Manifest.permission.html 10 android.Manifest.permission
74 Class android.<A HREF="../../../../reference/android/Manifest.permission.html" target="_top"><font size="+2"><code>Manifest.permission</code></font></A>
87 <A NAME="android.Manifest.permission.BIND_ACCESSIBILITY_SERVICE"></A>
88 <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/Manifest.permission.html#BIND_ACCESSIBILITY_SERVICE" target="_top"><code>BIND_ACCESSIBILITY_SERVICE</code></A></nobr>
94 <A NAME="android.Manifest.permission.READ_CALL_LOG"></A>
95 <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/Manifest.permission.html#READ_CALL_LOG" target="_top"><code>READ_CALL_LOG</code></A></nobr>
101 <A NAME="android.Manifest.permission.READ_EXTERNAL_STORAGE"></A>
102 <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/Manifest.permission.html#READ_EXTERNAL_STORAGE" target="_top"><code>READ_EXTERNAL_STORAGE</code></A></nobr>
108 <A NAME="android.Manifest.permission.READ_USER_DICTIONARY"></A
    [all...]
  /external/chromium_org/extensions/common/
extension.cc 27 #include "extensions/common/manifest.h"
93 Manifest::Location location,
108 Manifest::Location location,
115 scoped_ptr<extensions::Manifest> manifest(
116 new extensions::Manifest(
119 if (!InitExtensionID(manifest.get(), path, explicit_id, flags, &error)) {
125 if (!manifest->ValidateManifest(utf8_error, &install_warnings)) {
129 scoped_refptr<Extension> extension = new Extension(path, manifest.Pass());
156 Manifest::Type Extension::GetType() const
    [all...]
  /external/chromium/chrome/common/extensions/
extension_l10n_util.h 31 // "default_locale" section was not defined in the manifest.json file.
32 std::string GetDefaultLocaleFromManifest(const DictionaryValue& manifest,
40 // in the manifest.
42 DictionaryValue* manifest,
45 // Load message catalogs, localize manifest and attach message bundle to the
48 DictionaryValue* manifest,
extension_set_unittest.cc 26 DictionaryValue manifest; local
27 manifest.SetString("name", name);
28 manifest.SetString("version", "1");
31 manifest.SetString("app.launch.web_url", launch_url);
35 manifest.Set("app.urls", urls);
41 Extension::Create(path, Extension::INTERNAL, manifest,
  /external/chromium/chrome/common/
web_apps.h 42 // URL to a manifest that defines the application. If specified, all other
43 // attributes are derived from this manifest, and the manifest is the unique
59 // The permissions the app requests. Only supported with manifest-based apps.
62 // Set of URLs that comprise the app. Only supported with manifest-based apps.
67 // values are 'tab' and 'panel'. Only supported with manifest-based apps.
  /external/chromium_org/chrome/browser/component_updater/
default_component_installer.h 41 virtual bool OnCustomInstall(const base::DictionaryValue& manifest,
53 // |manifest| is the manifest for this version of the component.
57 scoped_ptr<base::DictionaryValue> manifest) = 0;
83 virtual bool Install(const base::DictionaryValue& manifest,
92 bool InstallHelper(const base::DictionaryValue& manifest,

Completed in 385 milliseconds

<<21222324252627282930>>