HomeSort by relevance Sort by last modified time
    Searched full:extension (Results 451 - 475 of 11491) sorted by null

<<11121314151617181920>>

  /external/chromium_org/chrome/common/extensions/docs/templates/intros/
management.html 4 in the <a href="manifest.html">extension manifest</a>
9 "name": "My extension",
topSites.html 4 You must declare the "topSites" permission in your extension's manifest
10 "name": "My extension",
  /external/chromium_org/chrome/common/extensions/docs/templates/private/permissions/
host_permissions.html 1 Specifies a <em>host permission</em>. Required if the extension or app wants to interact with the code running on pages. Many capabilities, such as <a href="xhr.html">cross-origin XMLHttpRequests</a>, <a href="content_scripts.html#pi">programmatically injected content scripts</a>, and <a href="cookies.html">the extension's cookies API</a> require host permissions. For details on the syntax, see <a href="match_patterns.html">Match Patterns</a>.
  /external/chromium_org/chrome/common/extensions/
mime_types_handler.h 13 #include "extensions/common/extension.h"
26 static MimeTypesHandler* GetHandler(const extensions::Extension* extension);
31 // extension id
43 // The id for the extension this action belongs to (as defined in the
44 // extension manifest).
56 virtual bool Parse(extensions::Extension* extension,
  /external/chromium_org/third_party/libXNVCtrl/
README.chromium 1 Name: NVidia Control X Extension Library
10 This package provides access to NVidia Control X Extension. It is used to determine the version of the NVIDIA driver in use.
  /external/clang/test/PCH/
cxx-ms-function-specialization-class-scope.h 11 B(int p) { // expected-warning{{explicit specialization of 'B<T>' within class scope is a Microsoft extension}}
21 void f(int p) { // expected-warning{{explicit specialization of 'f' within class scope is a Microsoft extension}}
  /external/clang/test/Parser/
designator.c 4 [4]4, // expected-warning {{use of GNU 'missing =' extension in designator}}
15 // This is not the GNU array init designator extension.
extension.c 4 /* Top level extension marker. */
18 __extension__ j = 10LL; /* expected-warning {{'long long' is an extension}} */
  /external/clang/test/Sema/
anonymous-struct-union-c11.c 9 struct { // expected-warning{{anonymous structs are a C11 extension}}
16 union { // expected-warning{{anonymous unions are a C11 extension}}
  /external/clang/test/SemaCXX/
MicrosoftCompatibility-cxx98.cpp 5 enum ENUM; // expected-warning {{forward references to 'enum' types are a Microsoft extension}}
8 enum ENUM1* var3 = 0;// expected-warning {{forward references to 'enum' types are a Microsoft extension}}
reinterpret-fn-obj-pedantic.cpp 7 void *vp = reinterpret_cast<void*>(fp); // expected-warning {{cast between pointer-to-function and pointer-to-object is an extension}}
8 (void)reinterpret_cast<fnptr>(vp); // expected-warning {{cast between pointer-to-function and pointer-to-object is an extension}}
  /external/llvm/test/CodeGen/X86/
subreg-to-reg-0.ll 3 ; Do eliminate the zero-extension instruction and rely on
4 ; x86-64's implicit zero-extension!
  /external/markdown/docs/extensions/
ImageLinks.txt 7 ImageLinks is a Python-Markdown extension that provides a mechanism for
10 This extension is part of the Markdown library since 2.0.
  /external/markdown/markdown/extensions/
extra.py 3 Python-Markdown Extra Extension
10 on your PYTHONPATH. This extension simply wraps them all up as a
11 convenience so that only one extension needs to be listed when
13 extension for specifics about that extension.
17 without that extension.
41 class ExtraExtension(markdown.Extension):
45 """ Register extension instances. """
  /external/proguard/src/proguard/util/
ExtensionMatcher.java 24 * This StringMatcher tests whether strings end in a given extension, ignoring
31 private final String extension; field in class:ExtensionMatcher
36 * @param extension the extension against which strings will be matched.
38 public ExtensionMatcher(String extension)
40 this.extension = extension;
48 return endsWithIgnoreCase(string, extension);
  /external/smack/src/org/jivesoftware/smack/filter/
PacketExtensionFilter.java 26 * Filters for packets with a particular type of packet extension.
36 * Creates a new packet extension filter. Packets will pass the filter if
37 * they have a packet extension that matches the specified element name
40 * @param elementName the XML element name of the packet extension.
41 * @param namespace the XML namespace of the packet extension.
49 * Creates a new packet extension filter. Packets will pass the filter if they have a packet
50 * extension that matches the specified namespace.
52 * @param namespace the XML namespace of the packet extension.
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt.overlay/
plugin.xml 4 <extension point="org.eclipse.wst.sse.core.formatProcessors">
9 </extension>
  /sdk/eclipse/plugins/com.android.ide.eclipse.base/
plugin.xml 4 <extension
12 </extension>
  /external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/
GeneratedMessageLite.java 128 /** Check if a singular extension is present. */
130 GeneratedExtension<MessageType, Type> extension);
132 /** Get the number of elements in a repeated extension. */
134 GeneratedExtension<MessageType, List<Type>> extension);
136 /** Get the value of an extension. */
137 <Type> Type getExtension(GeneratedExtension<MessageType, Type> extension);
139 /** Get one element of a repeated extension. */
141 GeneratedExtension<MessageType, List<Type>> extension,
164 final GeneratedExtension<MessageType, ?> extension) {
165 if (extension.getContainingTypeDefaultInstance() !
269 ExtensionDescriptor extension = next.getKey(); local
485 GeneratedExtension<MessageType, ?> extension = local
    [all...]
  /external/chromium_org/chrome/browser/ui/extensions/
application_launch.cc 43 #include "extensions/common/extension.h"
58 using extensions::Extension;
99 const Extension* extension = variable
101 if (!extension)
121 // Get the launch URL for a given extension, with optional override/fallback.
122 // |override_url|, if non-empty, will be preferred over the extension's
124 GURL UrlForExtension(const Extension* extension,
126 if (!extension)
176 const extensions::Extension* const extension = params.extension; member in class:__anon5998::extensions
228 const extensions::Extension* extension = launch_params.extension; local
321 const extensions::Extension* extension = params.extension; local
454 const extensions::Extension* extension = params.extension; local
    [all...]
  /external/chromium_org/chrome/common/extensions/manifest_handlers/
externally_connectable_unittest.cc 27 scoped_refptr<Extension> extension) {
28 return static_cast<ExternallyConnectableInfo*>(extension->GetManifestData(
37 scoped_refptr<Extension> extension = local
39 ASSERT_TRUE(extension.get());
41 EXPECT_TRUE(extension->HasAPIPermission(APIPermission::kWebConnectable));
44 ExternallyConnectableInfo::Get(extension.get());
97 scoped_refptr<Extension> extension local
116 scoped_refptr<Extension> extension = local
158 scoped_refptr<Extension> extension = local
183 scoped_refptr<Extension> extension = local
247 scoped_refptr<Extension> extension = LoadAndExpectWarning( local
259 scoped_refptr<Extension> extension = LoadAndExpectWarning( local
271 scoped_refptr<Extension> extension = LoadAndExpectWarning( local
285 scoped_refptr<Extension> extension = LoadAndExpectWarning( local
299 scoped_refptr<Extension> extension = LoadAndExpectWarning( local
    [all...]
  /external/chromium/chrome/browser/extensions/
extension_metrics_apitest.cc 10 #include "chrome/common/extensions/extension.h"
16 // The tests that are run by this extension are expected to record the following
20 const char* name; // base name of metric without extension id.
27 // The tests that are run by this extension are expected to record the following
31 const char* name; // base name of metric without extension id.
48 // Build the full name of a metrics for the given extension. Each metric
49 // is made up of the unique name within the extension followed by the
50 // extension's id.
51 std::string BuildFullName(const std::string& name, const Extension* extension) {
149 const Extension* extension = GetSingleLoadedExtension(); local
    [all...]
  /external/chromium/chrome/browser/ui/webui/
extension_icon_source.h 15 #include "chrome/common/extensions/extension.h"
26 // ExtensionIconSource serves extension icons through network level chrome:
27 // requests. Icons can be retrieved for any installed extension or app.
30 // chrome://extension-icon/<extension_id>/<icon_size>/<match_type>?[options]
33 // <extension_id> = the id of the extension
35 // corresponding Extension:Icons enum.
42 // chrome-extension://gbmgkahjioeacddebbnengilkgbkhodg/32/1?grayscale=true
44 // chrome-extension://gbmgkahjioeacddebbnengilkgbkhodg/128/0
48 // 1) The icons as listed in the extension / app manifests.
49 // 2) If a 16px icon was requested, the favicon for extension's launch URL
    [all...]
  /external/chromium_org/chrome/browser/extensions/
active_tab_apitest.cc 10 #include "extensions/common/extension.h"
25 const Extension* extension = local
27 ASSERT_TRUE(extension);
42 // Granting to the extension should give it access to page.html.
45 toolbar_model->ExecuteBrowserAction(extension, browser(), NULL, true);
  /external/chromium_org/chrome/browser/extensions/api/push_messaging/
push_messaging_apitest.cc 105 const extensions::Extension* extension = local
107 ASSERT_TRUE(extension);
109 browser(), extension->GetResourceURL("event_dispatch.html"));
111 GetEventRouter()->TriggerMessageForTest(extension->id(), 1, "payload");
116 // Test that a push introduced into the sync code makes it to the extension
122 const extensions::Extension* extension = local
124 ASSERT_TRUE(extension);
126 browser(), extension->GetResourceURL("event_dispatch.html"))
156 const extensions::Extension* extension = local
188 const extensions::Extension* extension = local
    [all...]

Completed in 1320 milliseconds

<<11121314151617181920>>