本文整理汇总了C#中grn_table_cursor类的典型用法代码示例。如果您正苦于以下问题:C# grn_table_cursor类的具体用法?C# grn_table_cursor怎么用?C# grn_table_cursor使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
grn_table_cursor类属于命名空间,在下文中一共展示了grn_table_cursor类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的C#代码示例。
示例1: grn_string_open
public static extern System.IntPtr grn_string_open(ref grn_ctx ctx, [InAttribute()] [MarshalAsAttribute(UnmanagedType.LPStr)] string @string, uint length_in_bytes, ref grn_table_cursor normalizer, int flags) ;
开发者ID:cosmo0920,项目名称:GrnSharp,代码行数:1,代码来源:NativeMethods.cs
示例2: grn_table_max_n_subrecs
public static extern uint grn_table_max_n_subrecs(ref grn_ctx ctx, ref grn_table_cursor table) ;
开发者ID:cosmo0920,项目名称:GrnSharp,代码行数:1,代码来源:NativeMethods.cs
示例3: grn_table_get_subrecs
public static extern uint grn_table_get_subrecs(ref grn_ctx ctx, ref grn_table_cursor table, uint id, ref uint subrecbuf, ref int scorebuf, int buf_size) ;
开发者ID:cosmo0920,项目名称:GrnSharp,代码行数:1,代码来源:NativeMethods.cs
示例4: grn_expr_snip
public static extern System.IntPtr grn_expr_snip(ref grn_ctx ctx, ref grn_table_cursor expr, int flags, uint width, uint max_results, uint n_tags, ref System.IntPtr opentags, ref uint opentag_lens, ref System.IntPtr closetags, ref uint closetag_lens, ref grn_snip_mapping mapping) ;
开发者ID:cosmo0920,项目名称:GrnSharp,代码行数:1,代码来源:NativeMethods.cs
示例5: grn_table_sort_key_from_str
public static extern System.IntPtr grn_table_sort_key_from_str(ref grn_ctx ctx, [InAttribute()] [MarshalAsAttribute(UnmanagedType.LPStr)] string str, uint str_size, ref grn_table_cursor table, ref uint nkeys) ;
开发者ID:cosmo0920,项目名称:GrnSharp,代码行数:1,代码来源:NativeMethods.cs
示例6: grn_expr_alloc
public static extern System.IntPtr grn_expr_alloc(ref grn_ctx ctx, ref grn_table_cursor expr, uint domain, ushort flags) ;
开发者ID:cosmo0920,项目名称:GrnSharp,代码行数:1,代码来源:NativeMethods.cs
示例7: grn_obj_columns
public static extern int grn_obj_columns(ref grn_ctx ctx, ref grn_table_cursor table, [InAttribute()] [MarshalAsAttribute(UnmanagedType.LPStr)] string str, uint str_size, ref grn_table_cursor res) ;
开发者ID:cosmo0920,项目名称:GrnSharp,代码行数:1,代码来源:NativeMethods.cs
示例8: grn_string_set_types
public static extern grn_rc grn_string_set_types(ref grn_ctx ctx, ref grn_table_cursor @string, System.IntPtr types) ;
开发者ID:cosmo0920,项目名称:GrnSharp,代码行数:1,代码来源:NativeMethods.cs
示例9: grn_string_get_encoding
public static extern grn_encoding grn_string_get_encoding(ref grn_ctx ctx, ref grn_table_cursor @string) ;
开发者ID:cosmo0920,项目名称:GrnSharp,代码行数:1,代码来源:NativeMethods.cs
示例10: grn_string_set_checks
public static extern grn_rc grn_string_set_checks(ref grn_ctx ctx, ref grn_table_cursor @string, ref short checks) ;
开发者ID:cosmo0920,项目名称:GrnSharp,代码行数:1,代码来源:NativeMethods.cs
示例11: grn_string_get_types
public static extern System.IntPtr grn_string_get_types(ref grn_ctx ctx, ref grn_table_cursor @string) ;
开发者ID:cosmo0920,项目名称:GrnSharp,代码行数:1,代码来源:NativeMethods.cs
示例12: grn_string_set_normalized
public static extern grn_rc grn_string_set_normalized(ref grn_ctx ctx, ref grn_table_cursor @string, System.IntPtr normalized, uint length_in_bytes, uint n_characters) ;
开发者ID:cosmo0920,项目名称:GrnSharp,代码行数:1,代码来源:NativeMethods.cs
示例13: grn_string_get_flags
public static extern int grn_string_get_flags(ref grn_ctx ctx, ref grn_table_cursor @string) ;
开发者ID:cosmo0920,项目名称:GrnSharp,代码行数:1,代码来源:NativeMethods.cs
示例14: grn_string_get_original
public static extern grn_rc grn_string_get_original(ref grn_ctx ctx, ref grn_table_cursor @string, ref System.IntPtr original, ref uint length_in_bytes) ;
开发者ID:cosmo0920,项目名称:GrnSharp,代码行数:1,代码来源:NativeMethods.cs
示例15: grn_expr_exec
public static extern System.IntPtr grn_expr_exec(ref grn_ctx ctx, ref grn_table_cursor expr, int nargs) ;
开发者ID:cosmo0920,项目名称:GrnSharp,代码行数:1,代码来源:NativeMethods.cs
示例16: grn_expr_get_var
public static extern System.IntPtr grn_expr_get_var(ref grn_ctx ctx, ref grn_table_cursor expr, [InAttribute()] [MarshalAsAttribute(UnmanagedType.LPStr)] string name, uint name_size) ;
开发者ID:cosmo0920,项目名称:GrnSharp,代码行数:1,代码来源:NativeMethods.cs
示例17: grn_ctx_push
public static extern grn_rc grn_ctx_push(ref grn_ctx ctx, ref grn_table_cursor obj) ;
开发者ID:cosmo0920,项目名称:GrnSharp,代码行数:1,代码来源:NativeMethods.cs
示例18: grn_expr_get_var_by_offset
public static extern System.IntPtr grn_expr_get_var_by_offset(ref grn_ctx ctx, ref grn_table_cursor expr, uint offset) ;
开发者ID:cosmo0920,项目名称:GrnSharp,代码行数:1,代码来源:NativeMethods.cs
示例19: grn_table_select
public static extern System.IntPtr grn_table_select(ref grn_ctx ctx, ref grn_table_cursor table, ref grn_table_cursor expr, ref grn_table_cursor res, grn_operator op) ;
开发者ID:cosmo0920,项目名称:GrnSharp,代码行数:1,代码来源:NativeMethods.cs
示例20: grn_expr_append_const_str
public static extern System.IntPtr grn_expr_append_const_str(ref grn_ctx ctx, ref grn_table_cursor expr, [InAttribute()] [MarshalAsAttribute(UnmanagedType.LPStr)] string str, uint str_size, grn_operator op, int nargs) ;
开发者ID:cosmo0920,项目名称:GrnSharp,代码行数:1,代码来源:NativeMethods.cs
注:本文中的grn_table_cursor类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论