Displaying 4 results from an estimated 4 matches for "allowbeginoflin".
Did you mean:
allowbeginofline
2009 Aug 25
6
[LLVMdev] Regular Expression lib support
...r similar and avoid the dependency on llvm_regmatch_t.
What about this:
/// match - Match the regex against the given \arg String.
///
/// \param Matches - If given, on a successful match this will be filled in with
/// references to the matched group expressions (inside \arg String).
/// \param AllowBeginOfLine - ... again I think we should kill this if
possible ...
/// \param AllowEndOfLine - ... again I think we should kill this if
possible ...
/// \return - True on successful match.
bool match(const char *String, SmallVectorImpl<StringRef> *Matches,
bool AllowBeginOfLine = true, boo...
2009 Aug 25
0
[LLVMdev] Regular Expression lib support
On 2009-08-24 20:14, Chris Lattner wrote:
> On Aug 23, 2009, at 11:59 PM, Török Edwin wrote:
>> If LLVM is going to have an integrated regex library I suggest using it
>> regardless if the platform has one.
>> The LLVM integrated regex library will provide consistent behaviour and
>> execution time, the system one will not.
>
> Hi Edwin,
>
> Can you propose
2009 Aug 24
3
[LLVMdev] Regular Expression lib support
On Aug 23, 2009, at 11:59 PM, Török Edwin wrote:
> If LLVM is going to have an integrated regex library I suggest using
> it
> regardless if the platform has one.
> The LLVM integrated regex library will provide consistent behaviour
> and
> execution time, the system one will not.
Hi Edwin,
Can you propose the openbsd implementation as a patch to lib/support?
-Chris
2009 Aug 25
0
[LLVMdev] Regular Expression lib support
...hat sounds good.
> What about this:
>
>
> /// match - Match the regex against the given \arg String.
> ///
> /// \param Matches - If given, on a successful match this will be filled in with
> /// references to the matched group expressions (inside \arg String).
> /// \param AllowBeginOfLine - ... again I think we should kill this if
> possible ...
> /// \param AllowEndOfLine - ... again I think we should kill this if
> possible ...
> /// \return - True on successful match.
> bool match(const char *String, SmallVectorImpl<StringRef> *Matches,
> boo...