OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ForthEngine
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/skia/forth/
StdWords.cpp
15
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
* fe)
[
all
...]
Forth.h
36
class
ForthEngine
{
38
ForthEngine
(ForthOutput*);
39
~
ForthEngine
();
65
SkDebugf("
ForthEngine
error: %s\n", msg);
80
virtual void exec(
ForthEngine
*) = 0;
Forth.cpp
14
ForthEngine
::
ForthEngine
(ForthOutput* output) : fOutput(output) {
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
engine(NULL)
[
all
...]
ForthTests.cpp
20
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
* fe, Reporter* reporter)
[
all
...]
Completed in 29 milliseconds