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

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

Completed in 651 milliseconds