HomeSort by relevance Sort by last modified time
    Searched refs:instance (Results 201 - 225 of 2823) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/chromium_org/ppapi/c/
ppp_input_event.h 40 * handler. So it is important that an instance respond accurately with
44 * event, typically the instance will be given focus. Returning false from
46 * the click will be given to a lower part of the page and your instance will
47 * not receive focus. This allows an instance to be partially transparent,
63 * handler) for mouse events. Otherwise, the instance will not receive focus
75 PP_Bool (*HandleInputEvent)(PP_Instance instance, PP_Resource input_event);
ppp_messaging.h 41 * is invoked on the DOM element for the module instance in JavaScript. Note
46 * @param[in] instance A <code>PP_Instance</code> identifying one instance
60 * the module instance on which it was invoked, with <code>message</code>
78 void (*HandleMessage)(PP_Instance instance, struct PP_Var message);
ppp_mouse_lock.h 36 * MouseLockLost() is called when the instance loses the mouse lock, such as
39 * @param[in] instance A <code>PP_Instance</code> identifying one instance
42 void (*MouseLockLost)(PP_Instance instance);
  /external/chromium_org/ppapi/c/private/
ppb_flash_print.h 34 * Invokes printing on the given plugin instance.
36 void (*InvokePrinting)(PP_Instance instance);
ppb_uma_private.h 40 void (*HistogramCustomTimes)(PP_Instance instance,
51 void (*HistogramCustomCounts)(PP_Instance instance,
63 void (*HistogramEnumeration)(PP_Instance instance,
73 int32_t (*IsCrashReportingEnabled)(PP_Instance instance,
ppp_instance_private.h 40 * the given instance. Normally this will be a PPP_Class_Deprecated object
48 * @param[in] instance A PP_Instance identifying the instance from which the
49 * instance object is being requested.
52 struct PP_Var (*GetInstanceObject)(PP_Instance instance);
  /external/chromium_org/ppapi/cpp/
graphics_3d_client.h 16 class Instance;
20 // instance.
26 /// @param[in] instance The instance that will own the new
28 explicit Graphics3DClient(Instance* instance);
module.cc 34 #include "ppapi/cpp/instance.h"
49 Instance* instance = module_singleton->InstanceForPPInstance(pp_instance);
50 if (!instance)
53 return PP_FromBool(instance->HandleInputEvent(InputEvent(resource)));
70 Instance* instance = module_singleton->CreateInstance(pp_instance);
71 if (!instance)
73 module_singleton->current_instances_[pp_instance] = instance;
74 return PP_FromBool(instance->Init(argc, argn, argv))
    [all...]
  /external/chromium_org/ppapi/proxy/
ppb_testing_proxy.h 39 void OnMsgRunMessageLoop(PP_Instance instance);
40 void OnMsgQuitMessageLoop(PP_Instance instance);
41 void OnMsgGetLiveObjectsForInstance(PP_Instance instance, uint32_t* result);
42 void OnMsgSimulateInputEvent(PP_Instance instance,
  /external/chromium_org/ppapi/thunk/
ppb_audio_config_thunk.cc 16 PP_Resource CreateStereo16bit(PP_Instance instance,
20 EnterResourceCreation enter(instance);
23 return enter.functions()->CreateAudioConfig(instance, sample_rate,
34 uint32_t RecommendSampleFrameCount_1_1(PP_Instance instance,
38 EnterInstance enter(instance);
41 return PPB_AudioConfig_Shared::RecommendSampleFrameCount_1_1(instance,
68 PP_AudioSampleRate RecommendSampleRate(PP_Instance instance) {
70 EnterInstance enter(instance);
73 return PPB_AudioConfig_Shared::RecommendSampleRate(instance);
ppb_browser_font_singleton_api.h 19 virtual PP_Var GetFontFamilies(PP_Instance instance) = 0;
ppb_file_mapping_thunk.cc 20 int32_t Map(PP_Instance instance,
29 EnterInstanceAPI<PPB_FileMapping_API> enter(instance, callback);
32 return enter.SetResult(enter.functions()->Map(instance,
42 int32_t Unmap(PP_Instance instance,
47 EnterInstanceAPI<PPB_FileMapping_API> enter(instance, callback);
50 return enter.SetResult(enter.functions()->Unmap(instance,
56 int64_t GetMapPageSize(PP_Instance instance) {
58 EnterInstanceAPI<PPB_FileMapping_API> enter(instance);
61 return enter.functions()->GetMapPageSize(instance);
ppb_uma_singleton_api.h 18 virtual void HistogramCustomTimes(PP_Instance instance,
25 virtual void HistogramCustomCounts(PP_Instance instance,
32 virtual void HistogramEnumeration(PP_Instance instance,
38 PP_Instance instance,
ppb_flash_thunk.cc 23 void SetInstanceAlwaysOnTop(PP_Instance instance, PP_Bool on_top) {
24 EnterInstanceAPI<PPB_Flash_Functions_API> enter(instance);
27 enter.functions()->SetInstanceAlwaysOnTop(instance, on_top);
30 PP_Bool DrawGlyphs(PP_Instance instance,
41 EnterInstanceAPI<PPB_Flash_Functions_API> enter(instance);
45 instance, pp_image_data, font_desc, color, position, clip, transformation,
49 PP_Var GetProxyForURL(PP_Instance instance, const char* url) {
50 EnterInstanceAPI<PPB_Flash_Functions_API> enter(instance);
53 return enter.functions()->GetProxyForURL(instance, url);
59 // TODO(brettw): this function should take an instance
61 PP_Instance instance; local
    [all...]
  /external/mockito/src/org/mockito/internal/util/reflection/
InstanceField.java 13 * Represents an accessible instance field.
15 * Contains the instance reference on which the field can be read adn write.
19 private final Object instance; field in class:InstanceField
26 * the field belong to this instance class.
27 * @param instance The instance from which the field shall be accessed.
29 public InstanceField(Field field, Object instance) {
31 this.instance = Checks.checkNotNull(instance, "instance");
    [all...]
Fields.java 26 * Instance fields declared in the class and superclasses of the given instance.
28 * @param instance Instance from which declared fields will be retrieved.
29 * @return InstanceFields of this object instance.
31 public static InstanceFields allDeclaredFieldsOf(Object instance) {
33 for (Class<?> clazz = instance.getClass(); clazz != Object.class; clazz = clazz.getSuperclass()) {
34 instanceFields.addAll(instanceFieldsIn(instance, clazz.getDeclaredFields()));
36 return new InstanceFields(instance, instanceFields);
40 * Instance fields declared in the class of the given instance
    [all...]
  /frameworks/wilhelm/src/
sync.c 64 IObject *instance = (IObject *) thiz->mEngine.mInstances[i]; local
66 if (NULL == instance) {
70 object_lock_exclusive(instance);
71 unsigned attributesMask = instance->mAttributesMask;
72 instance->mAttributesMask = 0;
74 switch (IObjectToObjectID(instance)) {
77 object_unlock_exclusive(instance);
80 CAudioPlayer *audioPlayer = (CAudioPlayer *) instance;
87 object_unlock_exclusive(instance);
  /external/chromium_org/content/renderer/pepper/
renderer_ppapi_host_impl.cc 35 PP_Instance instance) {
36 return RendererPpapiHostImpl::GetForPPInstance(instance);
108 PepperPluginInstanceImpl* instance = local
110 if (!instance)
115 return instance->module()->renderer_ppapi_host();
120 PepperPluginInstanceImpl* instance) {
122 new PepperInProcessResourceCreation(this, instance));
126 PP_Instance instance) const {
127 return GetAndValidateInstance(instance);
139 PP_Instance instance) const
271 PepperPluginInstanceImpl* instance = local
    [all...]
mock_renderer_ppapi_host.h 23 // This function takes the RenderView and instance that the mock resource
25 MockRendererPpapiHost(RenderView* render_view, PP_Instance instance);
36 virtual bool IsValidInstance(PP_Instance instance) const OVERRIDE;
37 virtual PepperPluginInstance* GetPluginInstance(PP_Instance instance) const
39 virtual RenderFrame* GetRenderFrameForInstance(PP_Instance instance) const
41 virtual RenderView* GetRenderViewForInstance(PP_Instance instance) const
44 PP_Instance instance) const OVERRIDE;
46 virtual bool HasUserGesture(PP_Instance instance) const OVERRIDE;
47 virtual int GetRoutingIDForWidget(PP_Instance instance) const OVERRIDE;
48 virtual gfx::Point PluginPointToRenderFrame(PP_Instance instance,
    [all...]
  /external/chromium_org/content/child/npapi/
webplugin_ime_win.cc 23 // WebPluginIMEWin instance through our patch function.
134 bool WebPluginIMEWin::SendEvents(PluginInstance* instance) {
135 // We allow the patch functions to access this WebPluginIMEWin instance only
142 if (!instance->NPP_HandleEvent(&(*it)))
199 WebPluginIMEWin* instance = GetInstance(context); local
200 if (!instance)
204 instance->input_type_ = input_type;
205 instance->status_updated_ = true;
214 WebPluginIMEWin* instance = GetInstance(context); local
215 if (!instance)
279 WebPluginIMEWin* instance = instance_; local
295 WebPluginIMEWin* instance = GetInstance(context); local
310 WebPluginIMEWin* instance = GetInstance(context); local
    [all...]
  /external/chromium_org/ppapi/cpp/dev/
video_capture_client_dev.cc 8 #include "ppapi/cpp/instance.h"
18 void OnDeviceInfo(PP_Instance instance,
24 Instance::GetPerInstanceObject(instance, kPPPVideoCaptureInterface));
36 void OnStatus(PP_Instance instance, PP_Resource resource, uint32_t status) {
38 Instance::GetPerInstanceObject(instance, kPPPVideoCaptureInterface));
43 void OnError(PP_Instance instance, PP_Resource resource, uint32_t error_code) {
45 Instance::GetPerInstanceObject(instance, kPPPVideoCaptureInterface))
    [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...]
  /art/test/034-call-null/src/
Main.java 25 Main instance = null; local
26 instance.doStuff(0, null, null, null);
  /developers/build/prebuilts/gradle/BasicMultitouch/Application/src/main/java/com/example/android/basicmultitouch/
Pools.java 28 * MyPooledClass instance = sPool.acquire();
29 * return (instance != null) ? instance : new MyPooledClass();
53 * @return An instance from the pool if such, null otherwise.
58 * Release an instance to the pool.
60 * @param instance The instance to release.
61 * @return Whether the instance was put in the pool.
63 * @throws IllegalStateException If the instance is already in the pool.
65 public boolean release(T instance);
101 T instance = (T) mPool[lastPooledIndex]; local
    [all...]

Completed in 281 milliseconds

1 2 3 4 5 6 7 891011>>