本文整理汇总了C++中CppiaExpr类的典型用法代码示例。如果您正苦于以下问题:C++ CppiaExpr类的具体用法?C++ CppiaExpr怎么用?C++ CppiaExpr使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了CppiaExpr类的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1:
CppiaExpr *link(CppiaModule &inData)
{
strVal = strVal->link(inData);
sought = sought->link(inData);
start = start->link(inData);
return this;
}
示例2: link
CppiaExpr *link(CppiaModule &inData)
{
a0 = a0->link(inData);
return StringExpr::link(inData);
}
示例3: runString
String runString(CppiaCtx *ctx)
{
String val = strVal->runString(ctx);
BCR_CHECK;
int start = a0->runInt(ctx);
BCR_CHECK;
Dynamic end = a1->runObject(ctx);
BCR_CHECK;
if (SUBSTR)
return val.substr(start,end);
else
return val.substring(start,end);
}
示例4: runInt
int runInt(CppiaCtx *ctx)
{
String val = strVal->runString(ctx);
BCR_CHECK;
String s = sought->runString(ctx);
BCR_CHECK;
hx::Object *first = start->runObject(ctx);
BCR_CHECK;
if (LAST)
return val.lastIndexOf(s,first);
else
return val.indexOf(s,first);
}
示例5: runInt
int runInt(CppiaCtx *ctx)
{
//printf("Char code at %d INT\n", CODE);
String val = strVal->runString(ctx);
BCR_CHECK;
int idx = a0->runInt(ctx);
BCR_CHECK;
return val.charCodeAt(idx);
}
示例6: Dynamic
hx::Object *runObject(CppiaCtx *ctx)
{
String val = strVal->runString(ctx);
BCR_CHECK;
int idx = a0->runInt(ctx);
BCR_CHECK;
if (CODE)
return val.charCodeAt(idx).mPtr;
else
return Dynamic(val.charAt(idx)).mPtr;
}
示例7: Dynamic
hx::Object *runObject(CppiaCtx *ctx)
{
String val = strVal->runString(ctx);
BCR_CHECK;
int idx = a0->runInt(ctx);
BCR_CHECK;
if (CODE)
{
if (AS_INT)
return Dynamic( (int)( ((unsigned char *)val.__s) [idx]) ).mPtr;
else
return val.charCodeAt(idx).mPtr;
}
else
return Dynamic(val.charAt(idx)).mPtr;
}