2024-08-25 04:08:24 +00:00
|
|
|
#ifndef GEN_QREGEXP_H
|
|
|
|
#define GEN_QREGEXP_H
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
class QRegExp;
|
|
|
|
#else
|
|
|
|
typedef struct QRegExp QRegExp;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
QRegExp* QRegExp_new();
|
2024-08-29 07:01:51 +00:00
|
|
|
QRegExp* QRegExp_new2(const char* pattern, size_t pattern_Strlen);
|
|
|
|
QRegExp* QRegExp_new3(QRegExp* rx);
|
|
|
|
QRegExp* QRegExp_new4(const char* pattern, size_t pattern_Strlen, uintptr_t cs);
|
|
|
|
QRegExp* QRegExp_new5(const char* pattern, size_t pattern_Strlen, uintptr_t cs, uintptr_t syntax);
|
2024-08-25 04:08:24 +00:00
|
|
|
void QRegExp_OperatorAssign(QRegExp* self, QRegExp* rx);
|
|
|
|
void QRegExp_Swap(QRegExp* self, QRegExp* other);
|
2024-09-11 05:41:09 +00:00
|
|
|
bool QRegExp_OperatorEqual(const QRegExp* self, QRegExp* rx);
|
|
|
|
bool QRegExp_OperatorNotEqual(const QRegExp* self, QRegExp* rx);
|
|
|
|
bool QRegExp_IsEmpty(const QRegExp* self);
|
|
|
|
bool QRegExp_IsValid(const QRegExp* self);
|
|
|
|
void QRegExp_Pattern(const QRegExp* self, char** _out, int* _out_Strlen);
|
2024-08-25 04:08:24 +00:00
|
|
|
void QRegExp_SetPattern(QRegExp* self, const char* pattern, size_t pattern_Strlen);
|
2024-09-11 05:41:09 +00:00
|
|
|
uintptr_t QRegExp_CaseSensitivity(const QRegExp* self);
|
2024-08-29 07:01:51 +00:00
|
|
|
void QRegExp_SetCaseSensitivity(QRegExp* self, uintptr_t cs);
|
2024-09-11 05:41:09 +00:00
|
|
|
uintptr_t QRegExp_PatternSyntax(const QRegExp* self);
|
2024-08-29 07:01:51 +00:00
|
|
|
void QRegExp_SetPatternSyntax(QRegExp* self, uintptr_t syntax);
|
2024-09-11 05:41:09 +00:00
|
|
|
bool QRegExp_IsMinimal(const QRegExp* self);
|
2024-08-25 04:08:24 +00:00
|
|
|
void QRegExp_SetMinimal(QRegExp* self, bool minimal);
|
2024-09-11 05:41:09 +00:00
|
|
|
bool QRegExp_ExactMatch(const QRegExp* self, const char* str, size_t str_Strlen);
|
|
|
|
int QRegExp_IndexIn(const QRegExp* self, const char* str, size_t str_Strlen);
|
|
|
|
int QRegExp_LastIndexIn(const QRegExp* self, const char* str, size_t str_Strlen);
|
|
|
|
int QRegExp_MatchedLength(const QRegExp* self);
|
|
|
|
int QRegExp_CaptureCount(const QRegExp* self);
|
|
|
|
void QRegExp_CapturedTexts(const QRegExp* self, char*** _out, int** _out_Lengths, size_t* _out_len);
|
2024-08-25 04:08:24 +00:00
|
|
|
void QRegExp_CapturedTexts2(QRegExp* self, char*** _out, int** _out_Lengths, size_t* _out_len);
|
2024-09-11 05:41:09 +00:00
|
|
|
void QRegExp_Cap(const QRegExp* self, char** _out, int* _out_Strlen);
|
2024-08-25 04:08:24 +00:00
|
|
|
void QRegExp_Cap2(QRegExp* self, char** _out, int* _out_Strlen);
|
2024-09-11 05:41:09 +00:00
|
|
|
int QRegExp_Pos(const QRegExp* self);
|
2024-08-25 04:08:24 +00:00
|
|
|
int QRegExp_Pos2(QRegExp* self);
|
2024-09-11 05:41:09 +00:00
|
|
|
void QRegExp_ErrorString(const QRegExp* self, char** _out, int* _out_Strlen);
|
2024-08-25 04:08:24 +00:00
|
|
|
void QRegExp_ErrorString2(QRegExp* self, char** _out, int* _out_Strlen);
|
|
|
|
void QRegExp_Escape(const char* str, size_t str_Strlen, char** _out, int* _out_Strlen);
|
2024-09-11 05:41:09 +00:00
|
|
|
int QRegExp_IndexIn2(const QRegExp* self, const char* str, size_t str_Strlen, int offset);
|
|
|
|
int QRegExp_IndexIn3(const QRegExp* self, const char* str, size_t str_Strlen, int offset, uintptr_t caretMode);
|
|
|
|
int QRegExp_LastIndexIn2(const QRegExp* self, const char* str, size_t str_Strlen, int offset);
|
|
|
|
int QRegExp_LastIndexIn3(const QRegExp* self, const char* str, size_t str_Strlen, int offset, uintptr_t caretMode);
|
|
|
|
void QRegExp_Cap1(const QRegExp* self, int nth, char** _out, int* _out_Strlen);
|
2024-08-25 04:08:24 +00:00
|
|
|
void QRegExp_Cap1WithNth(QRegExp* self, int nth, char** _out, int* _out_Strlen);
|
2024-09-11 05:41:09 +00:00
|
|
|
int QRegExp_Pos1(const QRegExp* self, int nth);
|
2024-08-25 04:08:24 +00:00
|
|
|
int QRegExp_Pos1WithNth(QRegExp* self, int nth);
|
|
|
|
void QRegExp_Delete(QRegExp* self);
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
} /* extern C */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|