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

12 3 4 5 6 7 8 91011>>

  /external/clang/test/SemaOpenCL/
extension-fp64.cl 3 void f1(double da) { // expected-error {{type 'double' requires cl_khr_fp64 extension}}
4 double d; // expected-error {{type 'double' requires cl_khr_fp64 extension}}
8 #pragma OPENCL EXTENSION cl_khr_fp64 : enable
15 #pragma OPENCL EXTENSION cl_khr_fp64 : disable
18 double d; // expected-error {{type 'double' requires cl_khr_fp64 extension}}
  /external/chromium/chrome/browser/
background_application_list_model.h 14 #include "chrome/common/extensions/extension.h"
33 // Invoked when data that the model associates with the extension, such as
35 virtual void OnApplicationDataChanged(const Extension* extension);
37 // Invoked when the model detects a previously unknown extension and/or when
38 // it no longer detects a previously known extension.
53 // Return the icon associated with |extension| or NULL. NULL indicates either
54 // that there is no icon associated with the extension, or that a pending
59 // NOTE: All icons are currently sized as Extension::EXTENSION_ICON_BITTY.
60 const SkBitmap* GetIcon(const Extension* extension)
    [all...]
icon_manager_win.cc 10 std::wstring extension = filepath.Extension(); local
11 if (extension != L".exe" && extension != L".dll" && extension != L".ico")
12 return extension;
  /external/chromium_org/chrome/common/extensions/
manifest_url_handler.h 10 #include "extensions/common/extension.h"
20 // that may be specified in the manifest of an extension.
21 struct ManifestURL : public Extension::ManifestData {
24 // Returns the DevTools Page for this extension.
25 static const GURL& GetDevToolsPage(const Extension* extension);
27 // Returns the Homepage URL for this extension.
31 static const GURL GetHomepageURL(const Extension* extension);
33 // Returns the Update URL for this extension
    [all...]
extension_unittest.cc 16 #include "extensions/common/extension.h"
60 // Check that no install source can override a componenet extension.
87 scoped_refptr<Extension> extension = LoadManifestStrict("empty_manifest", local
89 EXPECT_TRUE(extension.get());
91 EXPECT_EQ(extension->url().spec() + "bar/baz.js",
92 Extension::GetResourceURL(extension->url(), "bar/baz.js").spec());
93 EXPECT_EQ(extension->url().spec() + "baz.js",
94 Extension::GetResourceURL(extension->url()
161 scoped_refptr<Extension> extension = LoadManifestStrict("empty_manifest", local
171 scoped_refptr<Extension> extension = LoadManifestStrict("absolute_path", local
231 scoped_refptr<Extension> extension; local
343 scoped_refptr<Extension> extension; local
    [all...]
  /external/chromium_org/chrome/browser/extensions/
suggest_permission_util.h 18 class Extension;
22 const Extension* extension,
27 const Extension* extension,
30 // Checks that |extension| is not NULL and that it has |permission|. If not
31 // and extension, just returns false. If an extension without |permission|
35 const Extension* extension,
    [all...]
permissions_updater.h 20 class Extension;
24 // Updates an Extension's active and granted permissions in persistent storage
31 // Adds the set of |permissions| to the |extension|'s active permission set
34 void AddPermissions(const Extension* extension,
37 // Removes the set of |permissions| from the |extension|'s active permission
39 void RemovePermissions(const Extension* extension,
42 // Adds all permissions in the |extension|'s active permissions to its
44 void GrantActivePermissions(const Extension* extension)
    [all...]
active_tab_unittest.cc 27 #include "extensions/common/extension.h"
41 scoped_refptr<const Extension> CreateTestExtension(
52 .Set("name", "Extension with ID " + id)
64 extension(CreateTestExtension("deadbeef", true, false)),
87 bool IsAllowed(const scoped_refptr<const Extension>& extension,
89 return IsAllowed(extension, url, tab_id());
92 bool IsAllowed(const scoped_refptr<const Extension>& extension,
96 extension.get(), url, url, tab_id, NULL, -1, NULL) &
139 scoped_refptr<const Extension> extension; member in class:extensions::__anon4605::ActiveTabTest
    [all...]
  /external/chromium_org/chrome/browser/resources/extensions/
extension_error.css 5 .extension-error-list a {
9 .extension-error-list ul {
13 .extension-error-list-contents {
17 .extension-error-list-show-more {
22 .extension-error-detailed-wrapper,
23 .extension-error-simple-wrapper {
27 .extension-error-metadata {
32 .extension-error-detailed-wrapper summary::-webkit-details-marker {
36 .extension-error-detailed-wrapper details :focus {
40 .extension-error-detailed-wrapper details[open]
    [all...]
extension_error.html 6 <div id="template-collection-extension-error" hidden>
7 <div class="extension-error-list">
8 <span class="extension-error-list-title"></span>
9 <ul class="extension-error-list-contents"></ul>
10 <div class="extension-error-list-show-more">
15 <div class="extension-error-simple-wrapper"></div>
17 <div class="extension-error-detailed-wrapper">
20 <div class="extension-error-details"></div>
24 <div class="extension-error-metadata">
25 <span class="extension-error-message"></span
    [all...]
pack_extension_overlay.html 1 <div id="pack-extension-overlay" class="page">
4 <div class="pack-extension-heading" i18n-content="packExtensionHeading">
6 <div class="pack-extension-text-boxes">
8 for="extension-root-dir"></label>
9 <input class="pack-extension-text-area"
10 id="extension-root-dir" type="text">
11 <button id="browse-extension-dir"
14 <div class="pack-extension-text-boxes">
15 <label i18n-content="packExtensionPrivateKey" for="extension-private-key">
17 <input class="pack-extension-text-area
    [all...]
  /external/chromium_org/apps/
launcher.h 19 class Extension;
24 // Launches the platform app |extension|. Creates appropriate launch data for
25 // the |command_line| fields present. |extension| and |profile| must not be
29 const extensions::Extension* extension,
33 // Launches the platform app |extension| by issuing an onLaunched event
36 const extensions::Extension* extension,
39 // Launches the platform app |extension| with no launch data.
41 const extensions::Extension* extension)
    [all...]
  /external/chromium_org/chrome/browser/ui/cocoa/extensions/
extension_install_prompt_test_utils.mm 12 #include "extensions/common/extension.h"
14 using extensions::Extension;
26 scoped_refptr<extensions::Extension> LoadInstallPromptExtension(
29 scoped_refptr<Extension> extension;
43 return extension;
46 extension = Extension::Create(
48 Extension::NO_FLAGS, &error);
49 if (!extension.get()
    [all...]
  /external/chromium_org/extensions/common/manifest_handlers/
shared_module_info.h 12 #include "extensions/common/extension.h"
17 class SharedModuleInfo : public Extension::ManifestData {
22 bool Parse(const Extension* extension, string16* error);
36 static bool IsSharedModule(const Extension* extension);
37 static bool IsExportAllowed(const Extension* extension,
41 static bool ImportsExtensionById(const Extension* extension,
    [all...]
background_info.cc 38 const BackgroundInfo& GetBackgroundInfo(const Extension* extension) {
40 extension->GetManifestData(kBackground));
57 GURL BackgroundInfo::GetBackgroundURL(const Extension* extension) {
58 const BackgroundInfo& info = GetBackgroundInfo(extension);
61 return extension->GetResourceURL(kGeneratedBackgroundPageFilename);
65 bool BackgroundInfo::HasGeneratedBackgroundPage(const Extension* extension) {
66 const BackgroundInfo& info = GetBackgroundInfo(extension);
    [all...]
  /external/chromium_org/extensions/common/permissions/
permissions_data.cc 17 #include "extensions/common/extension.h"
44 bool CanSpecifyExperimentalPermission(const Extension* extension) {
45 if (extension->location() == Manifest::COMPONENT)
56 if (extension->from_webstore())
62 // Checks whether the host |pattern| is allowed for the given |extension|,
64 bool CanSpecifyHostPermission(const Extension* extension,
70 GetPermittedChromeSchemeHosts(extension, permissions);
75 if (PermissionsData::CanExecuteScriptEverywhere(extension))
    [all...]
  /external/chromium/chrome/common/extensions/
extension_manifests_unittest.cc 15 #include "chrome/common/extensions/extension.h"
45 scoped_refptr<Extension> LoadExtensionWithLocation(
47 Extension::Location location,
53 int flags = Extension::NO_FLAGS;
55 flags |= Extension::STRICT_ERROR_CHECKS;
56 return Extension::Create(path.DirName(), location, *value, flags, error);
59 scoped_refptr<Extension> LoadExtension(const std::string& name,
61 return LoadExtensionWithLocation(name, Extension::INTERNAL, false, error);
64 scoped_refptr<Extension> LoadExtensionStrict(const std::string& name,
66 return LoadExtensionWithLocation(name, Extension::INTERNAL, true, error)
89 scoped_refptr<Extension> extension = LoadExtension(name, &error); local
97 scoped_refptr<Extension> extension = LoadExtensionStrict(name, &error); local
106 scoped_refptr<Extension> extension = LoadExtension(manifest, &error); local
217 scoped_refptr<Extension> extension; local
266 scoped_refptr<Extension> extension; local
285 scoped_refptr<Extension> extension; local
305 scoped_refptr<Extension> extension; local
369 scoped_refptr<Extension> extension; local
422 scoped_refptr<Extension> extension; local
463 scoped_refptr<Extension> extension; local
    [all...]
  /external/chromium_org/chrome/common/extensions/api/omnibox/
omnibox_handler.h 10 #include "extensions/common/extension.h"
15 class Extension;
17 struct OmniboxInfo : public Extension::ManifestData {
18 // The Omnibox keyword for an extension.
21 // Returns the omnibox keyword for the extension.
22 static const std::string& GetKeyword(const Extension* extension);
31 virtual bool Parse(Extension* extension, base::string16* error) OVERRIDE;
  /external/chromium_org/chrome/common/extensions/manifest_handlers/
app_launch_info.h 12 #include "extensions/common/extension.h"
20 class AppLaunchInfo : public Extension::ManifestData {
25 // Get the local path inside the extension to use with the launcher.
26 static const std::string& GetLaunchLocalPath(const Extension* extension);
29 static const GURL& GetLaunchWebURL(const Extension* extension);
37 const Extension* extension);
41 static int GetLaunchWidth(const Extension* extension)
    [all...]
theme_handler.h 8 #include "extensions/common/extension.h"
18 struct ThemeInfo : public Extension::ManifestData {
23 static const base::DictionaryValue* GetImages(const Extension* extension);
24 static const base::DictionaryValue* GetColors(const Extension* extension);
25 static const base::DictionaryValue* GetTints(const Extension* extension);
27 const Extension* extension);
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/
setuptools_extension.py 1 from distutils.core import Extension as _Extension
7 Also ensures that no other distutils extension monkeypatched the distutils
29 class Extension(_Extension):
30 """Extension that uses '.c' files in place of '.pyx' files"""
44 class Library(Extension):
45 """Just like a regular Extension, but built as a library instead"""
47 import sys, distutils.core, distutils.extension namespace
48 distutils.core.Extension = Extension
49 distutils.extension.Extension = Extensio
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/
setuptools_extension.py 1 from distutils.core import Extension as _Extension
7 Also ensures that no other distutils extension monkeypatched the distutils
29 class Extension(_Extension):
30 """Extension that uses '.c' files in place of '.pyx' files"""
44 class Library(Extension):
45 """Just like a regular Extension, but built as a library instead"""
47 import sys, distutils.core, distutils.extension namespace
48 distutils.core.Extension = Extension
49 distutils.extension.Extension = Extensio
    [all...]
  /external/chromium_org/chrome/common/extensions/manifest_tests/
extension_manifests_default_extent_path_unittest.cc 6 #include "extensions/common/extension.h"
10 scoped_refptr<extensions::Extension> extension(
13 ASSERT_EQ(1u, extension->web_extent().patterns().size());
14 EXPECT_EQ("/*", extension->web_extent().patterns().begin()->path());
15 EXPECT_TRUE(extension->web_extent().MatchesURL(
  /external/chromium/chrome/browser/extensions/
pending_extension_info.h 9 #include "chrome/common/extensions/extension.h"
13 // A pending extension is an extension that hasn't been installed yet
15 // update URL of a pending extension may be blank, in which case a
21 typedef bool (*ShouldAllowInstallPredicate)(const Extension&);
30 Extension::Location install_source);
38 // |should_allow_install| on an extension. After an extension is unpacked,
39 // this function is run. If it returns true, the extension is installed.
40 // If not, the extension is discarded. This allows creators o
    [all...]
  /external/chromium_org/chrome/common/extensions/api/url_handlers/
url_handlers_parser.h 11 #include "extensions/common/extension.h"
31 struct UrlHandlers : public Extension::ManifestData {
35 // Returns an array of URL handlers |extension| has defined in its manifest.
37 const Extension* extension);
39 // Determines whether |extension| has at least one URL handler that matches
42 const Extension* extension,
45 // Finds a matching URL handler for |extension|, if any. Returns NULL in none
48 const Extension* extension
    [all...]

Completed in 1105 milliseconds

12 3 4 5 6 7 8 91011>>