HomeSort by relevance Sort by last modified time
    Searched full:instance (Results 226 - 250 of 17684) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/athena/content/
app_registry_impl.cc 34 AppRegistryImpl* instance = NULL; member in namespace:athena::__anon6736
72 DCHECK(!instance);
73 instance = new AppRegistryImpl();
78 DCHECK(instance);
79 return instance;
84 DCHECK(instance);
85 delete instance;
91 instance = NULL;
  /external/chromium_org/mojo/examples/pepper_container_app/
mojo_ppapi_globals.h 41 PP_Instance AddInstance(PluginInstance* instance);
42 void InstanceDeleted(PP_Instance instance);
43 PluginInstance* GetInstance(PP_Instance instance);
51 PP_Instance instance) OVERRIDE;
52 virtual void LogWithSource(PP_Instance instance,
61 PP_Instance instance) OVERRIDE;
63 PP_Instance instance) OVERRIDE;
64 virtual PP_Module GetModuleForInstance(PP_Instance instance) OVERRIDE;
  /external/chromium_org/mojo/system/
entrypoints.h 15 // Sets the instance of Core to be used by system functions.
17 // Gets the instance of Core to be used by system functions.
  /external/chromium_org/pdf/
pdf.h 19 virtual pp::Instance* CreateInstance(PP_Instance instance);
  /external/chromium_org/ppapi/api/dev/
ppp_widget_dev.idl 19 * Informs the instance that the given rectangle needs to be repainted.
21 void Invalidate([in] PP_Instance instance,
  /external/chromium_org/ppapi/api/private/
ppb_flash_print.idl 20 * Invokes printing on the given plugin instance.
22 void InvokePrinting([in] PP_Instance instance);
  /external/chromium_org/ppapi/cpp/
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/cpp/private/
find_private.h 16 class Instance;
20 // interfaces with an object. It associates itself with the given instance, and
24 // You would typically use this either via inheritance on your instance:
25 // class MyInstance : public pp::Instance, public pp::Find_Private {
36 // class MyInstance : public pp::Instance {
44 // The instance parameter must outlive this class.
45 Find_Private(Instance* instance);
  /external/chromium_org/ppapi/shared_impl/
ppb_message_loop_shared.cc 9 MessageLoopShared::MessageLoopShared(PP_Instance instance)
10 : Resource(OBJECT_IS_PROXY, instance) {}
  /external/chromium_org/ui/base/touch/
touch_editing_controller.cc 22 TouchSelectionControllerFactory* instance) {
23 g_shared_instance = instance;
  /external/chromium_org/ui/native_theme/
native_theme_aurawin.cc 36 NativeTheme* NativeTheme::instance() { function in class:ui::NativeTheme
37 return NativeThemeAuraWin::instance();
41 NativeThemeAura* NativeThemeAura::instance() { function in class:ui::NativeThemeAura
42 return NativeThemeAuraWin::instance();
46 NativeThemeAuraWin* NativeThemeAuraWin::instance() { function in class:ui::NativeThemeAuraWin
63 NativeThemeWin::instance()->IsUsingHighContrastTheme()) {
64 NativeThemeWin::instance()->Paint(canvas, part, state, rect, extra);
81 return NativeThemeWin::instance()->GetPartSize(part, state, extra);
  /external/clang/test/SemaObjC/
ivar-in-class-extension-error.m 7 int _p0; // expected-error {{instance variables may not be placed in class extension}}
13 int _p1; // expected-error {{instance variables may not be placed in categories}}
protocol-id-test-1.m 10 @interface INTF<P> // expected-note {{receiver is instance of class declared here}}
15 - (void)IMeth {INTF<P> *pi; [pi Meth]; } // expected-warning {{instance method '-Meth' not found (return type defaults to 'id'); did you mean '-IMeth'?}}
  /external/smali/baksmali/src/test/resources/DuplicateTest/
DuplicateStaticInstanceFields.smali 12 # instance fields
15 # There is both a static and instance field with this signature.
  /hardware/qcom/media/mm-core/omxcore/src/7630/
qc_registry_table.c 42 NULL, // Create instance function
43 // Unique instance handle
62 NULL, // Create instance function
63 // Unique instance handle
82 NULL, // Create instance function
83 // Unique instance handle
102 NULL, // Create instance function
103 // Unique instance handle
122 NULL, // Create instance function
123 // Unique instance handl
    [all...]
  /development/samples/training/multiscreen/newsreader/src/com/example/android/newsreader/
NewsSource.java 25 // the instance
26 static NewsSource instance = null; field in class:NewsSource
34 /** Returns the singleton instance of this class. */
36 if (instance == null) {
37 instance = new NewsSource();
39 return instance;
  /device/generic/goldfish/camera/
EmulatedFakeCamera.h 23 * for EmulatedFakeCameraDevice instance.
33 * instance that emulates a fake camera device.
37 /* Constructs EmulatedFakeCamera instance. */
40 /* Destructs EmulatedFakeCamera instance. */
48 /* Initializes EmulatedFakeCamera instance. */
56 /* Gets emulated camera device ised by this instance of the emulated camera.
  /external/apache-harmony/support/src/test/java/tests/support/
Support_HttpSocket.java 30 private final Socket instance; field in class:Support_HttpSocket
35 instance = socket;
40 return instance.getInputStream();
45 return instance.getOutputStream();
49 if (!streamOpen && instance != null) {
50 instance.close();
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/
ContentViewUtil.java 19 * @return pointer to native WebContents instance, suitable for using with a
20 * (java) ContentViewCore instance.
27 * @return pointer to native WebContents instance, suitable for using with a
28 * (java) ContentViewCore instance.
35 * @return pointer to native WebContents instance, suitable for using with a
36 * (java) ContentViewCore instance.
  /external/chromium_org/components/password_manager/core/browser/
password_generation_manager.h 51 // The PasswordManagerClient instance associated with this instance. Must
52 // outlive this instance.
55 // The PasswordManagerDriver instance associated with this instance. Must
56 // outlive this instance.
  /external/chromium_org/ppapi/c/dev/
ppb_messaging_deprecated.h 27 void (*HandleMessage)(PP_Instance instance,
30 struct PP_Var (*HandleBlockingMessage)(PP_Instance instance,
33 void (*Destroy)(PP_Instance instance, void* user_data);
37 void (*PostMessage)(PP_Instance instance, struct PP_Var message);
39 PP_Instance instance,
43 void (*UnregisterMessageHandler)(PP_Instance instance);
  /external/chromium_org/ppapi/proxy/
flash_clipboard_resource.h 20 FlashClipboardResource(Connection connection, PP_Instance instance);
27 virtual uint32_t RegisterCustomFormat(PP_Instance instance,
29 virtual PP_Bool IsFormatAvailable(PP_Instance instance,
32 virtual PP_Var ReadData(PP_Instance instance,
35 virtual int32_t WriteData(PP_Instance instance,
41 PP_Instance instance,
net_address_resource.cc 18 PP_Instance instance,
20 : PluginResource(connection, instance) {
27 PP_Instance instance,
29 : PluginResource(connection, instance) {
36 PP_Instance instance,
38 : PluginResource(connection, instance) {
ppp_pdf_proxy.cc 17 PP_Var GetLinkAtPosition(PP_Instance instance, PP_Point point) {
22 void Transform(PP_Instance instance, PP_PrivatePageTransformType type) {
24 HostDispatcher::GetForInstance(instance)->Send(
25 new PpapiMsg_PPPPdf_Rotate(API_ID_PPP_PDF, instance, clockwise));
68 void PPP_Pdf_Proxy::OnPluginMsgRotate(PP_Instance instance, bool clockwise) {
73 CallWhileUnlocked(ppp_pdf_->Transform, instance, type);
  /external/chromium_org/ppapi/thunk/
ppb_console_thunk.cc 18 void Log(PP_Instance instance, PP_LogLevel level, struct PP_Var value) {
20 EnterInstance enter(instance);
23 enter.functions()->Log(instance, level, value);
26 void LogWithSource(PP_Instance instance,
31 EnterInstance enter(instance);
34 enter.functions()->LogWithSource(instance, level, source, value);

Completed in 2607 milliseconds

1 2 3 4 5 6 7 8 91011>>