Displaying 6 results from an estimated 6 matches for "re_format".
Did you mean:
r_format
2009 Aug 27
2
[LLVMdev] Regular Expression lib support
...ail.com>:
> On 2009-08-25 21:18, Daniel Dunbar wrote:
>> Woot! Thanks a bunch Edwin!
>>
>> Some comments on the patch:
>> --
>> I'm not sure if it makes sense to import the man pages, if we only
>> expose Regex.h.
>>
>
> I'd like to keep re_format.7, it describes the format of the regex as
> accepted by this implementation.
> I'll remove regex.3 since its not exposed.
Ok.
>> Can you make these doxyments? Also, I'd prefer more LLVM style and less Unix
>> style enum names, IgnoreCase for example.
>>
>> D...
2009 Aug 27
0
[LLVMdev] Regular Expression lib support
...gt;>
>>> Woot! Thanks a bunch Edwin!
>>>
>>> Some comments on the patch:
>>> --
>>> I'm not sure if it makes sense to import the man pages, if we only
>>> expose Regex.h.
>>>
>>>
>> I'd like to keep re_format.7, it describes the format of the regex as
>> accepted by this implementation.
>> I'll remove regex.3 since its not exposed.
>>
>
> Ok.
>
>
>>> Can you make these doxyments? Also, I'd prefer more LLVM style and less Unix
>>> style enum...
2009 Aug 25
0
[LLVMdev] Regular Expression lib support
On 2009-08-25 21:18, Daniel Dunbar wrote:
> Woot! Thanks a bunch Edwin!
>
> Some comments on the patch:
> --
> I'm not sure if it makes sense to import the man pages, if we only
> expose Regex.h.
>
I'd like to keep re_format.7, it describes the format of the regex as
accepted by this implementation.
I'll remove regex.3 since its not exposed.
>
>> diff --git a/include/llvm/Support/Regex.h b/include/llvm/Support/Regex.h
>> new file mode 100644
>> index 0000000..314bff4
>> --- /dev/null...
2009 Aug 25
6
[LLVMdev] Regular Expression lib support
Woot! Thanks a bunch Edwin!
Some comments on the patch:
--
I'm not sure if it makes sense to import the man pages, if we only
expose Regex.h.
> diff --git a/include/llvm/Support/Regex.h b/include/llvm/Support/Regex.h
> new file mode 100644
> index 0000000..314bff4
> --- /dev/null
> +++ b/include/llvm/Support/Regex.h
> @@ -0,0 +1,49 @@
> +//===-- Regex.h - Regular
2002 Sep 27
3
? Exact pattern matching in GREP ?
How is exact pattern matching achieved in GREP (and GREPlike) functions ?
# Want: listing of all object names that end in *.lm
> objects(pattern="*.lm",pos=1)
# ... but get: all objects that partially match *.lm, e.g., *.lme
[1] "j3.lm" "J3.lme" "j8.lm" "J8.lme"
# Want: position of string "4jan2002" in vector
>
2009 Aug 28
3
[LLVMdev] Regular Expression lib support
...Woot! Thanks a bunch Edwin!
>>>>
>>>> Some comments on the patch:
>>>> --
>>>> I'm not sure if it makes sense to import the man pages, if we only
>>>> expose Regex.h.
>>>>
>>>>
>>> I'd like to keep re_format.7, it describes the format of the regex as
>>> accepted by this implementation.
>>> I'll remove regex.3 since its not exposed.
>>>
>>
>> Ok.
>>
>>
>>>> Can you make these doxyments? Also, I'd prefer more LLVM style and less Unix...