miqt/qt/gen_qregularexpression.h

99 lines
7.3 KiB
C
Raw Normal View History

#ifndef GEN_QREGULAREXPRESSION_H
#define GEN_QREGULAREXPRESSION_H
#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
#ifdef __cplusplus
extern "C" {
#endif
#ifdef __cplusplus
class QRegularExpression;
class QRegularExpressionMatch;
class QRegularExpressionMatchIterator;
#else
typedef struct QRegularExpression QRegularExpression;
typedef struct QRegularExpressionMatch QRegularExpressionMatch;
typedef struct QRegularExpressionMatchIterator QRegularExpressionMatchIterator;
#endif
QRegularExpression* QRegularExpression_new();
2024-08-29 07:01:51 +00:00
QRegularExpression* QRegularExpression_new2(const char* pattern, size_t pattern_Strlen);
QRegularExpression* QRegularExpression_new3(QRegularExpression* re);
QRegularExpression* QRegularExpression_new4(const char* pattern, size_t pattern_Strlen, int options);
int QRegularExpression_PatternOptions(const QRegularExpression* self);
2024-08-29 07:01:51 +00:00
void QRegularExpression_SetPatternOptions(QRegularExpression* self, int options);
void QRegularExpression_OperatorAssign(QRegularExpression* self, QRegularExpression* re);
void QRegularExpression_Swap(QRegularExpression* self, QRegularExpression* other);
void QRegularExpression_Pattern(const QRegularExpression* self, char** _out, int* _out_Strlen);
void QRegularExpression_SetPattern(QRegularExpression* self, const char* pattern, size_t pattern_Strlen);
bool QRegularExpression_IsValid(const QRegularExpression* self);
int QRegularExpression_PatternErrorOffset(const QRegularExpression* self);
void QRegularExpression_ErrorString(const QRegularExpression* self, char** _out, int* _out_Strlen);
int QRegularExpression_CaptureCount(const QRegularExpression* self);
void QRegularExpression_NamedCaptureGroups(const QRegularExpression* self, char*** _out, int** _out_Lengths, size_t* _out_len);
QRegularExpressionMatch* QRegularExpression_Match(const QRegularExpression* self, const char* subject, size_t subject_Strlen);
QRegularExpressionMatchIterator* QRegularExpression_GlobalMatch(const QRegularExpression* self, const char* subject, size_t subject_Strlen);
void QRegularExpression_Optimize(const QRegularExpression* self);
void QRegularExpression_Escape(const char* str, size_t str_Strlen, char** _out, int* _out_Strlen);
void QRegularExpression_WildcardToRegularExpression(const char* str, size_t str_Strlen, char** _out, int* _out_Strlen);
void QRegularExpression_AnchoredPattern(const char* expression, size_t expression_Strlen, char** _out, int* _out_Strlen);
bool QRegularExpression_OperatorEqual(const QRegularExpression* self, QRegularExpression* re);
bool QRegularExpression_OperatorNotEqual(const QRegularExpression* self, QRegularExpression* re);
QRegularExpressionMatch* QRegularExpression_Match2(const QRegularExpression* self, const char* subject, size_t subject_Strlen, int offset);
QRegularExpressionMatch* QRegularExpression_Match3(const QRegularExpression* self, const char* subject, size_t subject_Strlen, int offset, uintptr_t matchType);
QRegularExpressionMatch* QRegularExpression_Match4(const QRegularExpression* self, const char* subject, size_t subject_Strlen, int offset, uintptr_t matchType, int matchOptions);
QRegularExpressionMatchIterator* QRegularExpression_GlobalMatch2(const QRegularExpression* self, const char* subject, size_t subject_Strlen, int offset);
QRegularExpressionMatchIterator* QRegularExpression_GlobalMatch3(const QRegularExpression* self, const char* subject, size_t subject_Strlen, int offset, uintptr_t matchType);
QRegularExpressionMatchIterator* QRegularExpression_GlobalMatch4(const QRegularExpression* self, const char* subject, size_t subject_Strlen, int offset, uintptr_t matchType, int matchOptions);
void QRegularExpression_Delete(QRegularExpression* self);
QRegularExpressionMatch* QRegularExpressionMatch_new();
QRegularExpressionMatch* QRegularExpressionMatch_new2(QRegularExpressionMatch* match);
void QRegularExpressionMatch_OperatorAssign(QRegularExpressionMatch* self, QRegularExpressionMatch* match);
void QRegularExpressionMatch_Swap(QRegularExpressionMatch* self, QRegularExpressionMatch* other);
QRegularExpression* QRegularExpressionMatch_RegularExpression(const QRegularExpressionMatch* self);
uintptr_t QRegularExpressionMatch_MatchType(const QRegularExpressionMatch* self);
int QRegularExpressionMatch_MatchOptions(const QRegularExpressionMatch* self);
bool QRegularExpressionMatch_HasMatch(const QRegularExpressionMatch* self);
bool QRegularExpressionMatch_HasPartialMatch(const QRegularExpressionMatch* self);
bool QRegularExpressionMatch_IsValid(const QRegularExpressionMatch* self);
int QRegularExpressionMatch_LastCapturedIndex(const QRegularExpressionMatch* self);
void QRegularExpressionMatch_Captured(const QRegularExpressionMatch* self, char** _out, int* _out_Strlen);
void QRegularExpressionMatch_CapturedWithName(const QRegularExpressionMatch* self, const char* name, size_t name_Strlen, char** _out, int* _out_Strlen);
void QRegularExpressionMatch_CapturedTexts(const QRegularExpressionMatch* self, char*** _out, int** _out_Lengths, size_t* _out_len);
int QRegularExpressionMatch_CapturedStart(const QRegularExpressionMatch* self);
int QRegularExpressionMatch_CapturedLength(const QRegularExpressionMatch* self);
int QRegularExpressionMatch_CapturedEnd(const QRegularExpressionMatch* self);
int QRegularExpressionMatch_CapturedStartWithName(const QRegularExpressionMatch* self, const char* name, size_t name_Strlen);
int QRegularExpressionMatch_CapturedLengthWithName(const QRegularExpressionMatch* self, const char* name, size_t name_Strlen);
int QRegularExpressionMatch_CapturedEndWithName(const QRegularExpressionMatch* self, const char* name, size_t name_Strlen);
void QRegularExpressionMatch_Captured1(const QRegularExpressionMatch* self, int nth, char** _out, int* _out_Strlen);
int QRegularExpressionMatch_CapturedStart1(const QRegularExpressionMatch* self, int nth);
int QRegularExpressionMatch_CapturedLength1(const QRegularExpressionMatch* self, int nth);
int QRegularExpressionMatch_CapturedEnd1(const QRegularExpressionMatch* self, int nth);
void QRegularExpressionMatch_Delete(QRegularExpressionMatch* self);
QRegularExpressionMatchIterator* QRegularExpressionMatchIterator_new();
QRegularExpressionMatchIterator* QRegularExpressionMatchIterator_new2(QRegularExpressionMatchIterator* iterator);
void QRegularExpressionMatchIterator_OperatorAssign(QRegularExpressionMatchIterator* self, QRegularExpressionMatchIterator* iterator);
void QRegularExpressionMatchIterator_Swap(QRegularExpressionMatchIterator* self, QRegularExpressionMatchIterator* other);
bool QRegularExpressionMatchIterator_IsValid(const QRegularExpressionMatchIterator* self);
bool QRegularExpressionMatchIterator_HasNext(const QRegularExpressionMatchIterator* self);
QRegularExpressionMatch* QRegularExpressionMatchIterator_Next(QRegularExpressionMatchIterator* self);
QRegularExpressionMatch* QRegularExpressionMatchIterator_PeekNext(const QRegularExpressionMatchIterator* self);
QRegularExpression* QRegularExpressionMatchIterator_RegularExpression(const QRegularExpressionMatchIterator* self);
uintptr_t QRegularExpressionMatchIterator_MatchType(const QRegularExpressionMatchIterator* self);
int QRegularExpressionMatchIterator_MatchOptions(const QRegularExpressionMatchIterator* self);
void QRegularExpressionMatchIterator_Delete(QRegularExpressionMatchIterator* self);
#ifdef __cplusplus
} /* extern C */
#endif
#endif