/external/chromium_org/extensions/common/permissions/ |
manifest_permission.h | 27 // Represent the custom behavior of a top-level manifest entry contributing to 34 // The manifest key this permission applies to. 55 // Returns a new manifest permission which equals this - |rhs|. 58 // Returns a new manifest permission which equals the union of this and |rhs|. 61 // Returns a new manifest permission which equals the intersect of this and
|
/frameworks/base/docs/html/tools/publishing/ |
versioning.jd | 11 <li>You set the version in the application's manifest file</li> 29 <li><a href="{@docRoot}guide/topics/manifest/manifest-intro.html">The AndroidManifest.xml File</a></li> 56 manifest. This attribute allows an application to specify the minimum system API with which it is 62 the application's manifest file. Two attributes are available, and you should 98 <code><manifest></code> element of the manifest file. </p> 100 <p>Here's an example manifest that shows the <code>android:versionCode</code> 102 <code><manifest></code> element. </p> 106 <manifest xmlns:android="http://schemas.android.com/apk/res/android [all...] |
/external/chromium_org/build/android/ant/ |
apk-codegen.xml | 24 <property name="out.manifest.abs.file" location="${out.dir}/AndroidManifest.xml" /> 64 <path id="project.library.manifest.file.path"> 68 <!-- manifest merger default value --> 77 <property name="manifest.file" value="${ANDROID_MANIFEST}" /> 78 <property name="manifest.abs.file" location="${manifest.file}" /> 87 appManifest="${manifest.abs.file}" 88 outManifest="${out.manifest.abs.file}" 90 <library refid="project.library.manifest.file.path" /> 103 manifest="${out.manifest.abs.file} [all...] |
/external/chromium_org/chrome/common/extensions/docs/templates/articles/ |
apps.html | 78 <h2 id="manifest"> The manifest </h2> 81 A packaged app's manifest can have any field 84 In addition, a packaged app's manifest <b>must</b> 86 Here is a typical manifest for a packaged app: 89 <pre data-filename="manifest.json"> 160 See the manifest documentation for the 161 <a href="manifest/icons.html">"icons" field</a> 166 For further details on what a packaged app's manifest can contain, see the 167 <a href="manifest.html">manifest documentation</a> [all...] |
/external/chromium_org/webkit/browser/appcache/ |
appcache_unittest.cc | 45 new AppCacheGroup(service.storage(), GURL("http://blah/manifest"), 111)); 110 Manifest manifest; local 111 manifest.explicit_urls.insert("http://one.com"); 112 manifest.explicit_urls.insert("http://two.com"); 113 manifest.fallback_namespaces.push_back( 116 manifest.online_whitelist_namespaces.push_back( 118 manifest.online_whitelist_namespaces.push_back( 120 manifest.online_whitelist_all = true; 122 cache->InitializeWithManifest(&manifest); 173 Manifest manifest; local 364 Manifest manifest; local 435 Manifest manifest; local 505 Manifest manifest; local 561 Manifest manifest; local [all...] |
/external/proguard/src/proguard/io/ |
JarWriter.java | 33 * The manifest and comment properties can optionally be set. 40 private final Manifest manifest; field in class:JarWriter 53 * Creates a new JarWriter without manifest or comment. 65 Manifest manifest, 69 this.manifest = manifest; 201 // Create a new jar stream, with a manifest, if set. 202 currentJarOutputStream = manifest != null [all...] |
/external/chromium-trace/trace-viewer/third_party/gl-matrix/tasks/test/ |
coverage.rake | 40 manifest = sprockets['gl-matrix-manifest.js'] 43 manifest.dependencies.each do |part| 64 manifest = sprockets['gl-matrix-manifest.js'] 67 File.open(coverage_path.join('manifest.js'), 'w') do |manifest_out| 83 manifest.dependencies.each do |part|
|
/external/chromium_org/android_webview/buildbot/ |
generate_local_manifest.py | 6 """Generate local manifest in an Android repository. 8 This is used to generate a local manifest in an Android repository. The purpose 9 of the generated manifest is to remove the set of projects that exist under a 20 local_manifest_root = ET.Element('manifest') 69 help='name of the manifest file', default='default.xml') 94 print 'Path to manifest file: %s' % manifest_path 97 print 'Local manifest created in: %s' % local_manifest_path
|
/external/chromium_org/chrome/browser/component_updater/ |
update_response.h | 33 // <manifest version="13.0.782.112" prodversionmin="2.0.143.0"> 41 // </manifest> 61 struct Manifest { 79 Manifest(); 80 ~Manifest(); 97 Manifest manifest; member in struct:component_updater::UpdateResponse::Result
|
/external/chromium_org/chrome/browser/extensions/ |
external_provider_impl.cc | 33 #include "extensions/common/manifest.h" 70 Manifest::Location crx_location, 71 Manifest::Location download_location, 224 if (crx_location_ == Manifest::INVALID_LOCATION) { 261 if (download_location_ == Manifest::INVALID_LOCATION) { 307 const std::string& id, Manifest::Location* location, 316 Manifest::Location loc = Manifest::INVALID_LOCATION; 347 extensions::Manifest::Location crx_location = Manifest::INVALID_LOCATION [all...] |
external_provider_impl.h | 13 #include "extensions/common/manifest.h" 36 // be initialized as Manifest::INVALID_LOCATION. 40 Manifest::Location crx_location, 41 Manifest::Location download_location, 62 Manifest::Location* location, 82 const Manifest::Location crx_location_; 86 const Manifest::Location download_location_;
|
webstore_install_helper.h | 50 // Called when we've successfully parsed the manifest and decoded the icon 58 // indicate whether the problem was with the manifest or icon. 72 const std::string& manifest, 101 // The extension id of the manifest we're parsing. 104 // The manifest to parse. 121 // Flags for whether we're done doing icon decoding and manifest parsing. 133 // manifest.
|
extension_protocols_unittest.cc | 32 DictionaryValue manifest; local 33 manifest.SetString("name", name); 34 manifest.SetString("version", "1"); 35 manifest.SetInteger("manifest_version", 2); 36 manifest.SetString("incognito", incognito_split_mode ? "split" : "spanning"); 44 Extension::Create(path, Manifest::INTERNAL, manifest, 51 DictionaryValue manifest; local 52 manifest.SetString("name", "WebStore"); 53 manifest.SetString("version", "1") 69 DictionaryValue manifest; local [all...] |
/external/chromium_org/chrome/common/extensions/api/commands/ |
commands_handler.cc | 65 if (!extension->manifest()->HasKey(keys::kCommands)) { 74 if (!extension->manifest()->GetDictionary(keys::kCommands, &dict)) { 130 bool CommandsHandler::AlwaysParseForType(Manifest::Type type) const { 131 return type == Manifest::TYPE_EXTENSION || 132 type == Manifest::TYPE_LEGACY_PACKAGED_APP || 133 type == Manifest::TYPE_PLATFORM_APP; 138 if (extension->manifest()->HasKey(keys::kBrowserAction) &&
|
/external/chromium_org/chrome/common/extensions/api/extension_action/ |
script_badge_handler.cc | 15 #include "extensions/common/manifest.h" 36 // Provide a default script badge if one isn't declared in the manifest. 37 if (!extension->manifest()->HasKey(keys::kScriptBadge)) { 44 // in the manifest, show a warning if the script badge declaration isn't 52 if (!extension->manifest()->GetDictionary(keys::kScriptBadge, &dict)) { 87 bool ScriptBadgeHandler::AlwaysParseForType(Manifest::Type type) const { 88 return type == Manifest::TYPE_EXTENSION;
|
/external/chromium_org/ppapi/native_client/src/trusted/plugin/ |
pnacl_resources.h | 23 class Manifest; 50 // these resources. URLs for resources are resolved by the manifest 56 const Manifest* manifest) 59 manifest_(manifest) { 94 // The manifest for looking up resource URLs. 95 const Manifest* manifest_;
|
/external/chromium_org/third_party/leveldatabase/src/db/ |
filename.cc | 45 snprintf(buf, sizeof(buf), "/MANIFEST-%06llu", 78 // dbname/MANIFEST-[0-9]+ 93 } else if (rest.starts_with("MANIFEST-")) { 94 rest.remove_prefix(strlen("MANIFEST-")); 128 // Remove leading "dbname/" and add newline to manifest file name 129 std::string manifest = DescriptorFileName(dbname, descriptor_number); local 130 Slice contents = manifest;
|
/external/chromium_org/third_party/sqlite/src/tool/ |
mksqlite3h.tcl | 8 # 3) The manifest file from the fossil SCM. This gives use the date. 9 # 4) The manifest.uuid file from the fossil SCM. This gives the SHA1 hash. 23 # hash of the fossil-scm manifest for the source tree. 44 # Get the fossil-scm version number from $TOP/manifest.uuid. 46 set in [open $TOP/manifest.uuid] 50 # Get the fossil-scm check-in date from the "D" card of $TOP/manifest. 52 set in [open $TOP/manifest]
|
/external/chromium_org/tools/gyp/test/win/ |
gyptest-link-embed-manifest.py | 39 """Reads manifest from |path| and returns it as a string. 40 Returns None is there is no such manifest.""" 52 test.run_gyp('embed-manifest.gyp', chdir=CHDIR) 53 test.build('embed-manifest.gyp', test.ALL, chdir=CHDIR) 55 # The following binaries must contain a manifest embedded. 66 # extra2.manifest). 95 # Test that incremental linking doesn't force manifest embedding.
|
/frameworks/base/wifi/java/android/net/wifi/p2p/ |
package.html | 47 <li>{@link android.Manifest.permission#ACCESS_WIFI_STATE}</li> 48 <li>{@link android.Manifest.permission#CHANGE_WIFI_STATE}</li> 49 <li>{@link android.Manifest.permission#INTERNET} (although your app doesn?t technically connect 59 href="{@docRoot}guide/topics/manifest/uses-feature-element.html">{@code <uses-feature>}</a> 60 element in the manifest file:</p> 62 <manifest ...> 65 </manifest>
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/ |
test_sdist.py | 42 MANIFEST = """\ 257 # checking the MANIFEST 258 f = open(join(self.tmp_dir, 'MANIFEST')) 260 manifest = f.read() 263 self.assertEqual(manifest, MANIFEST % {'sep': os.sep}) 311 self.assertEqual(cmd.manifest, 'MANIFEST') 312 self.assertEqual(cmd.template, 'MANIFEST.in') 377 # of a traceback when parsing an invalid manifest templat [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/ |
test_sdist.py | 42 MANIFEST = """\ 257 # checking the MANIFEST 258 f = open(join(self.tmp_dir, 'MANIFEST')) 260 manifest = f.read() 263 self.assertEqual(manifest, MANIFEST % {'sep': os.sep}) 311 self.assertEqual(cmd.manifest, 'MANIFEST') 312 self.assertEqual(cmd.template, 'MANIFEST.in') 377 # of a traceback when parsing an invalid manifest templat [all...] |
/frameworks/base/docs/html/guide/topics/manifest/ |
compatible-screens-element.jd | 3 parent.link=manifest-intro.html 20 href="{@docRoot}guide/topics/manifest/manifest-element.html"><manifest></a></code></dd> 24 of the {@code <compatible-screens>} element is allowed in the manifest, but it can 28 <p>The Android system <em>does not</em> read the {@code <compatible-screens>} manifest 36 <p class="caution"><strong>Caution:</strong> Normally, <strong>you should not use this manifest 47 should use the <a href="{@docRoot}guide/topics/manifest/supports-screens-element.html">{@code 50 href="{@docRoot}guide/topics/manifest/supports-screens-element.html">{@code 54 href="{@docRoot}guide/topics/manifest/supports-screens-element.html">{@cod [all...] |
/cts/tests/tests/permission/src/android/permission/cts/ |
NoLocationPermissionTest.java | 62 * android.Manifest.permission#ACCESS_COARSE_LOCATION.} 89 * android.Manifest.permission#ACCESS_COARSE_LOCATION.} 147 * {@link android.Manifest.permission#ACCESS_FINE_LOCATION}. 158 * {@link android.Manifest.permission#ACCESS_FINE_LOCATION}. 169 * {@link android.Manifest.permission#ACCESS_FINE_LOCATION}. 208 * {@link android.Manifest.permission#ACCESS_FINE_LOCATION}. 219 * {@link android.Manifest.permission#ACCESS_FINE_LOCATION}. 250 * {@link android.Manifest.permission#ACCESS_FINE_LOCATION}. 261 * {@link android.Manifest.permission#ACCESS_COARSE_LOCATION}. 294 * {@link android.Manifest.permission#ACCESS_FINE_LOCATION} [all...] |
/external/emma/core/java12/com/vladium/util/ |
IPathEnumerator.java | 23 import java.util.jar.Manifest; 48 * is opened and the manifest entry is read. 50 void handleArchiveStart (File parentDir, File archive, Manifest manifest); 216 // I try to read the manifest again via a JarFile if the stream 223 Manifest manifest = in.getManifest (); // can be null local 224 if (manifest == null) manifest = readManifestViaJarFile (fullArchive); // can be null 226 handler.handleArchiveStart (m_currentPathDir, new File (archive), manifest); [all...] |