Searched refs:functor (Results 1 - 5 of 5) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/contrib/include/wx/deprecated/
H A Dwxexpr.h82 wxExpr(const wxString& functor); // Assume this is a new clause - pass functor
207 // Use hashing on both the functor, and the attribute of
211 // it usually requires 1 look-up: the keys for functor and attribute
232 wxExpr *FindClauseByFunctor(const wxString& functor);
234 wxExpr *HashFind(const wxString& functor, const wxString& value) const;
235 wxExpr *HashFind(const wxString& functor, long value) const;
261 WXDLLIMPEXP_DEPRECATED wxExpr* wxExprMakeCall(const wxString& functor ...);
269 // Checks functor
270 WXDLLIMPEXP_DEPRECATED bool wxExprIsFunctor(wxExpr *expr, const wxString& functor);
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/docs/latex/wx/
H A Dexpr.tex23 \func{}{wxExpr}{\param{const wxString\&}{functor}}
25 Construct a new clause with this form, supplying the functor name. A clause is an object
192 Use this on clauses only. Returns the clause's functor (object name).
296 functor, open parenthesis, list of comma-separated expressions, close parenthesis,
312 \func{bool}{wxExprIsFunctor}{\param{wxExpr *}{expr}, \param{const wxString\&}{ functor}}
314 Checks that the functor of {\it expr} is {\it functor}.
382 Construct a new database hashed on a combination of the clause functor and
398 the functor and a user-specified attribute will be hashed upon, giving the
438 \func{wxExpr*}{FindClauseByFunctor}{\param{const wxString\&}{ functor}}
[all...]
H A Dtexpr.tex76 Each clause is an object with a {\it functor}\/ or object name, followed
155 A clause has a {\it functor}\/ (name), and a list of attributes, each of which
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/contrib/src/deprecated/
H A Dwxexpr.cpp115 wxExpr::wxExpr(const wxString& functor) argument
122 wxExpr *pfunctor = new wxExpr(wxExprWord, functor);
991 wxExpr *wxExprDatabase::FindClauseByFunctor(const wxString& functor) argument
1000 if (term->Functor() == functor)
1014 wxString functor(clause->Functor());
1018 long functor_key = hash_table->MakeKey(WXSTRINGCAST functor);
1035 wxExpr *wxExprDatabase::HashFind(const wxString& functor, long value) const argument
1037 long key = hash_table->MakeKey(WXSTRINGCAST functor) + value;
1045 wxExpr *wxExprDatabase::HashFind(const wxString& functor, const wxString& value) const argument
1047 long key = hash_table->MakeKey(WXSTRINGCAST functor)
1132 wxExprIsFunctor(wxExpr *expr, const wxString& functor) argument
[all...]
H A Dresource.cpp588 wxString functor(clause->Functor());
591 if (functor == wxT("dialog"))
593 else if (functor == wxT("panel"))
595 else if (functor == wxT("menubar"))
597 else if (functor == wxT("menu"))
599 else if (functor == wxT("string"))
601 else if (functor == wxT("bitmap"))
603 else if (functor == wxT("icon"))

Completed in 115 milliseconds