OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:manifest
(Results
326 - 350
of
4304
) sorted by null
<<
11
12
13
14
15
16
17
18
19
20
>>
/external/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/jar/
ManifestTest.java
28
import java.util.jar.
Manifest
;
44
private final String MANIFEST_NAME = "
manifest
/hyts_MANIFEST.MF";
46
private static final String MANIFEST_CONTENTS = "
Manifest
-Version: 1.0\nBundle-Name: ClientSupport\nBundle-Description: Provides SessionService, AuthenticationService. Extends RegistryService.\nBundle-Activator: com.ibm.ive.eccomm.client.support.ClientSupportActivator\nImport-Package: com.ibm.ive.eccomm.client.services.log,\n com.ibm.ive.eccomm.client.services.registry,\n com.ibm.ive.eccomm.service.registry; specification-version=1.0.0,\n com.ibm.ive.eccomm.service.session; specification-version=1.0.0,\n com.ibm.ive.eccomm.service.framework; specification-version=1.2.0,\n org.osgi.framework; specification-version=1.0.0,\n org.osgi.service.log; specification-version=1.0.0,\n com.ibm.ive.eccomm.flash; specification-version=1.2.0,\n com.ibm.ive.eccomm.client.xml,\n com.ibm.ive.eccomm.client.http.common,\n com.ibm.ive.eccomm.client.http.client\nImport-Service: org.osgi.service.log.LogReaderService\n org.osgi.service.log.LogService,\n com.ibm.ive.eccomm.service.registry.RegistryService\nExport-Package: com.ibm.ive.eccomm.client.services.authentication; specification-version=1.0.0,\n com.ibm.ive.eccomm.service.authentication; specification-version=1.0.0,\n com.ibm.ive.eccomm.common; specification-version=1.0.0,\n com.ibm.ive.eccomm.client.services.registry.store; specification-version=1.0.0\nExport-Service: com.ibm.ive.eccomm.service.authentication.AuthenticationService,\n com.ibm.ive.eccomm.service.session.SessionService\nBundle-Vendor: IBM\nBundle-Version: 1.2.0\n";
48
private static final String MANIFEST_CONTENTS_1 = "
Manifest
-Version: 2.0\nBundle-Name: ClientSupport\nBundle-Description: Provides SessionService, AuthenticationService. Extends RegistryService.\nBundle-Activator: com.ibm.ive.eccomm.client.support.ClientSupportActivator\nImport-Package: com.ibm.ive.eccomm.client.services.log,\n com.ibm.ive.eccomm.client.services.registry,\n com.ibm.ive.eccomm.service.registry; specification-version=2.0.0,\n com.ibm.ive.eccomm.service.session; specification-version=2.0.0,\n com.ibm.ive.eccomm.service.framework; specification-version=2.1.0,\n org.osgi.framework; specification-version=2.0.0,\n org.osgi.service.log; specification-version=2.0.0,\n com.ibm.ive.eccomm.flash; specification-version=2.2.0,\n com.ibm.ive.eccomm.client.xml,\n com.ibm.ive.eccomm.client.http.common,\n com.ibm.ive.eccomm.client.http.client\nImport-Service: org.osgi.service.log.LogReaderService\n org.osgi.service.log.LogService,\n com.ibm.ive.eccomm.service.registry.RegistryService\nExport-Package: com.ibm.ive.eccomm.client.services.authentication; specification-version=1.0.0,\n com.ibm.ive.eccomm.service.authentication; specification-version=1.0.0,\n com.ibm.ive.eccomm.common; specification-version=1.0.0,\n com.ibm.ive.eccomm.client.services.registry.store; specification-version=1.0.0\nExport-Service: com.ibm.ive.eccomm.service.authentication.AuthenticationService,\n com.ibm.ive.eccomm.service.session.SessionService\nBundle-Vendor: IBM\nBundle-Version: 1.2.0\n";
50
private static final String MANIFEST_CONTENTS_2 = "
Manifest
-Version: 1.0\nName: value\n \n"; // Note penultimate line is single space
59
private
Manifest
getManifest(String fileName) {
63
Manifest
m = jarFile.getManifest();
73
* @tests java.util.jar.
Manifest
#
Manifest
()
76
// Test for method java.util.jar.
Manifest
()
136
Manifest
manifest
= new Manifest(new ByteArrayInputStream(
local
[
all
...]
/external/chromium_org/extensions/browser/
admin_policy_unittest.cc
9
#include "extensions/common/
manifest
.h"
15
using extensions::
Manifest
;
21
void CreateExtension(
Manifest
::Location location) {
26
void CreateHostedApp(
Manifest
::Location location) {
34
void CreateExtensionFromValues(
Manifest
::Location location,
65
CreateExtension(
Manifest
::COMPONENT);
85
CreateExtension(
Manifest
::INTERNAL);
98
CreateExtension(
Manifest
::INTERNAL);
117
CreateExtension(
Manifest
::INTERNAL);
150
CreateExtension(
Manifest
::INTERNAL)
[
all
...]
/external/chromium_org/chrome/browser/component_updater/test/
update_response_unittest.cc
21
" <
manifest
version='1.2.3.4' prodversionmin='2.0.143.0'>"
25
" </
manifest
>"
38
" <
manifest
version='1.2.3.4' prodversionmin='2.0.143.0'>"
42
" </
manifest
>"
55
" <
manifest
version='1.2.3.4' prodversionmin='2.0.143.0'>"
64
" </
manifest
>"
77
" <
manifest
version='1.2.3.4' prodversionmin='2.0.143.0'>"
81
" </
manifest
>"
131
" <g:
manifest
version='1.2.3.4' prodversionmin='2.0.143.0'>"
135
" </g:
manifest
>"
[
all
...]
/external/chromium_org/extensions/common/
manifest.h
19
// Wraps the DictionaryValue form of extension's
manifest
. Enforces access to
20
// properties of the
manifest
using ManifestFeatureProvider.
21
class
Manifest
{
109
Manifest
(Location location, scoped_ptr<base::DictionaryValue> value);
110
virtual ~
Manifest
();
117
// Returns false and |error| will be non-empty if the
manifest
is malformed.
118
// |warnings| will be populated if there are keys in the
manifest
that cannot
123
// The version of this extension's
manifest
. We increase the
manifest
125
//
manifest
contains no explicit manifest version, this returns the curren
[
all
...]
extension_builder.cc
12
: location_(
Manifest
::UNPACKED),
35
ExtensionBuilder& ExtensionBuilder::SetLocation(
Manifest
::Location location) {
41
scoped_ptr<base::DictionaryValue>
manifest
) {
42
manifest_ =
manifest
.Pass();
/frameworks/base/docs/html/sdk/api_diff/17/changes/
android.Manifest.permission_group.html
10
android.
Manifest
.permission_group
74
Class android.<A HREF="../../../../reference/android/
Manifest
.permission_group.html" target="_top"><font size="+2"><code>
Manifest
.permission_group</code></font></A>
87
<A NAME="android.
Manifest
.permission_group.AFFECTS_BATTERY"></A>
88
<nobr><code>String</code> <A HREF="../../../../reference/android/
Manifest
.permission_group.html#AFFECTS_BATTERY" target="_top"><code>AFFECTS_BATTERY</code></A></nobr>
94
<A NAME="android.
Manifest
.permission_group.APP_INFO"></A>
95
<nobr><code>String</code> <A HREF="../../../../reference/android/
Manifest
.permission_group.html#APP_INFO" target="_top"><code>APP_INFO</code></A></nobr>
101
<A NAME="android.
Manifest
.permission_group.AUDIO_SETTINGS"></A>
102
<nobr><code>String</code> <A HREF="../../../../reference/android/
Manifest
.permission_group.html#AUDIO_SETTINGS" target="_top"><code>AUDIO_SETTINGS</code></A></nobr>
108
<A NAME="android.
Manifest
.permission_group.BLUETOOTH_NETWORK"></A
[
all
...]
/build/tools/atree/
Android.mk
3
# Copies files into the directory structure described by a
manifest
/development/ndk/platforms/android-9/samples/native-activity/
AndroidManifest.xml
2
<!-- BEGIN_INCLUDE(
manifest
) -->
3
<
manifest
xmlns:android="http://schemas.android.com/apk/res/android"
29
</
manifest
>
30
<!-- END_INCLUDE(
manifest
) -->
/development/tools/line_endings/
Android.mk
3
# Copies files into the directory structure described by a
manifest
/external/antlr/antlr-3.4/antlr-ant/main/antlr3-task/
composite-netbeans.zip
/external/chromium/chrome/common/extensions/docs/examples/extensions/
calendar.zip
imageinfo.zip
wave.zip
/external/chromium/chrome/common/extensions/docs/examples/tutorials/
analytics.zip
/external/chromium/chrome/common/extensions/docs/static/
tabs.html
14
<h2 id="
manifest
">
Manifest
</h2>
18
in the <a href="
manifest
.html">extension
manifest
</a>.
/external/chromium/chrome/common/extensions/
extension_sidebar_defaults.h
15
// as defined in the extension
manifest
.
18
// Default title, stores
manifest
default_title key value.
24
// Default icon path, stores
manifest
default_icon key value.
32
// A resolved |url| to extension resource (
manifest
default_page key value)
/external/chromium-trace/trace-viewer/third_party/python_gflags/
MANIFEST.in
4
include
MANIFEST
.in
/external/chromium_org/build/android/
CheckInstallApk-debug.apk
/external/chromium_org/chrome/browser/extensions/api/developer_private/
developer_private_apitest.cc
11
using extensions::
Manifest
;
35
Manifest
::Location install_source) {
49
InstallNamedExtension(basedir, "packaged_app",
Manifest
::INTERNAL);
51
InstallNamedExtension(basedir, "simple_extension",
Manifest
::INTERNAL);
/external/chromium_org/chrome/common/extensions/
chrome_manifest_handlers.h
10
// Registers all
manifest
handlers used in Chrome. Should be called
/external/chromium_org/chrome/common/extensions/docs/templates/articles/manifest/
offline_enabled.html
1
<h1 id="offline_enabled">
Manifest
- Offline Enabled</h1>
/external/chromium_org/chrome/common/extensions/docs/templates/intros/
contextMenus.html
20
<h2 id="
manifest
">
Manifest
</h2>
23
in your {{platform}}'s
manifest
to use the API.
31
<pre data-filename="
manifest
.json">
/external/chromium_org/chrome/common/extensions/manifest_tests/
extension_manifests_validapp_unittest.cc
28
scoped_ptr<base::DictionaryValue>
manifest
(
31
ASSERT_TRUE(
manifest
->GetList("permissions", &permissions));
33
LoadAndExpectSuccess(
Manifest
(
manifest
.get(), ""));
/external/chromium_org/native_client_sdk/src/doc/reference/
index.rst
6
developing with Native Client, such as the NaCl
manifest
file format. In
/external/chromium_org/native_client_sdk/src/getting_started/part2/
example.dsc
3
# Don't copy the packaged app files:
manifest
.json, etc.
Completed in 2334 milliseconds
<<
11
12
13
14
15
16
17
18
19
20
>>