当前位置: 首页>>代码示例>>C++>>正文


C++ CppiaExpr类代码示例

本文整理汇总了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;
 }
开发者ID:larsiusprime,项目名称:hxcpp,代码行数:7,代码来源:StringBuiltin.cpp

示例2: link

 CppiaExpr *link(CppiaModule &inData)
 {
    a0 = a0->link(inData);
    return StringExpr::link(inData);
 }
开发者ID:larsiusprime,项目名称:hxcpp,代码行数:5,代码来源:StringBuiltin.cpp

示例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);
 }
开发者ID:larsiusprime,项目名称:hxcpp,代码行数:13,代码来源:StringBuiltin.cpp

示例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);
 }
开发者ID:larsiusprime,项目名称:hxcpp,代码行数:13,代码来源:StringBuiltin.cpp

示例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);
 }
开发者ID:Gama11,项目名称:hxcpp,代码行数:9,代码来源:StringBuiltin.cpp

示例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;
   }
开发者ID:Gama11,项目名称:hxcpp,代码行数:12,代码来源:StringBuiltin.cpp

示例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;
   }
开发者ID:larsiusprime,项目名称:hxcpp,代码行数:17,代码来源:StringBuiltin.cpp


注:本文中的CppiaExpr类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。