Searched defs:SkLua (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/third_party/skia/include/utils/
H A DSkLua.h30 class SkLua { class
34 SkLua(const char termCode[] = NULL); // creates a new L, will close it
35 SkLua(lua_State*); // uses L, will not close it
36 ~SkLua();
66 // This SkCanvas lua methods is declared here to benefit from SkLua's friendship with SkCanvas.
/external/skia/include/utils/
H A DSkLua.h29 class SkLua { class
33 SkLua(const char termCode[] = NULL); // creates a new L, will close it
34 SkLua(lua_State*); // uses L, will not close it
35 ~SkLua();
64 // This SkCanvas lua methods is declared here to benefit from SkLua's friendship with SkCanvas.
/external/chromium_org/third_party/skia/src/utils/
H A DSkLua.cpp8 #include "SkLua.h"
87 SkLua::SkLua(const char termCode[]) : fTermCode(termCode), fWeOwnL(true) { function in class:SkLua
90 SkLua::Load(fL);
93 SkLua::SkLua(lua_State* L) : fL(L), fWeOwnL(false) {} function in class:SkLua
95 SkLua::~SkLua() {
107 bool SkLua::runCode(const char code[]) {
116 bool SkLua
[all...]
/external/skia/src/utils/
H A DSkLua.cpp8 #include "SkLua.h"
84 SkLua::SkLua(const char termCode[]) : fTermCode(termCode), fWeOwnL(true) { function in class:SkLua
87 SkLua::Load(fL);
90 SkLua::SkLua(lua_State* L) : fL(L), fWeOwnL(false) {} function in class:SkLua
92 SkLua::~SkLua() {
104 bool SkLua::runCode(const char code[]) {
113 bool SkLua
[all...]

Completed in 141 milliseconds