Searched defs:VarPrivate (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/ppapi/cpp/private/
H A Dvar_private.h18 // VarPrivate is a version of Var that exposes the private scripting API.
21 class VarPrivate : public Var { class in namespace:pp
23 VarPrivate() : Var() {} function in class:pp::VarPrivate
24 VarPrivate(Null) : Var(Null()) {} function in class:pp::VarPrivate
25 VarPrivate(bool b) : Var(b) {} function in class:pp::VarPrivate
26 VarPrivate(int32_t i) : Var(i) {} function in class:pp::VarPrivate
27 VarPrivate(double d) : Var(d) {} function in class:pp::VarPrivate
28 VarPrivate(const char* utf8_str) : Var(utf8_str) {} function in class:pp::VarPrivate
29 VarPrivate(const std::string& utf8_str) : Var(utf8_str) {} function in class:pp::VarPrivate
30 VarPrivate(PassRe function in class:pp::VarPrivate
31 VarPrivate(DontManage, PP_Var var) : Var(DontManage(), var) {} function in class:pp::VarPrivate
34 VarPrivate(const Var& other) : Var(other) {} function in class:pp::VarPrivate
[all...]
H A Dvar_private.cc27 VarPrivate::VarPrivate(const InstanceHandle& instance, function in class:pp::VarPrivate
39 ScriptableObject* VarPrivate::AsScriptableObject() const {
52 bool VarPrivate::HasProperty(const Var& name, Var* exception) const {
59 bool VarPrivate::HasMethod(const Var& name, Var* exception) const {
66 VarPrivate VarPrivate::GetProperty(const Var& name, Var* exception) const {
73 void VarPrivate::GetAllPropertyNames(std::vector<Var>* properties,
93 void VarPrivate::SetProperty(const Var& name, const Var& value,
101 void VarPrivate
[all...]

Completed in 476 milliseconds