Home
last modified time | relevance | path

Searched refs:ForthEngine (Results 1 – 4 of 4) sorted by relevance

/external/chromium_org/third_party/skia/forth/
DStdWords.cpp15 virtual void exec(ForthEngine* fe)
110 virtual void exec(ForthEngine* fe) { in exec()
116 virtual void exec(ForthEngine* fe) { in exec()
122 virtual void exec(ForthEngine* fe) { in exec()
128 virtual void exec(ForthEngine* fe) { in exec()
134 virtual void exec(ForthEngine* fe) { in exec()
140 virtual void exec(ForthEngine* fe) { in exec()
148 virtual void exec(ForthEngine* fe) { in exec()
155 virtual void exec(ForthEngine* fe) { in exec()
163 virtual void exec(ForthEngine* fe) { in exec()
[all …]
DForthTests.cpp20 typedef void (*ForthWordTestProc)(ForthWord*, ForthEngine*, Reporter*);
29 static void drop_test0(ForthWord* word, ForthEngine* fe, Reporter* reporter) { in drop_test0()
35 static void drop_test1(ForthWord* word, ForthEngine* fe, Reporter* reporter) { in drop_test1()
43 static void dup_test(ForthWord* word, ForthEngine* fe, Reporter* reporter) { in dup_test()
51 static void swap_test(ForthWord* word, ForthEngine* fe, Reporter* reporter) { in swap_test()
60 static void over_test(ForthWord* word, ForthEngine* fe, Reporter* reporter) { in over_test()
70 static void rot_test(ForthWord* word, ForthEngine* fe, Reporter* reporter) { in rot_test()
81 static void rrot_test(ForthWord* word, ForthEngine* fe, Reporter* reporter) { in rrot_test()
92 static void swap2_test(ForthWord* word, ForthEngine* fe, Reporter* reporter) { in swap2_test()
105 static void dup2_test(ForthWord* word, ForthEngine* fe, Reporter* reporter) { in dup2_test()
[all …]
DForth.cpp14 ForthEngine::ForthEngine(ForthOutput* output) : fOutput(output) { in ForthEngine() function in ForthEngine
21 ForthEngine::~ForthEngine() { in ~ForthEngine()
25 void ForthEngine::sendOutput(const char text[]) { in sendOutput()
33 void ForthEngine::push(intptr_t value) { in push()
42 intptr_t ForthEngine::peek(size_t index) const { in peek()
52 void ForthEngine::setTop(intptr_t value) { in setTop()
61 intptr_t ForthEngine::pop() { in pop()
74 ForthEngine engine(NULL); in call()
163 static void Exec(const intptr_t*, ForthEngine*);
228 void FCode::Exec(const intptr_t* curr, ForthEngine* engine) { in Exec()
[all …]
DForth.h36 class ForthEngine {
38 ForthEngine(ForthOutput*);
39 ~ForthEngine();
80 virtual void exec(ForthEngine*) = 0;