Displaying 5 results from an estimated 5 matches for "printto".
2007 May 12
2
Fwd: Re: shell.exec() on Windows, unexpected behavior
...en with Adobe Reader 8
Open
Print
The "Open" item uses Adobe Acrobat 6.
The "Tools/Folder Options/File Types" menu shows and Adobe 6
icon. The details sections shows the Adobe 8 icon. The "Advanced"
button shows three actions
Open with Acrobat 6
Print
Printto
I attempted to edit the "Open with Acrobat 6" to "Open with
Acrobat 8". It didn't take. So I did a restore. I will now
just have an open Acrobat 8 around when I care which version is
used.
I am guessing that Adobe Reader 8 (a read-only program) saw that
Adobe Acrobat 6...
2012 Mar 01
2
[LLVMdev] Proposed implementation of N3333 hashing interfaces for LLVM (and possible libc++)
...13,45 +13,295 @@
#include "gtest/gtest.h"
#include "llvm/ADT/Hashing.h"
+#include "llvm/Support/DataTypes.h"
+#include <vector>
+#include <list>
+#include <deque>
+#include <map>
Sort.
+ // Helper for test code to print hash codes.
+ void PrintTo(const hash_code &code, ::std::ostream *os) {
What's with the extra leading :: before std::?
+ namespace hashing { namespace detail {
+ template <> struct is_hashable_data<LargeTestInteger> : true_type {};
+ } } // End hashing detail namespace.
+} // End LLVM namespace.
A r...
2012 Mar 01
0
[LLVMdev] Proposed implementation of N3333 hashing interfaces for LLVM (and possible libc++)
> + // Helper for test code to print hash codes.
> + void PrintTo(const hash_code &code, ::std::ostream *os) {
>
> What's with the extra leading :: before std::?
Have you ever tried:
namespace foo {
class std {};
}
using namespace foo;
#include <vector>
Well, I'm not sure that Chandler is guarding against this possibility,
but most lib...
2012 Feb 29
0
[LLVMdev] Proposed implementation of N3333 hashing interfaces for LLVM (and possible libc++)
Thanks for the feedback thus far!
I've updated the header file, and enclosed a complete patch against LLVM.
This passes all the regtests, and I'll be doing more thorough testing of
LLVM itself with the patch. I've included some basic unit tests, but could
probably do more here... Not sure it's worth delaying the initial
submission though, as the best testing is to use a hash
2012 Feb 28
9
[LLVMdev] Proposed implementation of N3333 hashing interfaces for LLVM (and possible libc++)
Hello folks,
TL;DR: This is my proposed hashing interface based on a proposed standard
hashing interface. It also is implemented with a much faster and higher
quality algorithm than the current one. This is an *early draft* of the
code, looking for initial feedback.
There has been recent interest in improving the quality and consistency of
LLVM's approach to hashing. In particular, getting