OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ForthWord
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/third_party/skia/forth/
ForthParser.h
14
class
ForthWord
;
24
void addWord(const char name[],
ForthWord
* word) {
28
void add(const char name[], size_t len,
ForthWord
* word) {
35
ForthWord
* find(const char name[], size_t len) const {
36
ForthWord
* word;
43
SkTDict<
ForthWord
*> fDict;
StdWords.cpp
13
class name##_ForthWord : public
ForthWord
{ \
109
class add_ForthWord : public
ForthWord
{ public:
115
class sub_ForthWord : public
ForthWord
{ public:
121
class mul_ForthWord : public
ForthWord
{ public:
127
class div_ForthWord : public
ForthWord
{ public:
133
class mod_ForthWord : public
ForthWord
{ public:
139
class divmod_ForthWord : public
ForthWord
{ public:
147
class dot_ForthWord : public
ForthWord
{ public:
154
class abs_ForthWord : public
ForthWord
{ public:
162
class negate_ForthWord : public
ForthWord
{ public
[
all
...]
Forth.h
77
class
ForthWord
{
79
virtual ~
ForthWord
() {}
92
void addWord(const char name[],
ForthWord
*);
96
ForthWord
* findWord(const char name[]);
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
...]
Forth.cpp
73
void
ForthWord
::call(ForthCallBlock* block) {
148
void appendWord(
ForthWord
*);
182
void FCode::appendWord(
ForthWord
* word) {
233
reinterpret_cast<
ForthWord
*>(c)->exec(engine);
266
class CustomWord : public
ForthWord
{
287
SkTDict<
ForthWord
*>::Iter iter(fDict);
288
ForthWord
* word;
447
ForthWord
* word = this->find(token, len);
475
void ForthEnv::addWord(const char name[],
ForthWord
* word) {
483
ForthWord
* ForthEnv::findWord(const char name[])
[
all
...]
Completed in 149 milliseconds