HomeSort by relevance Sort by last modified time
    Searched defs:SkLua (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/third_party/skia/include/utils/
SkLua.h 29 class SkLua {
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/skia/include/utils/
SkLua.h 29 class SkLua {
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/
SkLua.cpp 8 #include "SkLua.h"
84 SkLua::SkLua(const char termCode[]) : fTermCode(termCode), fWeOwnL(true) {
87 SkLua::Load(fL);
90 SkLua::SkLua(lua_State* L) : fL(L), fWeOwnL(false) {}
92 SkLua::~SkLua() {
104 bool SkLua::runCode(const char code[]) {
113 bool SkLua::runCode(const void* code, size_t size)
    [all...]
  /external/skia/src/utils/
SkLua.cpp 8 #include "SkLua.h"
84 SkLua::SkLua(const char termCode[]) : fTermCode(termCode), fWeOwnL(true) {
87 SkLua::Load(fL);
90 SkLua::SkLua(lua_State* L) : fL(L), fWeOwnL(false) {}
92 SkLua::~SkLua() {
104 bool SkLua::runCode(const char code[]) {
113 bool SkLua::runCode(const void* code, size_t size)
    [all...]

Completed in 178 milliseconds