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

1 2

  /external/chromium/webkit/glue/
cpp_binding_example.h 56 void echoValue(const CppArgumentList& args, CppVariant* result);
60 void echoType(const CppArgumentList& args, CppVariant* result);
64 void plus(const CppArgumentList& args, CppVariant* result);
67 void same(CppVariant* result);
71 void fallbackMethod(const CppArgumentList& args, CppVariant* result);
74 CppVariant my_value;
75 CppVariant my_other_value;
cpp_variant.h 6 This file contains the declaration for CppVariant, a type used by C++ classes
9 CppVariant exists primarily as an interface between C++ callers and the
10 corresponding NPVariant type. CppVariant also provides a number of
27 class CppVariant : public NPVariant {
29 CppVariant();
30 ~CppVariant();
36 // Note that setting a CppVariant to a string value involves copying the
38 // CppVariant is set to a different value or is no longer needed. Normally
45 // Note that setting a CppVariant to an NPObject involves ref-counting
46 // the actual object. FreeData() should only be called if the CppVariant
    [all...]
cpp_variant.cc 5 // This file contains definitions for CppVariant.
17 CppVariant::CppVariant() {
23 CppVariant::CppVariant(const CppVariant& original) {
29 CppVariant& CppVariant::operator=(const CppVariant& original) {
35 CppVariant::~CppVariant()
    [all...]
cpp_binding_example.cc 14 virtual bool GetValue(CppVariant* value) {
19 virtual bool SetValue(const CppVariant& value) {
25 CppVariant value_;
57 CppVariant* result) {
66 CppVariant* result) {
74 CppVariant arg1 = args[0];
86 CppVariant* result) {
92 CppVariant arg1 = args[0];
93 CppVariant arg2 = args[1];
100 // The value of a CppVariant may be read directly from its NPVariant struct
    [all...]
cpp_bound_class.h 33 typedef std::vector<CppVariant> CppArgumentList;
36 // directly to C++ method calls and CppVariant* variable access.
45 virtual bool GetValue(CppVariant* value) = 0;
48 virtual bool SetValue(const CppVariant& value) = 0;
57 // Return a CppVariant representing this class, for use with BindProperty().
59 CppVariant* GetAsCppVariant();
71 typedef Callback2<const CppArgumentList&, CppVariant*>::Type Callback;
72 typedef Callback1<CppVariant*>::Type GetterCallback;
87 void (T::*method)(const CppArgumentList&, CppVariant*)) {
89 NewCallback<T, const CppArgumentList&, CppVariant*>(
    [all...]
  /external/chromium_org/third_party/WebKit/Source/testing/runner/
WebAXObjectProxy.h 63 void roleGetterCallback(CppVariant*);
64 void titleGetterCallback(CppVariant*);
65 void descriptionGetterCallback(CppVariant*);
66 void helpTextGetterCallback(CppVariant*);
67 void stringValueGetterCallback(CppVariant*);
68 void xGetterCallback(CppVariant*);
69 void yGetterCallback(CppVariant*);
70 void widthGetterCallback(CppVariant*);
71 void heightGetterCallback(CppVariant*);
72 void intValueGetterCallback(CppVariant*);
    [all...]
TestRunner.h 186 void waitUntilDone(const CppArgumentList&, CppVariant*);
187 void notifyDone(const CppArgumentList&, CppVariant*);
191 void queueBackNavigation(const CppArgumentList&, CppVariant*);
192 void queueForwardNavigation(const CppArgumentList&, CppVariant*);
193 void queueReload(const CppArgumentList&, CppVariant*);
194 void queueLoadingScript(const CppArgumentList&, CppVariant*);
195 void queueNonLoadingScript(const CppArgumentList&, CppVariant*);
196 void queueLoad(const CppArgumentList&, CppVariant*);
197 void queueLoadHTMLString(const CppArgumentList&, CppVariant*);
203 void setCustomPolicyDelegate(const CppArgumentList&, CppVariant*);
    [all...]
EventSender.h 75 void dumpFilenameBeingDragged(const CppArgumentList&, CppVariant*);
78 void contextClick(const CppArgumentList&, CppVariant*);
79 void mouseDown(const CppArgumentList&, CppVariant*);
80 void mouseUp(const CppArgumentList&, CppVariant*);
81 void mouseMoveTo(const CppArgumentList&, CppVariant*);
82 void leapForward(const CppArgumentList&, CppVariant*);
83 void keyDown(const CppArgumentList&, CppVariant*);
84 void dispatchMessage(const CppArgumentList&, CppVariant*);
86 void textZoomIn(const CppArgumentList&, CppVariant*);
87 void textZoomOut(const CppArgumentList&, CppVariant*);
    [all...]
TextInputController.h 52 void insertText(const CppArgumentList&, CppVariant*);
53 void doCommand(const CppArgumentList&, CppVariant*);
54 void setMarkedText(const CppArgumentList&, CppVariant*);
55 void unmarkText(const CppArgumentList&, CppVariant*);
56 void hasMarkedText(const CppArgumentList&, CppVariant*);
57 void markedRange(const CppArgumentList&, CppVariant*);
58 void selectedRange(const CppArgumentList&, CppVariant*);
59 void firstRectForCharacterRange(const CppArgumentList&, CppVariant*);
60 void setComposition(const CppArgumentList&, CppVariant*);
GamepadController.h 56 void connect(const CppArgumentList&, CppVariant*);
57 void disconnect(const CppArgumentList&, CppVariant*);
58 void setId(const CppArgumentList&, CppVariant*);
59 void setButtonCount(const CppArgumentList&, CppVariant*);
60 void setButtonData(const CppArgumentList&, CppVariant*);
61 void setAxisCount(const CppArgumentList&, CppVariant*);
62 void setAxisData(const CppArgumentList&, CppVariant*);
63 void fallbackCallback(const CppArgumentList&, CppVariant*);
CppVariant.h 32 This file contains the declaration for CppVariant, a type used by C++ classes
35 CppVariant exists primarily as an interface between C++ callers and the
36 corresponding NPVariant type. CppVariant also provides a number of
51 class CppVariant : public NPVariant {
53 CppVariant();
54 ~CppVariant();
60 // Note that setting a CppVariant to a string value involves copying the
62 // CppVariant is set to a different value or is no longer needed. Normally
69 // Note that setting a CppVariant to an NPObject involves ref-counting
70 // the actual object. freeData() should only be called if the CppVariant
    [all...]
CppVariant.cpp 31 #include "CppVariant.h"
41 CppVariant::CppVariant()
48 CppVariant::CppVariant(const CppVariant& original)
55 CppVariant& CppVariant::operator=(const CppVariant& original)
62 CppVariant::~CppVariant(
    [all...]
CppBoundClass.h 46 #include "CppVariant.h"
59 typedef std::vector<CppVariant> CppArgumentList;
62 // directly to C++ method calls and CppVariant* variable access.
71 virtual bool getValue(CppVariant* result) = 0;
74 virtual bool setValue(const CppVariant&) = 0;
77 // Callback class for "void function(CppVariant*)"
81 virtual void run(CppVariant*) = 0;
90 // Return a CppVariant representing this class, for use with BindProperty().
92 CppVariant* getAsCppVariant();
108 // Callback for "void function(const CppArguemntList&, CppVariant*)"
    [all...]
AccessibilityController.h 72 void logAccessibilityEventsCallback(const CppArgumentList&, CppVariant*);
73 void fallbackCallback(const CppArgumentList&, CppVariant*);
74 void addNotificationListenerCallback(const CppArgumentList&, CppVariant*);
75 void removeNotificationListenerCallback(const CppArgumentList&, CppVariant*);
77 void focusedElementGetterCallback(CppVariant*);
78 void rootElementGetterCallback(CppVariant*);
79 void accessibleElementByIdGetterCallback(const CppArgumentList&, CppVariant*);
88 std::vector<CppVariant> m_notificationCallbacks;
AccessibilityController.cpp 144 CppVariant arguments[2];
147 CppVariant invokeResult;
152 void AccessibilityController::logAccessibilityEventsCallback(const CppArgumentList&, CppVariant* result)
158 void AccessibilityController::addNotificationListenerCallback(const CppArgumentList& arguments, CppVariant* result)
169 void AccessibilityController::removeNotificationListenerCallback(const CppArgumentList&, CppVariant* result)
175 void AccessibilityController::focusedElementGetterCallback(CppVariant* result)
180 void AccessibilityController::rootElementGetterCallback(CppVariant* result)
185 void AccessibilityController::accessibleElementByIdGetterCallback(const CppArgumentList& arguments, CppVariant* result)
200 void AccessibilityController::fallbackCallback(const CppArgumentList&, CppVariant* result)
WebAXObjectProxy.cpp 574 CppVariant notificationNameArgument;
576 CppVariant invokeResult;
585 void WebAXObjectProxy::roleGetterCallback(CppVariant* result)
590 void WebAXObjectProxy::titleGetterCallback(CppVariant* result)
595 void WebAXObjectProxy::descriptionGetterCallback(CppVariant* result)
600 void WebAXObjectProxy::helpTextGetterCallback(CppVariant* result)
605 void WebAXObjectProxy::stringValueGetterCallback(CppVariant* result)
610 void WebAXObjectProxy::xGetterCallback(CppVariant* result)
615 void WebAXObjectProxy::yGetterCallback(CppVariant* result)
620 void WebAXObjectProxy::widthGetterCallback(CppVariant* result
    [all...]
TestRunner.cpp 79 InvokeCallbackTask(TestRunner* object, WebScopedPtr<CppVariant> callbackArguments)
87 CppVariant invokeResult;
92 WebScopedPtr<CppVariant> m_callbackArguments;
791 void TestRunner::waitUntilDone(const CppArgumentList&, CppVariant* result)
797 void TestRunner::notifyDone(const CppArgumentList&, CppVariant* result)
829 void TestRunner::queueBackNavigation(const CppArgumentList& arguments, CppVariant* result)
836 void TestRunner::queueForwardNavigation(const CppArgumentList& arguments, CppVariant* result)
852 void TestRunner::queueReload(const CppArgumentList&, CppVariant* result)
884 void TestRunner::queueLoadingScript(const CppArgumentList& arguments, CppVariant* result)
891 void TestRunner::queueNonLoadingScript(const CppArgumentList& arguments, CppVariant* result
    [all...]
  /external/chromium_org/content/test/
cpp_binding_example.h 59 webkit_glue::CppVariant* result);
64 webkit_glue::CppVariant* result);
69 webkit_glue::CppVariant* result);
72 void same(webkit_glue::CppVariant* result);
77 webkit_glue::CppVariant* result);
80 webkit_glue::CppVariant my_value;
81 webkit_glue::CppVariant my_other_value;
cpp_binding_example.cc 14 using webkit_glue::CppVariant;
22 virtual bool GetValue(CppVariant* value) OVERRIDE {
27 virtual bool SetValue(const CppVariant& value) OVERRIDE {
33 CppVariant value_;
70 CppVariant* result) {
79 CppVariant* result) {
87 CppVariant arg1 = args[0];
99 CppVariant* result) {
105 CppVariant arg1 = args[0];
106 CppVariant arg2 = args[1]
    [all...]
  /external/chromium_org/webkit/renderer/
cpp_variant.h 6 This file contains the declaration for CppVariant, a type used by C++ classes
9 CppVariant exists primarily as an interface between C++ callers and the
10 corresponding NPVariant type. CppVariant also provides a number of
30 class WEBKIT_RENDERER_EXPORT CppVariant : public NPVariant {
32 CppVariant();
33 ~CppVariant();
39 // Note that setting a CppVariant to a string value involves copying the
41 // CppVariant is set to a different value or is no longer needed. Normally
48 // Note that setting a CppVariant to an NPObject involves ref-counting
49 // the actual object. FreeData() should only be called if the CppVariant
    [all...]
cpp_variant.cc 5 // This file contains definitions for CppVariant.
19 CppVariant::CppVariant() {
25 CppVariant::CppVariant(const CppVariant& original) {
31 CppVariant& CppVariant::operator=(const CppVariant& original) {
37 CppVariant::~CppVariant()
    [all...]
cpp_bound_class.h 34 typedef std::vector<CppVariant> CppArgumentList;
37 // directly to C++ method calls and CppVariant* variable access.
46 virtual bool GetValue(CppVariant* value) = 0;
49 virtual bool SetValue(const CppVariant& value) = 0;
58 // Return a CppVariant representing this class, for use with BindProperty().
60 CppVariant* GetAsCppVariant();
72 typedef base::Callback<void(const CppArgumentList&, CppVariant*)> Callback;
73 typedef base::Callback<void(CppVariant*)> GetterCallback;
88 // Bind the Javascript property called |name| to a CppVariant |prop|.
89 void BindProperty(const std::string& name, CppVariant* prop)
    [all...]
  /external/chromium_org/content/renderer/
dom_automation_controller.h 88 webkit_glue::CppVariant* result);
94 webkit_glue::CppVariant* result);
103 webkit_glue::CppVariant* result);
106 webkit_glue::CppVariant* result);
  /external/chromium_org/chrome/renderer/
external_host_bindings.h 38 webkit_glue::CppVariant* result);
40 webkit_glue::CppVariant on_message_handler_;
  /external/chromium_org/components/plugins/renderer/
mobile_youtube_plugin.h 31 webkit_glue::CppVariant* result);

Completed in 188 milliseconds

1 2