HomeSort by relevance Sort by last modified time
    Searched refs:API (Results 226 - 250 of 492) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/chrome/common/extensions/docs/examples/api/idle/idle_simple/
history.js 30 // because the API currently doesn't fire idle messages, and we'd
  /external/chromium_org/chrome/common/extensions/docs/examples/api/storage/stylizr/
options.js 35 // Save it using the Chrome extension storage API.
  /external/chromium_org/chrome/renderer/resources/extensions/
app_custom_bindings.js 5 // Custom binding for the app API.
media_galleries_custom_bindings.js 5 // Custom binding for the Media Gallery API.
sync_file_system_custom_bindings.js 5 // Custom binding for the syncFileSystem API.
webstore_custom_bindings.js 5 // Custom binding for the webstore API.
33 // chrome/common/extensions/api/webstore.json).
file_system_custom_bindings.js 5 // Custom binding for the fileSystem API.
104 // Force the fileSystem API to be loaded in the background page. Using
106 // requireNative is only allowed while lazily loading an API.
web_view.js 79 // Implemented when the experimental API is available.
739 'api': 'webview',
885 * Implemented when the experimental API is available.
891 * Implemented when the experimental API is available.
902 * API.
907 // the 'contextmenu' API is disabled for stable channel.
913 * Implemented when the experimental API is available.
  /external/chromium_org/extensions/renderer/resources/
context_menus_custom_bindings.js 5 // Custom binding for the contextMenus API.
  /external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/polyfills/
cacheStoragePolyfill.js 5 // A simple, incomplete implementation of the CacheStorage API, intended to facilitate
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
context.c 47 * Other modules are responsible for API dispatch, vertex transformation,
423 /* per-API one-time init */
424 if (!(api_init_mask & (1 << ctx->API))) {
433 if (_mesa_is_desktop_gl(ctx) || ctx->API == API_OPENGLES2)
437 api_init_mask |= 1 << ctx->API;
642 else if (ctx->API == API_OPENGLES2) {
645 else if (ctx->API == API_OPENGLES) {
898 * is allocated, and increase its reference count. Setups the GL API dispatch
904 * \param api the GL API type to create the context fo
    [all...]
extensions.c 61 /** Set of API's in which the extension exists, as a bitset. */
78 * \brief Table of supported OpenGL extensions for all API's.
    [all...]
APIspec.py 32 """A Spec is an abstraction of the API spec."""
48 elif node.name == "api":
65 return API(self, self.impl_node)
68 """Return an API."""
69 return API(self, self.api_nodes[name])
72 class API(object):
73 """An API consists of categories and functions."""
82 # parse <api>
93 raise SpecError("unexpected node %s in api" % node.name)
108 """Find a matching function in the API.""
    [all...]
glformats.c 824 return ctx->API == API_OPENGL
827 return ctx->API == API_OPENGL
843 return ctx->API == API_OPENGLES;
    [all...]
  /external/mesa3d/src/mesa/main/
context.c 47 * Other modules are responsible for API dispatch, vertex transformation,
423 /* per-API one-time init */
424 if (!(api_init_mask & (1 << ctx->API))) {
433 if (_mesa_is_desktop_gl(ctx) || ctx->API == API_OPENGLES2)
437 api_init_mask |= 1 << ctx->API;
642 else if (ctx->API == API_OPENGLES2) {
645 else if (ctx->API == API_OPENGLES) {
898 * is allocated, and increase its reference count. Setups the GL API dispatch
904 * \param api the GL API type to create the context fo
    [all...]
extensions.c 61 /** Set of API's in which the extension exists, as a bitset. */
78 * \brief Table of supported OpenGL extensions for all API's.
    [all...]
APIspec.py 32 """A Spec is an abstraction of the API spec."""
48 elif node.name == "api":
65 return API(self, self.impl_node)
68 """Return an API."""
69 return API(self, self.api_nodes[name])
72 class API(object):
73 """An API consists of categories and functions."""
82 # parse <api>
93 raise SpecError("unexpected node %s in api" % node.name)
108 """Find a matching function in the API.""
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/
identity_internals_ui_browsertest.js 115 * Identity API token cache.
179 * Identity API token cache.
228 * tokens in Identity API token cache.
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/injected/
api_implementation.js 6 * @fileoverview Implentation of ChromeVox's public API.
40 * Inject the API into the page and set up communication with it.
55 // If the API script is already installed, just re-enable it.
56 window.location.href = 'javascript:cvox.Api.internalEnable();';
82 * Call the appropriate API function given a message from the page.
107 throw 'Unknown API call: ' + message['cmd'];
307 * Gets the predefined description set on a node by an api call, if such
  /external/iproute2/doc/
api-ip6-flowlabels.tex 25 no well-defined API to manage IPv6 flow information. In this document
26 I describe an attempt to design the API for Linux-2.2 IPv6 stack.
30 The API must solve the following tasks:
107 of received packet, we loose one very important property of BSD socket API,
242 parallel with IPsec API [RFC2367,Craig]. Actually, it may share API with
257 advanced API, especially, taking into account that eventually we
  /external/chromium_org/chrome/browser/resources/google_now/
utility.js 13 * an event listener, the extension may call a Chrome/HTML API method
233 * to addListener call for Chrome events, and to every API call that specifies
299 * Adds error processing to an API callback.
302 * a Chrome API event.
350 * @param {string} functionName Name of the chrome API function.
352 * API function.
360 // This is the wrapper for the API function. Pass the wrapped callback to
382 * Instruments an API function to add error processing to its user
387 * API function.
959 // TODO(robliao): Use signed-in state change watch API when it's available
    [all...]
  /external/jdiff/src/jdiff/
APIComparator.java 6 * This class contains method to compare two API objects.
32 /** For easy local access to the old API object. */
33 private static API oldAPI_;
34 /** For easy local access to the new API object. */
35 private static API newAPI_;
40 public void compareAPIs(API oldAPI, API newAPI) {
53 // Find packages which were removed in the new API
58 // all the *API classes.
62 // in both the old and new API, then treat it as changed
877 API api = oldAPI_; local
    [all...]
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/background/
accessibility_api_handler.js 6 * @fileoverview Accesses Chrome's accessibility extension API and gives
22 * The chrome.experimental.accessibility API is moving to
26 * has the experimental accessibility API.
30 * Fall back on the experimental API if the new name is not available.
37 * Class that adds listeners and handles events from the accessibility API.
72 console.log('Error trying to access accessibility extension api.');
300 // systemPrivate API is only available when this extension is loaded as a
536 * Given a control received from the accessibility api, determine an
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/egl/common/
egl_g3d.c 658 gdrv->base.API.Initialize = egl_g3d_initialize;
659 gdrv->base.API.Terminate = egl_g3d_terminate;
660 gdrv->base.API.GetProcAddress = egl_g3d_get_proc_address;
  /external/mesa3d/src/gallium/state_trackers/egl/common/
egl_g3d.c 658 gdrv->base.API.Initialize = egl_g3d_initialize;
659 gdrv->base.API.Terminate = egl_g3d_terminate;
660 gdrv->base.API.GetProcAddress = egl_g3d_get_proc_address;

Completed in 510 milliseconds

1 2 3 4 5 6 7 8 91011>>