/external/chromium_org/chrome/common/json_schema/ |
json_schema_validator_unittest.cc | 18 base::Value* instance, 22 if (validator.Validate(instance)) 34 base::Value* instance, base::DictionaryValue* schema, 39 if (validator.Validate(instance)) {
|
/external/chromium_org/chrome/installer/gcapi/ |
gcapi_dll.cc | 19 extern "C" BOOL WINAPI DllMain(HINSTANCE instance,
|
/external/chromium_org/chrome/installer/setup/ |
archive_patch_helper.cc | 32 ArchivePatchHelper instance(working_directory, compressed_archive, 34 return (instance.Uncompress(NULL) && 35 (instance.EnsemblePatch() || instance.BinaryPatch()));
|
/external/chromium_org/chrome/renderer/pepper/ |
chrome_renderer_pepper_host_factory.h | 27 PP_Instance instance,
|
pepper_flash_drm_renderer_host.h | 23 PP_Instance instance,
|
pepper_flash_fullscreen_host.h | 21 PP_Instance instance,
|
/external/chromium_org/chrome/test/pyautolib/ |
chrome_driver_factory.py | 34 """Creates a new remote WebDriver instance. 36 This instance will connect to a new automation provider of an already 40 pyauto: pyauto.PyUITest instance 43 selenium.webdriver.remote.webdriver.WebDriver instance.
|
/external/chromium_org/chrome_frame/crash_reporting/ |
crash_dll.cc | 31 extern "C" BOOL WINAPI DllMain(HINSTANCE instance, DWORD reason,
|
/external/chromium_org/content/browser/accessibility/ |
browser_accessibility_manager.cc | 285 BrowserAccessibility* instance = GetFromRendererID(nodes[i].id); local 286 if (instance) 287 instance->PostInitialize(); 334 BrowserAccessibility* instance = GetFromRendererID(src.id); local 335 if (!instance) { 338 instance = CreateNode(NULL, src.id, 0); 344 instance->SetLocation(src.location); 349 instance->InitializeData(src); 361 // Delete any previous children of this instance that are no longer 367 const std::vector<BrowserAccessibility*>& old_children = instance->children() [all...] |
/external/chromium_org/content/renderer/android/ |
synchronous_compositor_factory.h | 31 // Must only be called once, e.g. on startup. Ownership of |instance| remains 33 static void SetInstance(SynchronousCompositorFactory* instance);
|
/external/chromium_org/content/renderer/pepper/ |
ppapi_unittest.h | 31 PepperPluginInstanceImpl* instance() const { return instance_.get(); } function in class:content::PpapiUnittest 37 // Deletes the instance and module to simulate module shutdown. 40 // Sets the view size of the plugin instance.
|
ppb_flash_message_loop_impl.cc | 45 PPB_Flash_MessageLoop_Impl::PPB_Flash_MessageLoop_Impl(PP_Instance instance) 46 : Resource(ppapi::OBJECT_IS_IMPL, instance), 57 PP_Resource PPB_Flash_MessageLoop_Impl::Create(PP_Instance instance) { 58 return (new PPB_Flash_MessageLoop_Impl(instance))->GetReference();
|
ppb_network_monitor_private_impl.cc | 44 PP_Instance instance, 47 : Resource(ppapi::OBJECT_IS_IMPL, instance), 59 PP_Instance instance, 63 new PPB_NetworkMonitor_Private_Impl(instance, callback, user_data));
|
/external/chromium_org/ppapi/api/ |
ppb_graphics_3d.idl | 32 * context = g3d->Create(instance, attribs, &context); 33 * inst->BindGraphics(instance, context); 54 * @param[in] instance The module instance. 70 * - <code>PP_ERROR_BADRESOURCE</code> if <code>instance</code> is invalid 75 [in] PP_Resource instance, 82 * a plugin instance using <code>PPB_Instance::BindGraphics</code> to draw 85 * @param[in] instance The module instance. 138 [in] PP_Instance instance, [all...] |
ppb_net_address.idl | 72 * @param[in] instance A <code>PP_Instance</code> identifying one instance of 79 PP_Resource CreateFromIPv4Address([in] PP_Instance instance, 86 * @param[in] instance A <code>PP_Instance</code> identifying one instance of 93 PP_Resource CreateFromIPv6Address([in] PP_Instance instance,
|
/external/chromium_org/ppapi/c/ |
ppb_audio.h | 94 * @param[in] instance A <code>PP_Instance</code> identifying one instance 106 PP_Resource (*Create)(PP_Instance instance,
|
ppb_gamepad.h | 103 void (*Sample)(PP_Instance instance, struct PP_GamepadsSampleData* data);
|
ppb_message_loop.h | 39 * Note the system manages the lifetime of the instance (and all associated 40 * resources). If the instance is deleted from the page, background threads may 43 * with your instance, you will probably want to create some kind of threadsafe 44 * proxy object that can handle asynchronous destruction of the instance object. 155 PP_Resource (*Create)(PP_Instance instance);
|
/external/chromium_org/ppapi/c/private/ |
ppb_flash_drm.h | 40 PP_Resource (*Create)(PP_Instance instance); 51 * monitor on which the plugin instance is displayed in |hmonitor|. PP_TRUE is
|
ppb_video_destination_private.h | 49 * @param[in] instance A <code>PP_Instance</code> identifying an instance of 53 * failure. Failure means the instance was invalid. 55 PP_Resource (*Create)(PP_Instance instance);
|
ppb_video_source_private.h | 47 * @param[in] instance A <code>PP_Instance</code> identifying an instance of 51 * failure. Failure means the instance was invalid. 53 PP_Resource (*Create)(PP_Instance instance);
|
/external/chromium_org/ppapi/cpp/dev/ |
buffer_dev.h | 23 Buffer_Dev(const InstanceHandle& instance, uint32_t size);
|
file_chooser_dev.h | 28 /// associated with a particular instance, so that it may be positioned on the 29 /// screen relative to the tab containing the instance. Returns 0 if passed 30 /// an invalid instance. 32 /// @param mode A PPB_FileChooser_Dev instance can be used to select a single 35 /// tag, a PPB_FileChooser_Dev instance cannot be used to select a directory. 48 FileChooser_Dev(const InstanceHandle& instance,
|
printing_dev.h | 15 class Instance; 17 // You would typically use this either via inheritance on your instance or 21 // The instance parameter must outlive this class. 22 explicit Printing_Dev(Instance* instance);
|
text_input_dev.h | 16 class Instance; 20 // with the given instance, and registers as the global handler for handling the 23 // You would typically use this either via inheritance on your instance: 24 // class MyInstance : public pp::Instance, public pp::TextInput_Dev { 35 // class MyInstance : public pp::Instance { 43 explicit TextInput_Dev(Instance* instance);
|