HomeSort by relevance Sort by last modified time
    Searched refs:api_name (Results 1 - 25 of 38) sorted by null

1 2

  /external/chromium_org/ppapi/thunk/
interfaces_preamble.h 14 #define PROXIED_API(api_name)
19 #define UNPROXIED_API(api_name)
24 #define PROXIED_IFACE(api_name, iface_str, iface_struct)
29 #define UNPROXIED_IFACE(api_name, iface_str, iface_struct)
thunk.h 15 #define IFACE(api_name, interface_name, InterfaceType) \
  /external/chromium_org/content/renderer/media/
webrtc_uma_histograms.h 24 inline void UpdateWebRTCMethodCount(JavaScriptAPIName api_name) {
25 UMA_HISTOGRAM_ENUMERATION("WebRTC.webkitApiCount", api_name, INVALID_NAME);
  /external/chromium_org/chrome/browser/component_updater/
ppapi_utils.cc 110 #define UNPROXIED_IFACE(api_name, iface_str, iface_struct) \
113 #define PROXIED_IFACE(api_name, iface_str, iface_struct) \
114 UNPROXIED_IFACE(api_name, iface_str, iface_struct)
  /external/chromium_org/chrome/common/extensions/docs/server2/
availability_finder.py 27 def _GetChannelFromFeatures(api_name, file_system, path):
32 feature = file_system.GetFromFile(path).get(api_name)
43 def _GetChannelFromApiFeatures(api_name, file_system):
45 return _GetChannelFromFeatures(api_name, file_system, _API_FEATURES)
50 def _GetChannelFromPermissionFeatures(api_name, file_system):
51 return _GetChannelFromFeatures(api_name, file_system, _PERMISSION_FEATURES)
53 def _GetChannelFromManifestFeatures(api_name, file_system):
55 model.UnixName(api_name),
59 def _ExistsInFileSystem(api_name, file_system):
60 '''Checks for existence of |api_name| within the list of files in the api
    [all...]
api_list_data_source.py 82 return [api_name['name'] for api_name in names]
reference_resolver.py 75 api_name = '.'.join(parts[:i])
76 if api_name not in api_list:
79 api = self._api_data_source.get(api_name)
106 'href': '%s.html#%s-%s' % (api_name, category, name.replace('.', '-')),
intro_data_source.py 74 api_name = os.path.splitext(intro_path.split('/')[-1])[0]
76 namespace=api_name)
  /external/chromium_org/chrome/renderer/extensions/
binding_generating_native_handler.h 22 // Generates binding for |api_name|, and sets the |bind_to| property on the
25 const std::string& api_name,
dom_activity_logger.h 33 virtual void log(const WebString& api_name,
binding_generating_native_handler.cc 13 const std::string& api_name,
16 api_name_(api_name),
dom_activity_logger.cc 29 const WebString& api_name,
45 params.api_call = api_name.utf8();
chrome_v8_context.cc 97 const std::string& api_name) {
99 api_name,
105 const std::string& api_name) {
106 return ExtensionAPI::GetSharedInstance()->IsAvailable(api_name,
chrome_v8_context.h 100 // Returns the availability of the API |api_name|.
101 Feature::Availability GetAvailability(const std::string& api_name);
103 // Returns whether the API |api_name| or any part of the API could be
106 bool IsAnyFeatureAvailableToContext(const std::string& api_name);
dispatcher.cc 180 std::string api_name = *v8::String::AsciiValue(args[0]->ToString()); local
181 Feature::Availability availability = context_->GetAvailability(api_name);
688 const std::string& api_name = *it; local
689 Feature* feature = feature_provider->GetFeature(api_name);
707 if (!context->IsAnyFeatureAvailableToContext(api_name)) {
708 DeregisterBinding(api_name, context);
712 RegisterBinding(api_name, context);
719 void Dispatcher::DeregisterBinding(const std::string& api_name,
723 GetOrCreateBindObjectIfAvailable(api_name, &bind_name, context);
730 const std::string& api_name,
    [all...]
  /external/chromium_org/ppapi/proxy/
interface_list.cc 134 #define PROXY_CLASS_NAME(api_name) api_name##_Proxy
138 #define PROXY_API_ID(api_name) PROXY_CLASS_NAME(api_name)::kApiID
141 #define PROXY_FACTORY_NAME(api_name) ProxyFactory<PROXY_CLASS_NAME(api_name)>
177 #define PROXIED_API(api_name) \
178 AddProxy(PROXY_API_ID(api_name), &PROXY_FACTORY_NAME(api_name));
183 #define PROXIED_IFACE(api_name, iface_str, iface_struct)
    [all...]
  /external/chromium_org/chrome/browser/extensions/activity_log/
activity_actions.h 49 const std::string& api_name);
65 const std::string& api_name() const { return api_name_; } function in class:extensions::Action
66 void set_api_name(const std::string api_name) { api_name_ = api_name; }
activity_actions.cc 51 const std::string& api_name)
55 api_name_(api_name),
66 new Action(extension_id(), time(), action_type(), api_name()));
150 details->api_call.reset(new std::string(api_name()));
161 details->api_call.reset(new std::string(api_name()));
192 details->api_call.reset(new std::string(api_name()));
  /external/chromium_org/chrome/browser/
three_d_api_observer.cc 102 string16 api_name; local
105 api_name = l10n_util::GetStringUTF16(IDS_3D_APIS_WEBGL_NAME);
108 api_name = l10n_util::GetStringUTF16(IDS_3D_APIS_PEPPER_3D_NAME);
113 api_name);
  /external/chromium_org/chrome/common/extensions/api/
extension_api_stub.cc 32 bool ExtensionAPI::IsAnyFeatureAvailableToContext(const std::string& api_name,
extension_api.cc 286 bool ExtensionAPI::IsAnyFeatureAvailableToContext(const std::string& api_name,
299 if (feature_name != api_name && feature_name.find(api_name + ".") == 0) {
304 return IsAvailable(api_name, NULL, context, url).is_available();
342 std::string api_name = GetAPINameFromFullName(full_name, &child_name); local
345 SchemaMap::iterator maybe_schema = schemas_.find(api_name);
351 unloaded_schemas_.find(api_name);
356 GeneratedSchemas::IsGenerated(api_name)) {
357 LoadSchema(api_name, GeneratedSchemas::Get(api_name));
    [all...]
extension_api.h 63 void RegisterSchemaResource(const std::string& api_name, int resource_id);
79 bool IsAnyFeatureAvailableToContext(const std::string& api_name,
  /external/chromium_org/ppapi/generators/
idl_thunk.py 105 def _StripApiName(api_name):
107 if api_name.endswith('Trusted'):
108 api_name = api_name[:-len('Trusted')]
109 if api_name.endswith('_Dev'):
110 api_name = api_name[:-len('_Dev')]
111 if api_name.endswith('_Private'):
112 api_name = api_name[:-len('_Private')
    [all...]
  /external/chromium_org/chrome/common/extensions/manifest_tests/
extension_manifests_platformapp_unittest.cc 121 const char* api_name = kPlatformAppExperimentalApis[i]; local
126 permissions->Append(new base::StringValue(api_name));
  /external/chromium_org/chrome/browser/extensions/
extension_function_dispatcher.cc 50 const std::string& api_name,
60 api_name,
70 api_name);
77 const std::string& api_name,
88 api_name,
99 api_name);

Completed in 601 milliseconds

1 2