/external/chromium_org/ppapi/thunk/ |
ppb_flash_fullscreen_thunk.cc | 18 PP_Bool IsFullscreen(PP_Instance instance) { 19 EnterInstanceAPI<PPB_Flash_Fullscreen_API> enter(instance); 22 return enter.functions()->IsFullscreen(instance); 25 PP_Bool SetFullscreen(PP_Instance instance, PP_Bool fullscreen) { 26 EnterInstanceAPI<PPB_Flash_Fullscreen_API> enter(instance); 29 return enter.functions()->SetFullscreen(instance, fullscreen); 34 PP_Bool GetScreenSize(PP_Instance instance, PP_Size* size) { 35 EnterInstance enter(instance); 38 return enter.functions()->GetScreenSize(instance, size);
|
ppb_fullscreen_thunk.cc | 18 PP_Bool IsFullscreen(PP_Instance instance) { 20 EnterInstance enter(instance); 23 return enter.functions()->IsFullscreen(instance); 26 PP_Bool SetFullscreen(PP_Instance instance, PP_Bool fullscreen) { 28 EnterInstance enter(instance); 31 return enter.functions()->SetFullscreen(instance, fullscreen); 34 PP_Bool GetScreenSize(PP_Instance instance, struct PP_Size* size) { 36 EnterInstance enter(instance); 39 return enter.functions()->GetScreenSize(instance, size);
|
ppb_instance_private_thunk.cc | 18 struct PP_Var GetWindowObject(PP_Instance instance) { 20 EnterInstance enter(instance); 23 return enter.functions()->GetWindowObject(instance); 26 struct PP_Var GetOwnerElementObject(PP_Instance instance) { 28 EnterInstance enter(instance); 31 return enter.functions()->GetOwnerElementObject(instance); 34 struct PP_Var ExecuteScript(PP_Instance instance, 38 EnterInstance enter(instance); 41 return enter.functions()->ExecuteScript(instance, script, exception);
|
/external/chromium_org/remoting/host/win/ |
core.cc | 8 extern "C" BOOL WINAPI PsDllMain(HINSTANCE instance, 12 BOOL WINAPI DllMain(HINSTANCE instance, DWORD reason, void* reserved) { 14 DisableThreadLibraryCalls(instance); 17 return PsDllMain(instance, reason, reserved);
|
/external/clang/test/SemaObjC/ |
method-not-defined.m | 3 @interface Foo // expected-note {{receiver is instance of class declared here}} 10 [[Foo alloc] init]; // expected-warning {{class method '+alloc' not found (return type defaults to 'id')}} expected-warning {{instance method '-init' not found (return type defaults to 'id')}} 11 [fooObj notdefined]; // expected-warning {{instance method '-notdefined' not found (return type defaults to 'id')}} 12 [obj whatever:1 :2 :3]; // expected-warning {{instance method '-whatever:::' not found (return type defaults to 'id')}}
|
/hardware/qcom/media/mm-core/src/8084/ |
qc_registry_table_android.c | 44 NULL, // Create instance function 45 // Unique instance handle 60 NULL, // Create instance function 61 // Unique instance handle 76 NULL, // Create instance function 77 // Unique instance handle 92 NULL, // Create instance function 93 // Unique instance handle 108 NULL, // Create instance function 109 // Unique instance handl [all...] |
/hardware/qcom/media/mm-core/src/8610/ |
qc_registry_table_android.c | 45 NULL, // Create instance function 46 // Unique instance handle 58 NULL, // Create instance function 59 // Unique instance handle 71 NULL, // Create instance function 72 // Unique instance handle 84 NULL, // Create instance function 85 // Unique instance handle 97 NULL, // Create instance function 98 // Unique instance handl [all...] |
qc_registry_table.c | 44 NULL, // Create instance function 45 // Unique instance handle 57 NULL, // Create instance function 58 // Unique instance handle 70 NULL, // Create instance function 71 // Unique instance handle 83 NULL, // Create instance function 84 // Unique instance handle 96 NULL, // Create instance function 97 // Unique instance handl [all...] |
/external/chromium_org/content/test/plugin/ |
plugin_test_factory.cc | 32 NPP instance, 37 new_test = new PluginArgumentsTest(instance, host_functions); 43 new_test = new PluginGetURLTest(instance, host_functions); 45 new_test = new NPObjectIdentityTest(instance, host_functions); 47 new_test = new NPObjectProxyTest(instance, host_functions); 60 new_test = new WindowlessPluginTest(instance, host_functions); 62 new_test = new ExecuteGetJavascriptUrlTest(instance, host_functions); 64 new_test = new ExecuteGetJavascriptUrl2Test(instance, host_functions); 68 new_test = new PluginWindowSizeTest(instance, host_functions); 71 new_test = new DeletePluginInStreamTest(instance, host_functions) [all...] |
/hardware/qcom/media/mm-core/src/7630/ |
qc_registry_table_android.c | 44 NULL, // Create instance function 45 // Unique instance handle 60 NULL, // Create instance function 61 // Unique instance handle 76 NULL, // Create instance function 77 // Unique instance handle 92 NULL, // Create instance function 93 // Unique instance handle 108 NULL, // Create instance function 109 // Unique instance handl [all...] |
/external/chromium_org/native_client_sdk/src/getting_started/part1/ |
hello_tutorial.cc | 18 /// this becomes a call to the HandleMessage() method of your pp::Instance 20 /// PostMessage() method on your pp::Instance. Note that these two methods 27 #include "ppapi/cpp/instance.h" 31 /// The Instance class. One of these exists for each instance of your NaCl 33 /// a new Instance for each occurrence of the <embed> tag that has these 40 class HelloTutorialInstance : public pp::Instance { 42 /// The constructor creates the plugin-side instance. 43 /// @param[in] instance the handle to the browser-side plugin instance [all...] |
/external/chromium_org/content/renderer/pepper/ |
host_var_tracker.cc | 21 : instance(object_var->instance()->pp_instance()) { 26 HostVarTracker::V8ObjectVarKey::V8ObjectVarKey(PP_Instance instance, 28 : instance(instance), 35 if (instance == other.instance) 37 return instance < other.instance; 57 v8::HandleScope handle_scope(object_var->instance()->GetIsolate()) 113 PepperPluginInstanceImpl* instance = local [all...] |
pepper_in_process_resource_creation.cc | 46 PepperPluginInstanceImpl* instance) 47 : ResourceCreationImpl(instance), host_impl_(host_impl) {} 52 PP_Instance instance, 57 host_impl_->GetRenderViewForInstance(instance)->GetWebkitPreferences())); 59 host_impl_->in_process_router()->GetPluginConnection(instance), 60 instance, 66 PP_Instance instance, 73 host_impl_->in_process_router()->GetPluginConnection(instance), 74 instance, 80 PP_Instance instance) { [all...] |
/external/chromium_org/ppapi/api/ |
ppb_fullscreen.idl | 9 * handling transitions of a module instance to and from fullscreen mode. 25 * IsFullscreen() checks whether the module instance is currently in 28 * @param[in] instance A <code>PP_Instance</code> identifying one instance 31 * @return <code>PP_TRUE</code> if the module instance is in fullscreen mode, 32 * <code>PP_FALSE</code> if the module instance is not in fullscreen mode. 35 [in] PP_Instance instance); 38 * SetFullscreen() switches the module instance to and from fullscreen 50 * @param[in] instance A <code>PP_Instance</code> identifying one instance [all...] |
/external/chromium_org/ppapi/c/ |
ppb_fullscreen.h | 23 * handling transitions of a module instance to and from fullscreen mode. 38 * IsFullscreen() checks whether the module instance is currently in 41 * @param[in] instance A <code>PP_Instance</code> identifying one instance 44 * @return <code>PP_TRUE</code> if the module instance is in fullscreen mode, 45 * <code>PP_FALSE</code> if the module instance is not in fullscreen mode. 47 PP_Bool (*IsFullscreen)(PP_Instance instance); 49 * SetFullscreen() switches the module instance to and from fullscreen 61 * @param[in] instance A <code>PP_Instance</code> identifying one instance [all...] |
/hardware/qcom/media/mm-core/src/8974/ |
qc_registry_table.c | 44 NULL, // Create instance function 45 // Unique instance handle 57 NULL, // Create instance function 58 // Unique instance handle 70 NULL, // Create instance function 71 // Unique instance handle 83 NULL, // Create instance function 84 // Unique instance handle 96 NULL, // Create instance function 97 // Unique instance handl [all...] |
/external/chromium_org/ppapi/shared_impl/ |
ppp_instance_combined.cc | 45 PP_Bool PPP_Instance_Combined::DidCreate(PP_Instance instance, 49 return CallWhileUnlocked(instance_1_1_.DidCreate, instance, argc, argn, argv); 52 void PPP_Instance_Combined::DidDestroy(PP_Instance instance) { 53 return CallWhileUnlocked(instance_1_1_.DidDestroy, instance); 56 void PPP_Instance_Combined::DidChangeView(PP_Instance instance, 62 instance_1_1_.DidChangeView, instance, view_changed_resource); 64 CallWhileUnlocked(did_change_view_1_0_, instance, position, clip); 68 void PPP_Instance_Combined::DidChangeFocus(PP_Instance instance, 70 CallWhileUnlocked(instance_1_1_.DidChangeFocus, instance, has_focus); 73 PP_Bool PPP_Instance_Combined::HandleDocumentLoad(PP_Instance instance, [all...] |
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/ |
LocalBroadcastManagerTest.java | 21 LocalBroadcastManager instance = LocalBroadcastManager.getInstance(Robolectric.application); local 22 assertNotNull(instance); 23 assertSame(instance, LocalBroadcastManager.getInstance(Robolectric.application)); 28 LocalBroadcastManager instance = LocalBroadcastManager.getInstance(Robolectric.application); local 37 instance.registerReceiver(receiver, new IntentFilter("com.foo")); 39 instance.sendBroadcast(new Intent("com.bar")); 41 instance.sendBroadcast(new Intent("com.foo")); 48 LocalBroadcastManager instance = LocalBroadcastManager.getInstance(Robolectric.application); local 57 instance.registerReceiver(receiver, new IntentFilter("com.foo")); 58 instance.unregisterReceiver(receiver) [all...] |
/external/chromium_org/third_party/libjingle/source/talk/media/devices/ |
linuxdeviceinfo.cc | 49 LibUDevSymbolTable* instance() { return &libudev_; } function in class:cricket::ScopedLibUdev 71 udev* instance() { return udev_; } function in class:cricket::ScopedUdev 88 udev_enumerate* instance() { return enumerate_; } function in class:cricket::ScopedUdevEnumerate 101 ScopedUdev udev_context(libudev_context->instance()); 102 if (!udev_context.instance()) { 105 ScopedUdevEnumerate enumerate_context(libudev_context->instance(), 106 udev_context.instance()); 107 if (!enumerate_context.instance()) { 110 libudev_context->instance()->udev_enumerate_add_match_subsystem()( 111 enumerate_context.instance(), "video4linux") [all...] |
/hardware/qcom/media/mm-core/src/7627A/ |
qc_registry_table.c | 42 NULL, // Create instance function 43 // Unique instance handle 58 NULL, // Create instance function 59 // Unique instance handle 74 NULL, // Create instance function 75 // Unique instance handle 90 NULL, // Create instance function 91 // Unique instance handle 106 NULL, // Create instance function 107 // Unique instance handl [all...] |
qc_registry_table_android.c | 43 NULL, // Create instance function 44 // Unique instance handle 59 NULL, // Create instance function 60 // Unique instance handle 75 NULL, // Create instance function 76 // Unique instance handle 91 NULL, // Create instance function 92 // Unique instance handle 107 NULL, // Create instance function 108 // Unique instance handl [all...] |
/hardware/qcom/media/mm-core/src/8226/ |
qc_registry_table.c | 44 NULL, // Create instance function 45 // Unique instance handle 57 NULL, // Create instance function 58 // Unique instance handle 70 NULL, // Create instance function 71 // Unique instance handle 83 NULL, // Create instance function 84 // Unique instance handle 96 NULL, // Create instance function 97 // Unique instance handl [all...] |
/external/chromium_org/native_client_sdk/src/getting_started/part2/ |
hello_tutorial.cc | 5 #include "ppapi/cpp/instance.h" 19 class HelloTutorialInstance : public pp::Instance { 21 explicit HelloTutorialInstance(PP_Instance instance) 22 : pp::Instance(instance) {} 45 virtual pp::Instance* CreateInstance(PP_Instance instance) { 46 return new HelloTutorialInstance(instance);
|
/external/chromium_org/ppapi/examples/threading/ |
threading.cc | 7 #include "ppapi/cpp/instance.h" 12 class MyInstance : public pp::Instance { 14 MyInstance(PP_Instance instance) : pp::Instance(instance) { 48 virtual pp::Instance* CreateInstance(PP_Instance instance) { 49 return new MyInstance(instance);
|
/external/chromium_org/ppapi/proxy/ |
ppp_printing_proxy.cc | 23 bool HasPrintingPermission(PP_Instance instance) { 24 Dispatcher* dispatcher = HostDispatcher::GetForInstance(instance); 30 uint32_t QuerySupportedFormats(PP_Instance instance) { 31 if (!HasPrintingPermission(instance)) 34 HostDispatcher::GetForInstance(instance)->Send( 36 instance, &result)); 40 int32_t Begin(PP_Instance instance, 42 if (!HasPrintingPermission(instance)) 50 HostDispatcher::GetForInstance(instance)->Send( 51 new PpapiMsg_PPPPrinting_Begin(API_ID_PPP_PRINTING, instance, [all...] |