Displaying 4 results from an estimated 4 matches for "def_use".
Did you mean:
def&use
2007 Oct 22
1
Help! bad cyrillic font rendering
...? --------------------
? ? InternalLeading = 0
? ? Ascent = 11
? ? Descent = 2
? ? Height = 13
trace:font:WineEngGetTextExtentExPoint 0x1ee2f18, L"\0421\043b\0443\0436\0435\0431\043d\043e\0435 \043f\043e\043b\0435 ", 15, 0, 0x33f9a4
trace:font:get_glyph_index 0421 (ffffffd1) -> ret 178 def_used 0
trace:font:WineEngGetGlyphOutline 0x1ee2f18, 00b2, 00000080, 0x33ef8c, 00000000, (nil), (nil)
trace:font:get_glyph_index 043b (ffffffeb) -> ret 204 def_used 0
trace:font:WineEngGetGlyphOutline 0x1ee2f18, 00cc, 00000080, 0x33ef8c, 00000000, (nil), (nil)
trace:font:get_glyph_index 0443 (fffffff...
2011 Jul 24
1
[LLVMdev] Def_Use chain
Hi All
I extract Def_Use chain by following code:
for (Value::use_iterator i = F->use_begin(), e = F->use_end(); i != e; ++i)
if (Instruction *Inst = dyn_cast<Instruction>(*i)) {
errs() << "F is used in instruction:\n";
errs() << *Inst << "\n";
}
Now,...
2019 Nov 16
2
Sieve and recipient_delimiter
I use recipient_delimiter addresseses quiet a bit, and I want to put several of them into a mailbox
if anyof (header :contains ["to"] [ ?FOO", ?foo", ?bar", ?florin"]) {
fileinto :create ?later";
stop;
}
When I get an email addressed to me+FOO at example.com or me_florin at example.com, the messages end up in my inbox (Yes, I have both + and _
2019 Nov 17
0
Sieve and recipient_delimiter
...n all lowercase
# Joe, joe, jOe thus all become 'joe'.
# Note that we set it to lower, not first-cap
# because we're going to use this name for a mailbox
set :lower "detail" "${1}";
set :lower "user" "${def_user}?;
}
I don?t know where I got this from, but I am pretty sure it was on this list. :-)
I use it to bucket email based on detail (if no detail, it goes into the address?s default folder, otherwise it goes into the detail folder).
Sean
> On Nov 16, 2019, at 09:46, @lbutlr via dovecot &l...