Displaying 7 results from an estimated 7 matches for "doxymented".
Did you mean:
documented
2009 Aug 27
2
[LLVMdev] Regular Expression lib support
...gt;> + bool matches(const char *string, bool notbol=false, bool noteol=false);
>>> + bool match_sub(const char *string, llvm_regmatch_t pmatch[],
>>> + unsigned nmatch, bool notbol=false, bool noteol=false);
>>>
>>
>> These should be doxymented, and I don't understand the flags. Does this mean
>> that if I *don't* compile with NEWLINE, but *do* want ^/$ support, then
>> notbol/noteol need to be false? Do we care about use cases that care about this?
>> Could we just always have them as false?
>>
>
> T...
2009 Aug 27
0
[LLVMdev] Regular Expression lib support
...har *string, bool notbol=false, bool noteol=false);
>>>> + bool match_sub(const char *string, llvm_regmatch_t pmatch[],
>>>> + unsigned nmatch, bool notbol=false, bool noteol=false);
>>>>
>>>>
>>> These should be doxymented, and I don't understand the flags. Does this mean
>>> that if I *don't* compile with NEWLINE, but *do* want ^/$ support, then
>>> notbol/noteol need to be false? Do we care about use cases that care about this?
>>> Could we just always have them as false?
>>...
2009 Aug 25
0
[LLVMdev] Regular Expression lib support
...g.
>> +
>> + bool matches(const char *string, bool notbol=false, bool noteol=false);
>> + bool match_sub(const char *string, llvm_regmatch_t pmatch[],
>> + unsigned nmatch, bool notbol=false, bool noteol=false);
>>
>
> These should be doxymented, and I don't understand the flags. Does this mean
> that if I *don't* compile with NEWLINE, but *do* want ^/$ support, then
> notbol/noteol need to be false? Do we care about use cases that care about this?
> Could we just always have them as false?
>
They are meant for case...
2009 Aug 25
6
[LLVMdev] Regular Expression lib support
...ess regex was compiled with NEWLINE flag.
> +
> + bool matches(const char *string, bool notbol=false, bool noteol=false);
> + bool match_sub(const char *string, llvm_regmatch_t pmatch[],
> + unsigned nmatch, bool notbol=false, bool noteol=false);
These should be doxymented, and I don't understand the flags. Does this mean
that if I *don't* compile with NEWLINE, but *do* want ^/$ support, then
notbol/noteol need to be false? Do we care about use cases that care about this?
Could we just always have them as false?
As mentioned before I think we can change the...
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 28
3
[LLVMdev] Regular Expression lib support
..., bool notbol=false, bool noteol=false);
>>>>> + bool match_sub(const char *string, llvm_regmatch_t pmatch[],
>>>>> + unsigned nmatch, bool notbol=false, bool noteol=false);
>>>>>
>>>>>
>>>> These should be doxymented, and I don't understand the flags. Does this mean
>>>> that if I *don't* compile with NEWLINE, but *do* want ^/$ support, then
>>>> notbol/noteol need to be false? Do we care about use cases that care about this?
>>>> Could we just always have them as fal...
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